-
Notifications
You must be signed in to change notification settings - Fork 277
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 profiles that should be shared with all pipelines to configs #71
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//Nextflow config file for running on AWS batch | ||
|
||
params { | ||
config_profile_name = 'AWSBATCH' | ||
config_profile_description = 'AWSBATCH Cloud Profile' | ||
config_profile_contact = 'Alexander Peltzer (@apeltzer)' | ||
config_profile_url = 'https://aws.amazon.com/batch/' | ||
} | ||
|
||
aws.region = params.awsregion | ||
process.executor = 'awsbatch' | ||
process.queue = params.awsqueue | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This line will also cause problems. |
||
executor.awscli = '/home/ec2-user/miniconda/bin/aws' | ||
params.tracedir = './' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any reason not to group this together with the other There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. None, I just copied the config file we had on sarek |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# nf-core/configs: awsbatch Configuration | ||
|
||
To be used with `awsbatch`. | ||
Custom queue and region can be entered with `params.awsqueue` and `params.region` respectively. |
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.
This line causes the tests to fail 😱
https://travis-ci.com/nf-core/configs/jobs/258237834#L362