-
Notifications
You must be signed in to change notification settings - Fork 45
Added an abyss component to flowcraft, and added a new disableRR parameter to spades #146
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
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
4aa187d
Create abyss process class
emreerhan 7b6ee8e
Add abyss component to engine
emreerhan 85f5d4b
Add abyss groovy template file
emreerhan 00d28d5
Remove unnecessary comment lines
emreerhan 0fef5e3
Add no repeat resolution to spades process class
emreerhan bd7fa01
Add no repeat resolution to spades groovy file
emreerhan d970b50
add no repeat resolution to spades python template
emreerhan 1fd57eb
Merge branch 'abyss' of github.com:emreerhan/flowcraft into abyss
emreerhan 60b9733
Create abyss process class
emreerhan 6f7da22
Add abyss component to engine
emreerhan 719e582
Add abyss groovy template file
emreerhan 1681763
Remove unnecessary comment lines
emreerhan 4becc6a
Add no repeat resolution to spades process class
emreerhan 0430021
Add no repeat resolution to spades groovy file
emreerhan f13894f
add no repeat resolution to spades python template
emreerhan 00ec497
Remove trailing whitespace
emreerhan dd8b234
Remove unnecessary comment
emreerhan 36fe233
Change order of abyss class in components dictionary to maintain alph…
emreerhan f5552fd
Resolve merge conflicts
emreerhan 84dece0
Updated changelog to reflect changes
emreerhan 1972917
Move changes to upcoming dev changes instead of 1.3.1
emreerhan 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
|
|
||
| IN_abyss_kmer_{{ pid }} = Channel.value(params.abyssKmer{{ param_id }}) | ||
|
|
||
| process abyss_{{ pid }} { | ||
|
|
||
| // Send POST request to platform | ||
| {% include "post.txt" ignore missing %} | ||
|
|
||
| tag { sample_id } | ||
| publishDir 'results/assembly/abyss_{{ pid }}/', pattern: '*-scaffolds.fa', mode: 'copy' | ||
|
|
||
| input: | ||
| set sample_id, file(fastq_pair) from {{ input_channel }} | ||
| val kmer from IN_abyss_kmer_{{ pid }} | ||
|
|
||
| output: | ||
| set sample_id, file('*.fa') into {{ output_channel }} | ||
| {% with task_name="abyss" %} | ||
| {%- include "compiler_channels.txt" ignore missing -%} | ||
| {% endwith %} | ||
|
|
||
| script: | ||
| "abyss-pe in=\"${fastq_pair[0]} ${fastq_pair[1]}\" k=${kmer} name=${sample_id}" | ||
| } | ||
|
|
||
| {{ forks }} |
This file contains hidden or 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 hidden or 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.
Although this will probably be refactored according to #145 , can you keep the alphabetical order for now?
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.
Done