Skip to content

Commit

Permalink
Update peak calling method for chip assay
Browse files Browse the repository at this point in the history
  • Loading branch information
alsmith151 committed Apr 1, 2024
1 parent 5877c56 commit 707a501
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,11 @@ def config_yaml_for_testing(config_yaml, assay):

if assay == "chip":
config["pileup_method"] = ["deeptools", "homer"]
config['peak_calling_method'] = ["lanceotron", "macs", "homer", "seacr"]
config['peak_calling_method'] = ["lanceotron", "macs", "homer"]
config["library_complexity"] = False
elif assay == "chip-rx":
config["call_peaks"] = True
config["peak_calling_method"] = ["seacr"]

with open(config_yaml, "w") as f:
yaml.dump(config, f)
Expand Down

0 comments on commit 707a501

Please sign in to comment.