-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #833 from luisas/add-multiplesequencealign
add Multiplesequencealign CRG specific config
- Loading branch information
Showing
4 changed files
with
46 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
profiles { | ||
crg { | ||
params { | ||
config_profile_contact = 'Luisa Santus (@luisas)' | ||
config_profile_description = 'nf-core/multiplesequencealign CRG profile provided by nf-core/configs' | ||
} | ||
executor.name = 'crg' | ||
process { | ||
queue = 'short-centos79,long-centos79' | ||
withName: 'LEARNMSA_ALIGN' { | ||
cpus = 8 | ||
memory = "30 GB" | ||
queue = params.use_gpu ? 'gpu' : 'long-centos79' | ||
clusterOptions = { (task.queue == 'gpu' ? '-l gpu=1,virtual_free=30G' : '') } | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# nf-core/configs: CRG multiplesequencealign specific configuration | ||
|
||
Extra specific configuration for multiplesequencealign pipeline | ||
|
||
## Usage | ||
|
||
To use, run the pipeline with `-profile crg`. | ||
|
||
This will download and launch the multiplesequencealign specific [`crg.config`](../../../conf/pipeline/multiplesequencealign/crg.config) which has been pre-configured with a setup suitable for the sge cluster. | ||
|
||
Example: `nextflow run nf-core/multiplesequencealign -profile crg` | ||
|
||
## multiplesequencealign specific configurations for CRG | ||
|
||
Specific configurations for CRG has been made for multiplesequencealign. | ||
|
||
### General profiles | ||
|
||
<!-- TODO --> | ||
|
||
### Contextual profiles | ||
|
||
<!-- TODO --> |
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