Hello, I have a problem when loading my data from 16s that are already demultiplexed to qiime2 using the manifest 64 or 33.
the format of my manifest is as follows:
sample-id,absolute-filepath,direction
1,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/1_1.fastq,forward
1,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/1_2.fastq,reverse
2,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/2_1.fastq,forward
2,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/2_2.fastq,reverse
3,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/3_1.fastq,forward
3,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/3_2.fastq,reverse
4,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/4_1.fastq,forward
4,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/4_2.fastq,reverse
5,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/5_1.fastq,forward
5,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/5_2.fastq,reverse
6,/mnt/c/Users/Proyecto 2018208/Desktop/BGI_Result1/BGI_Result/CleanData/6_1.fastq,forward
the command i am using is:
qiime tools import
--type 'SampleData[PairedEndSequencesWithQuality]'
--input-path ../../manifest.csv
--output-path Paired-end-demux.qza
--input-format SingleEndFastqManifestPhred33
The error I get is:
Traceback (most recent call last):
File "/home/gallego/miniconda3/envs/qiime2/lib/python3.6/site-packages/q2cli/builtin/tools.py", line 158, in import_data
view_type=input_format)
File "/home/gallego/miniconda3/envs/qiime2/lib/python3.6/site-packages/qiime2/sdk/result.py", line 241, in import_data
validate_level='max')
File "/home/gallego/miniconda3/envs/qiime2/lib/python3.6/site-packages/qiime2/sdk/result.py", line 266, in _from_view
recorder=recorder)
File "/home/gallego/miniconda3/envs/qiime2/lib/python3.6/site-packages/qiime2/core/transform.py", line 59, in make_transformation
(self._view_type, other._view_type))
Exception: No transformation from <class 'q2_types.per_sample_sequences._format.SingleEndFastqManifestPhred33V2'> to <class 'q2_types.per_sample_sequences._format.SingleLanePerSamplePairedEndFastqDirFmt'>
An unexpected error has occurred:
No transformation from <class 'q2_types.per_sample_sequences._format.SingleEndFastqManifestPhred33V2'> to <class 'q2_types.per_sample_sequences._format.SingleLanePerSamplePairedEndFastqDirFmt'>
See above for debug info.
It doesn't even work for me with the guide files
- --source-format command doesn't work, I used --input-format
Help me please