I am using a Windows 11 with ubuntu where I am using Conda for the environment to use the latest version of qiime2 (qiime2-amplicon-2026.1). After creating the artifact from a manifest of two with 39 samples with foward and revers reads sequenced by Ilumina and given in .fastq file. The plot looks almost empty. Why its that?
If you're referring to the quality score plot looking empty this is because what is plotted at each base position is a box plot of the distribution of quality scores. When there is little enough variance among the quality scores at a position the box plot collapses to just a single dash. Not to worry though because the quality scores are high.
It sees that it has good quality scores but one I performed dada2 denoising it gives me terrible values, filtering practically all the entire sequence of some samples:
For what I understand its that if I want to have a good data I need to have valiues >75% in the last colim. Or im I wrong and I can use this filtered sequences for further analysis?
You are correct that losing such a large proportion of reads in some samples during the dada2 denoising process is not desirable. However, if those samples are included in the demux visualizer you posted above, then the quality scores are unlikely to be the issue. I would review the truncation parameters that you used to make sure that you do not set either to a value that is longer than a significant proportion of the reads. You can see a summary of the read length distributions in the demux visualizer.
You dont think that may be its a problem with the creation of the artefacts? I think that the format might be wrong. The files that they sent me are .fasq of the foward and reverse reads of each sample. Then I put it into a manifest file in csv format al sequences and then I created the artefact with that. Can you check if my scripts ar ok?
Script of the cvs file:
sample-id,absolute-filepath,direction
G1,PATHWAY,forward
G1,PATHWAY,reverse
G2,PATHWAY,forward
G2,PATHWAY,reverse
…
The creation of the artefacts script:
qiime tools import \
It also seems unlikely that the import was the problem because the dada2 stats visualization that you posted above shows that the samples have reads (in the "input" column). In the very next column ("filtered") some samples drop almost all their reads. This is why I suggested double checking the truncating parameters, because I think most of what happens between "input" and "filtered" is quality filtering, truncating, and length-based filtering.