-
Notifications
You must be signed in to change notification settings - Fork 736
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update malt/build module * use stageAs for input fasta files * Try HTTPS rather than s3 * Trying manually restricting memory * Move config loading to the right place * Update modules/nf-core/malt/build/tests/main.nf.test Co-authored-by: Mahesh Binzer-Panchal <[email protected]> * Update main.nf.test * Update nextflow.config * Get tests running * Adjust to VM minimum * And MALT_RUN * use process.resourceLimits defining the memory limit * Update modules/nf-core/malt/run/tests/nextflow.config Co-authored-by: Mahesh Binzer-Panchal <[email protected]> * Update modules/nf-core/malt/run/tests/nextflow.config Co-authored-by: Mahesh Binzer-Panchal <[email protected]> * Update modules/nf-core/malt/run/tests/nextflow.config Co-authored-by: Mahesh Binzer-Panchal <[email protected]> * Update nextflow.config --------- Co-authored-by: James A. Fellows Yates <[email protected]> Co-authored-by: Mahesh Binzer-Panchal <[email protected]>
- Loading branch information
1 parent
e24c973
commit 47f728e
Showing
8 changed files
with
44 additions
and
43 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ channels: | |
- conda-forge | ||
- bioconda | ||
dependencies: | ||
- bioconda::malt=0.61 | ||
- bioconda::malt=0.62 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
process { | ||
|
||
|
||
withName: MALT_BUILD { | ||
ext.args = "--sequenceType DNA" | ||
ext.args = params.module_args | ||
} | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
process { | ||
|
||
|
||
withName: MALT_RUN { | ||
ext.args = "-m BlastN -J-Xmx8G -a . -f SAM" | ||
memory = 12.GB | ||
} | ||
|
||
withName: MALT_BUILD { | ||
ext.args = "--sequenceType DNA" | ||
ext.args = { "-J-Xmx${task.memory.toGiga()}G --sequenceType DNA" } | ||
} | ||
|
||
withName: MALT_RUN { | ||
ext.args = { "-m BlastN -J-Xmx${task.memory.toGiga()}G -a . -f SAM" } | ||
} | ||
} |