Skip to content

Commit

Permalink
add merged count test to atac
Browse files Browse the repository at this point in the history
  • Loading branch information
CChahrour committed Feb 17, 2025
1 parent ea3c8c9 commit 7094945
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion seqnado/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def setup_configuration(assay, template_data, seqnado_version):
featurecounts:
threads: 16
options: --primary --ignoreDup
options: -p --countReadPairs
"""

Expand Down
6 changes: 3 additions & 3 deletions tests/test_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def user_inputs(test_data_path, assay, assay_type, plot_bed):
"make_heatmaps": "yes",
"call_peaks": "yes",
"peak_calling_method": "lanceotron",
"consensus_counts": "no",
"consensus_counts": "yes",
}

defaults_chip = {
Expand All @@ -271,7 +271,7 @@ def user_inputs(test_data_path, assay, assay_type, plot_bed):
"make_heatmaps": "yes",
"call_peaks": "yes",
"peak_calling_method": "lanceotron",
"consensus_counts": "yes",
"consensus_counts": "no",
}

defaults_chip_rx = {
Expand Down Expand Up @@ -409,7 +409,7 @@ def design(seqnado_run_dir, assay_type, assay):
completed = subprocess.run(" ".join(cmd), shell=True, cwd=seqnado_run_dir)
assert completed.returncode == 0

if assay == "chip":
if assay == "chip" or assay == "atac":
# Add merge column to design file
import pandas as pd

Expand Down

0 comments on commit 7094945

Please sign in to comment.