-
Notifications
You must be signed in to change notification settings - Fork 82
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
Add optional merging and trimming #142
Merged
Merged
Changes from 15 commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
eb59405
Extra clarifications for indices, FastP and general cleanup
jfy133 df6305f
Merge pull request #136 from nf-core/help_message_improvements
apeltzer f43f4b0
Further clarification on `--max-cpus`
jfy133 45ce547
Update docs/usage.md
apeltzer e039f28
Merge pull request #139 from nf-core/docs_update
apeltzer 91d05cb
add noCollase option
maxibor 758fb7f
fix nf-PE read index
maxibor e2aaba0
update doc with noCollapse
maxibor bdd56dc
merge master to dev
maxibor 55743dd
main.nf to dev
maxibor 8ec9d67
fix funky prefix
maxibor 6d864e1
Update docs/usage.md
apeltzer f3a6ff7
Update docs/usage.md
apeltzer 0e03a00
skip trimming and collapsing
maxibor 757e930
update test
maxibor 949fd28
Address issue with picard memory
apeltzer 435812b
Merge pull request #145 from apeltzer/fix-picard
apeltzer b311d61
Use CSI indices wherever possible
apeltzer a1a69a7
Merge remote-tracking branch 'upstream/dev' into fix-samtools-idx
apeltzer 9eb36c7
Add proper changelog
apeltzer 8d26b33
Added a contributor section to README
apeltzer 8e29eff
Update README.md with instructions for test data
evanfloden 8f3c151
Merge pull request #148 from evanfloden/patch-1
apeltzer abf4642
Add docs on this
apeltzer 8a6dccb
Update new parameter `large_ref`
apeltzer b6f65b1
Fixing indices hopefully
apeltzer f9ac1d4
Fixing indexing
apeltzer 7405c8e
Fix for post-dup steps
apeltzer 7e4035d
Nicer changelog [skip ci]
apeltzer 76e0cbd
Its unpublished stuff [skip ci]
apeltzer a2364b4
Merge pull request #3 from nf-core/dev
jfy133 e971cac
Made polyG param clearer what it is
jfy133 0feeb19
Update CHANGELOG.md
jfy133 29306df
Updated ploy G trim flag
jfy133 028f7ea
Merge pull request #5 from jfy133/polyg-name-improvements
jfy133 bc02be2
Update CHANGELOG.md
jfy133 ffa0085
Merge pull request #4 from jfy133/polyg-name-improvement
jfy133 7836ab8
Update CHANGELOG.md
jfy133 6d13545
Added fastP position to MultiQC config
jfy133 ee3c44f
Merge pull request #147 from apeltzer/fix-samtools-idx
apeltzer 0fb1481
Merge branch 'dev' into fix-post-dedup-steps
apeltzer fabd1a3
Should fix the remaining issues
apeltzer 24ea4b7
Merge branch 'fix-post-dedup-steps' of https://github.com/apeltzer/ea…
apeltzer c69261d
Address issues with qualimap / multiqc / multiple samples and reporting
apeltzer e85b58f
Merge pull request #151 from apeltzer/fix-post-dedup-steps
apeltzer 16fedae
Merge branch 'dev' into dev
apeltzer 71f0329
Merge pull request #152 from jfy133/dev
apeltzer 817b9e0
Adding in publishing dedup log files as well
apeltzer 5a255fd
Merge pull request #157 from apeltzer/publish_dedup
apeltzer c0251cb
Merge branch 'dev' into dev
apeltzer 3320464
move size out of the if clause
apeltzer def1b35
match skip_* pattern
maxibor 2bef839
update travis test
maxibor e62b503
local executor for skipping AR process
maxibor e807c58
initialize skip_adapterremoval
maxibor 01d056c
fix bam test
maxibor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be clearer/more consistent to have a
--skip_adapterremoval
flag here (which switches both--skip_collapse
and--skip_trim
to false).Then we move the
--skip_collapse
and--skip_trim
in help message to 'AdapterRemoval' section, as in that section you're actually modifying the module, not turning entire modules on and off.