-
Notifications
You must be signed in to change notification settings - Fork 709
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
Error with AWS batch params #500
Comments
Hi @jdwheaton The latest version of the pipeline now takes a samplesheet input via the For now, you can just create your own params {
tracedir = './'
}
process.executor = 'awsbatch'
process.queue = <a_functional_queue_name>
aws.region = 'us-west-2'
executor.awscli = '/home/ec2-user/miniconda/bin/aws' And try and run with the command: nextflow run nf-core/rnaseq \
--input "samplesheet.csv" \
--fasta "s3://<an_s3_bucket>/genome.fa" \
--gtf "s3://<an_s3_bucket>/genes.gtf" \
--star_index "s3://<an_s3_bucket>/STARIndex/" \
--outdir "s3://<an_s3_bucket>/rnaseq_test/" \
-profile docker \
-work-dir "s3://<an_s3_bucket>/rnaseq_test/work/" \
-c custom.config |
I haven't used AWS batch to submit jobs before but I am hoping that will work. |
This is indeed quite a problematic bug. We don't normally directly test the |
This should be fixed now in #510. Be grateful if you can test with |
Sorry, I've been in the wet lab all week and haven't had a chance to test. I'll try to run with the dev branch soon and let you know how it goes! As an aside, I am particularly interested in using the public dataset feature, but I'm not clear on how the list of accessions works with the |
No worries. Thanks. The commands to obtain the public data and to run the main arm of the pipeline are completely independent. This is intentional because it allows you to download all of the data in the initial pipeline run and then to curate the spreadsheet based on the sample metadata, before you run the pipeline again properly. First download the public data for a given set of ids specified in
The downloaded FastQ files will then be placed in
Hope that helps! Would be interested in getting some feedback as to how it works for you. |
Thanks, that two-step process wasn't completely clear from the documentation. This makes much more sense! I'm happy to provide feedback once I have a chance to run it. |
Closing via #509 (comment) |
Thanks for the new release! I was attempting to migrate a functioning workflow from 1.4.2 to 2.0 and I get this error:
Specify correct --awsqueue and --awsregion parameters on AWSBatch!. Expression: (params.awsqueue || params.awsregion)
The executed command is:
This command is fully functional on release 1.4.2 -- what am I missing here?
The text was updated successfully, but these errors were encountered: