Thanks for the rapid reply. I was trying to use an already existing OTU table and representative sequences that had been generated in another program, so that makes sense.
I have been trying to run my data through QIIME2 from the beginning (demultiplexing) now but I am having other issues.
I have paired-end sequences and I am able to run the pipeline through using the paired end demultiplexed sequences and pathway, however I am losing most of my data in the read joining because the reverse reads have very poor quality. Thus, I have been trying to run through the pipeline using only the forward reads, but I keep getting the error below and I am not sure what is generating it or how to troubleshoot. I have looked at some of the files generated during demultiplexing by exporting them but they look okay.
Plugin error from vsearch:
Found blank or whitespace-only line before '+' in FASTQ file
Traceback (most recent call last):
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/q2cli/commands.py", line 246, in call
results = action(**arguments)
File "", line 2, in dereplicate_sequences
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/qiime2/sdk/action.py", line 222, in bound_callable
spec.view_type, recorder)
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/qiime2/sdk/result.py", line 261, in _view
result = transformation(self._archiver.data_dir)
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/qiime2/core/transform.py", line 59, in transformation
new_view = transformer(view)
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/q2_types/per_sample_sequences/_transformer.py", line 371, in _12
for seq in fq_reader:
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/skbio/io/registry.py", line 506, in
return (x for x in itertools.chain([next(gen)], gen))
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/skbio/io/registry.py", line 531, in _read_gen
yield from reader(file, **kwargs)
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/skbio/io/registry.py", line 1008, in wrapped_reader
yield from reader_function(fhs[-1], **kwargs)
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/skbio/io/format/fastq.py", line 344, in _fastq_to_generator
seq, qual_header = _parse_sequence_data(fh, seq_header)
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/skbio/io/format/fastq.py", line 481, in _parse_sequence_data
_blank_error("before '+'")
File "/home/malbright/anaconda3/envs/qiime2-2018.2/lib/python3.5/site-packages/skbio/io/format/fastq.py", line 473, in _blank_error
raise FASTQFormatError(error_string)
skbio.io._exception.FASTQFormatError: Found blank or whitespace-only line before '+' in FASTQ file
(END)
I tried to upload the demultiplexed .qza file, but it was too large.
SINGLE END VERSION
qiime tools import
--type MultiplexedSingleEndBarcodeInSequence
--input-path SE/
--output-path multiplexed-seqs_RUN6_forward.qza
multiplexed-seqs_RUN6_forward.qza
#REannotate pine data for PICRUST
qiime cutadapt demux-single
--i-seqs multiplexed-seqs_RUN6_forward.qza
--m-barcodes-file RUN6_mapping.tsv
--m-barcodes-column BarcodeSequence
--p-error-rate 0
--o-per-sample-sequences demultiplexed-seqs6BAC_Forward.qza
--o-untrimmed-sequences untrimmed.qza
--verbose
qiime quality-filter q-score
--i-demux demultiplexed-seqs6BAC_Forward.qza
--o-filtered-sequences Filtered_BAC6_forward.qza
--o-filter-stats demux-joined-filter-statsBac6_forward.qza \
qiime vsearch dereplicate-sequences
--i-sequences Filtered_BAC6_forward.qza
--o-dereplicated-table Table6_forward.qza
--o-dereplicated-sequences Rep-seqs6_forward.qza