Closed rakeshponnala closed 4 years ago
You're using -profile docker
on your local infrastructure it seems. Can you check whether you can access the s3://igenomes
URLs manually?
I am able to access s3://igenomes. Below is an example: (base) [ponnar02@ip-172-17-4-123 data]$ aws s3 --region eu-west-1 ls --request-payer requester s3://ngi-igenomes/igenomes/Homo_sapiens/NCBI/build37.2/Sequence/WholeGenomeFasta/ 2017-04-13 14:30:35 4237 GenomeSize.xml 2017-04-13 14:30:36 3950 genome.dict 2017-04-13 14:30:36 3139918279 genome.fa 2017-04-13 14:30:40 714 genome.fa.fai
Any other way, to run this pipeline , ?
Hi @apeltzer, I am in us-east-1
region and I also get
Access Denied (Service: Amazon S3; Status Code: 403; Error Code: AccessDenied; Request ID:
aws s3 cp s3://ngi-igenomes/igenomes//Homo_sapiens/Ensembl/GRCh37/Annotation/Genes/genes.gtf ./
fatal error: An error occurred (403) when calling the HeadObject operation: Forbidden
Edit: This seems to have worked:
aws --no-sign-request s3 cp s3://ngi-igenomes/igenomes/Homo_sapiens/Ensembl/GRCh37/Annotation/Genes/genes.gtf ./
Hi @rakeshponnala! Did @thomasyu888 suggestion work for you? Will close for now because this seems to be a known issue with staging the genome files across multiple regions and will have to be fixed upstream in Nextflow.
Does it get fixed or not? I still have this problem with version 3.8.1 as:
Access Denied (Service: Amazon S3; Status Code: 403; Error Code: AccessDenied; Request ID: XR8E68BQ0V46WM7Q; S3 Extended Request ID: ND93qxrrFs+PmwwEjNShqfo3bv0VpJt+BSAFj6VuEVU72gh9A7LsfGgNA0MRNc2v5BMv56W0GyQ=; Proxy: null)
-- Check script '/home/hongan/.nextflow/assets/nf-core/rnaseq/./workflows/rnaseq.nf' at line: 26 or see '.nextflow.log' file for more details
I try to manually change the download cmd, but can not find where the cmd is in this pipeline
Does it get fixed or not? I still have this problem with version 3.8.1 as:
Access Denied (Service: Amazon S3; Status Code: 403; Error Code: AccessDenied; Request ID: XR8E68BQ0V46WM7Q; S3 Extended Request ID: ND93qxrrFs+PmwwEjNShqfo3bv0VpJt+BSAFj6VuEVU72gh9A7LsfGgNA0MRNc2v5BMv56W0GyQ=; Proxy: null) -- Check script '/home/hongan/.nextflow/assets/nf-core/rnaseq/./workflows/rnaseq.nf' at line: 26 or see '.nextflow.log' file for more details
I try to manually change the download cmd, but can not find where the cmd is in this pipeline
nf-core will install a plugin as nf-amazon, I don't know where to modify the cmd in order to add
--no-sign-request
however, a temporary solution is to set default aws credential as empty. It works for me as following:
[default]
aws_access_key_id =
aws_secret_access_key =
Does it get fixed or not? I still have this problem with version 3.8.1 as:
Access Denied (Service: Amazon S3; Status Code: 403; Error Code: AccessDenied; Request ID: XR8E68BQ0V46WM7Q; S3 Extended Request ID: ND93qxrrFs+PmwwEjNShqfo3bv0VpJt+BSAFj6VuEVU72gh9A7LsfGgNA0MRNc2v5BMv56W0GyQ=; Proxy: null) -- Check script '/home/hongan/.nextflow/assets/nf-core/rnaseq/./workflows/rnaseq.nf' at line: 26 or see '.nextflow.log' file for more details
I try to manually change the download cmd, but can not find where the cmd is in this pipeline
nf-core will install a plugin as nf-amazon, I don't know where to modify the cmd in order to add
--no-sign-request
however, a temporary solution is to set default aws credential as empty. It works for me as following:[default] aws_access_key_id = aws_secret_access_key =
Thanks for your response. Can you let me know where to add --no-sign-request
parameter, and where or which file to add the
[default] aws_access_key_id = aws_secret_access_key =
You can add it to ~/.aws/credentials [default] aws_access_key_id = aws_secret_access_key =
Hello, I'm trying to RNAseq pipeline on canine ref genome as below. But get the error. Wondering - if it has to do with as s3 permission issues.