Hi, I am going to pair two end sequences after trimming. but I face problem in importing data. As I have many samples in one project, so I need to create a manifest file for pair two end sequences.
command I enter is
qiime tools import \
--type 'SampleData[PairedEndSequencesWithQuality]' \
--input-path /Users/linkilam/paried-ends/manifest.txt \
--input-format PairedEndFastqManifestPhred64V2 \
--output-path /Users/linkilam/paried-ends/imported_samples.qza
Then the error message is " UserWarning: Importing of PHRED 64 data is slow as it is converted internally to PHRED 33. Working with the imported data will not be slower than working with PHRED 33 data.
warnings.warn(_phred64_warning)" and " ValueError: Decoded Phred score is out of range [0, 62].
An unexpected error has occurred:
Decoded Phred score is out of range [0, 62].
See above for debug info."
how can I solve this problem ?