Hello,
I normally import my sequencing data as follows:
qiime tools import
--type 'SampleData[PairedEndSequencesWithQuality]'
--input-path MANIFEST.csv
--output-path 1SampleDataPaired.qza
--source-format PairedEndFastqManifestPhred33
However, I now want to join my forward and reverse sequences together with BBmerge before using QIIME2. I successfully merged each pair into one fastq file, but now I do not know how to import the files.
I tried this:
qiime tools import
--type 'SampleData[JoinedSequencesWithQuality]'
--input-path /path/to/directory/
--output-path 1SampleData.qza \
But it's not working:
Missing one or more files for SingleLanePerSampleSingleEndFastqDirFmt: '.+_.+_L[0-9][0-9][0-9]_R[12]_001\.fastq\.gz'
What do you suggest? Thanks.