Skip to content

Commit

Permalink
exc characters
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmonteiro committed Aug 27, 2024
1 parent f198709 commit b0c051e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,9 @@ def run_with_params(params, mode="cli"):

exclude = []
if "config" in params and "EXCLUDE" in params["config"]:
exclude = params["config"]["EXCLUDE"].split(",")
exclude = params["config"]["EXCLUDE"].replace("\r", "").replace("\n", "").split(",")


gsList = util.filter_by_golden_standard( workflowList, wkfName)

wkf = w
Expand Down

0 comments on commit b0c051e

Please sign in to comment.