Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: manorm used tagalign2 twice #206

Merged
merged 2 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- In the biowulf config profile, switch variable $SLURM_JOBID to $SLURM_JOB_ID. (@kelly-sovacool)
- Increase resource allocations for chipseeker and deeptools. (#192, @slsevilla)
- Check the validity of the contrastsheet earlier on in the workflow. (#192, @slsevilla; #200, @kelly-sovacool)
- Fix bug where `manorm` was using R1 twice instead of R1 and R2. (#206, @kelly-sovacool)

### Misc

Expand Down
2 changes: 1 addition & 1 deletion modules/local/manorm/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ process MANORM_PAIRWISE {
manorm \\
--p1 ${peak1} \\
--p2 ${peak2} \\
--r1 ${tagalign2} \\
--r1 ${tagalign1} \\
--r2 ${tagalign2} \\
--s1 ${meta1.fraglen} \\
--s2 ${meta2.fraglen} \\
Expand Down
Loading