Francesco
(Francesco Paroni Sterbini)
January 23, 2018, 5:02pm
1
Hi everybody,
this is my first attempt in using qiime2.
I have 2017.12.0 version natively installed.
I've just run the
qiime feature-table tabulate-seqs
--i-data rep-seqs.qza
--o-visualization rep-seqs.qzv
command and I received this: Error: no such option: --i-data
I attach the screenshot of feature-table tabulate-seqs help.
Should I install again the plugin? How can I do it?
Thanks for help
Francesco
Good morning Francesco,
Thanks for posting your command. I know how to help.
qiime feature-table tabulate-seqs
--i-data rep-seqs.qza
--o-visualization rep-seqs.qzv
Because your command is on three different lines, Linux thinks you are running three different commands! The solution is to place back slashes \
at the end of the first two lines, so that Linux knows these are all part of a single command.
qiime feature-table tabulate-seqs \
--i-data rep-seqs.qza \
--o-visualization rep-seqs.qzv
Or you can run this on a single line. Like this:
qiime feature-table tabulate-seqs --i-data rep-seqs.qza --o-visualization rep-seqs.qzv
Colin
1 Like
Francesco
(Francesco Paroni Sterbini)
January 25, 2018, 4:47pm
5
Hi Colin,
that was a quite easy solution!!
Thanks!!
3 Likes
system
(system)
Closed
February 25, 2018, 10:47pm
6
This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.