I downloaded a fastq file from ENA and tried to make an artifact file (qza file) out of it using Qiime2.
the fastq file is a metagenome sample that is consisted of only one fastq file per sample, which I thought should be the forward sequence formed by Single-end-sequencing.
my manifest file looks like below
sample-id /home/ys_qiime_practice/ena_files
sample.1 /ena_files_3/SRR5202831/SRR5202831.fastq.gz
sample.2
and the code I used is from the Qiime2 tutorial, as below
qiime tools import \ --type 'SampleData[SequencesWithQuality]' \
--input-path se-33-manifest \
--output-path single-end-demux.qza \
--input-format SingleEndFastqManifestPhred33V2
then i got the error message saying: Semantic type SampleData[SequenceWithQuality] does not have a compatible directory format.
can you please help me sort this problem? thank you !