Hi there,
I’m facing exactly the same problem as the one introduced in this post. Interestingly, I ran the same code chunk both on my laptop and on the server, and the result is that in the laptop run no error occurred, while in the server one the comand was killed. I also tried the solution proposed by @nickscales in this post, by removing both the row containing ‘Partition:0’ and the one with ‘Name: No Name Provided’ (also separately) and re-building the sepp-refs-gg-13-8.qza file I was using, with the same disappointing result: the process stopped after 38 mins of calculation.
Here are the code I ran:
qiime fragment-insertion sepp \
--i-representative-sequences outputs/rep-seqs.qza \
--i-reference-database sepp-refs-gg-13-8.qza \
--p-threads 4 \
--o-tree outputs/insertion-tree.qza \
--o-placements outputs/insertion-placements.qza \
--verbose
and the error I obtained:
Traceback (most recent call last):
File "/opt/conda/envs/qiime2-2020.2/lib/python3.6/site-packages/q2cli/commands.py", line 328, in __call__
results = action(**arguments)
File "</opt/conda/envs/qiime2-2020.2/lib/python3.6/site-packages/decorator.py:decorator-gen-295>", line 2, in sepp
File "/opt/conda/envs/qiime2-2020.2/lib/python3.6/site-packages/qiime2/sdk/action.py", line 245, in bound_callable
output_types, provenance)
File "/opt/conda/envs/qiime2-2020.2/lib/python3.6/site-packages/qiime2/sdk/action.py", line 390, in _callable_executor_
output_views = self._callable(**view_args)
File "/opt/conda/envs/qiime2-2020.2/lib/python3.6/site-packages/q2_fragment_insertion/_insertion.py", line 77, in sepp
debug)
File "/opt/conda/envs/qiime2-2020.2/lib/python3.6/site-packages/q2_fragment_insertion/_insertion.py", line 53, in _run
subprocess.run(cmd, check=True, cwd=cwd)
File "/opt/conda/envs/qiime2-2020.2/lib/python3.6/subprocess.py", line 418, in run
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['run-sepp.sh', '/tmp/qiime2-archive-epd62htd/22f8ad0c-5879-4b69-8135-aed65b19719e/data/dna-sequences.fasta', 'q2-fragment-insertion', '-x', '1', '-A', '1000', '-P', '5000', '-a', '/tmp/qiime2-archive-9c66grac/a14c6180-506b-4ecb-bacb-9cb30bc3044b/data/aligned-dna-sequences.fasta', '-t', '/tmp/qiime2-archive-9c66grac/a14c6180-506b-4ecb-bacb-9cb30bc3044b/data/tree.nwk', '-r', '/tmp/qiime2-archive-9c66grac/a14c6180-506b-4ecb-bacb-9cb30bc3044b/data/raxml-info.txt']' returned non-zero exit status 1.
Plugin error from fragment-insertion:
Command '['run-sepp.sh', '/tmp/qiime2-archive-epd62htd/22f8ad0c-5879-4b69-8135-aed65b19719e/data/dna-sequences.fasta', 'q2-fragment-insertion', '-x', '1', '-A', '1000', '-P', '5000', '-a', '/tmp/qiime2-archive-9c66grac/a14c6180-506b-4ecb-bacb-9cb30bc3044b/data/aligned-dna-sequences.fasta', '-t', '/tmp/qiime2-archive-9c66grac/a14c6180-506b-4ecb-bacb-9cb30bc3044b/data/tree.nwk', '-r', '/tmp/qiime2-archive-9c66grac/a14c6180-506b-4ecb-bacb-9cb30bc3044b/data/raxml-info.txt']' returned non-zero exit status 1.
See above for debug info.
Many thanks for your time and help!