Skip to content

Commit

Permalink
Merge pull request #206 from CCBR/bug-fixes
Browse files Browse the repository at this point in the history
fix: manorm used tagalign2 twice
  • Loading branch information
kelly-sovacool authored Aug 26, 2024
2 parents e497b74 + 7071bc2 commit 40300b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit 40300b0

Please sign in to comment.