Hello, I've been experiencing the following error: (1/1?) No such option: --imput-path (Possible options: --input-path, --output-path)
I have single-end demultiplexed with quality data and I'm trying to import them in qiime in order to create .qza file. The command that I used and gives me the above error is the following:
qiime tools import
--type 'SampleData[SequencesWithQuality]'
--imput-path reads
--input-format CasavaOneEightSingleLanePerSampleDirFmt
--output-path demux-single-end2.qza
I downloaded the file: "casava-18-single-end-demultiplexed.zip" and tried the additional command from: Importing data — QIIME 2 2023.9.2 documentation just to see how this is working and it worked. Additional command:
qiime tools import
--type 'SampleData[SequencesWithQuality]'
--input-path casava-18-single-end-demultiplexed
--input-format CasavaOneEightSingleLanePerSampleDirFmt
--output-path demux-single-end.qza
Since the problem in my command is about the input-path, I checked the files inside the casava-18-single-end-demultiplexed directory and realized that all the files ends with ...fastq.gz. The files in my directory "reads/" ends with ...fastq. Is this maybe the problem? How do I approach is?