Hello, I am trying to run the Atacama soil tutorial with a Docker image of Qiime2, on Illumina demultiplexed fastq files (I imported them using Casava 1.8 paired-end format to a .qza artifact).
However, the process exits with exit status -9 shortly after it starts. I have no idea why. May be someone can help?
Command:
docker run -t -i -v $(pwd):/data qiime2/core:2017.4 qiime dada2 denoise-paired
--i-demultiplexed-seqs demux-paired-end.qza
--o-table table.qza
--o-representative-sequences rep-seqs
--p-trim-left-f 1
--p-trim-left-r 1
--p-trunc-len-f 260
--p-trunc-len-r 220
Debug error after running --verbose:
DADA2 R package version: 1.1.7 _
1) Filtering Traceback (most recent call last):
_ File "/opt/conda/lib/python3.5/site-packages/q2cli/commands.py", line 218, in call
_ results = action(**arguments)_
_ File "", line 2, in denoise_paired_
_ File "/opt/conda/lib/python3.5/site-packages/qiime2/sdk/action.py", line 171, in callable_wrapper_
_ output_types, provenance)_
_ File "/opt/conda/lib/python3.5/site-packages/qiime2/sdk/action.py", line 248, in callable_executor_
_ output_views = callable(**view_args)_
_ File "/opt/conda/lib/python3.5/site-packages/q2_dada2/denoise.py", line 163, in denoise_paired
_ run_commands([cmd])_
_ File "/opt/conda/lib/python3.5/site-packages/q2_dada2/plot.py", line 26, in run_commands
_ subprocess.run(cmd, check=True)_
_ File "/opt/conda/lib/python3.5/subprocess.py", line 398, in run_
_ output=stdout, stderr=stderr)_
subprocess.CalledProcessError: Command '['run_dada_paired.R', '/tmp/tmpurepskn8/forward', '/tmp/tmpurepskn8/reverse', '/tmp/tmpurepskn8/output.tsv.biom', '/tmp/tmpurepskn8/filt_f', '/tmp/tmpurepskn8/filt_r', '260', '220', '1', '1', '2.0', '2', 'pooled', '1.0', '1', '1000000']' returned non-zero exit status -9
Thanks!
Stefano