You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for producing this great software. I've a suggestion to add a check of user input.
The documentation states "The default running mode is paired-end and requires an even number of FASTQ files represented as pairs, e.g. kallisto quant -i index -o output pairA_1.fastq pairA_2.fastq pairB_1.fastq pairB_2.fastq"
It seems that the order is critical. If the user accidentally supplies the files in the order pairA_1.fastq pairB_1.fastq ... pairA_2.fastq pairB_2.fastq ... , kallisto runs without issuing any errors, but outputs erroneous quantities.
The suggestion is to add a check of the user input.
The text was updated successfully, but these errors were encountered:
I don’t really think there is a way to check for that. FASTQ files are just DNA base sequences, and there’s no way for a program to know what file should be paired with what.
That would be possible — I often work with FASTQs with altered read names, but perhaps a warning could be printed out if the names don’t match. Will consider it.
Alternatively you could check the read counts are the same for the first and second files, the third and fourth files, and so on. But that seems more complicated than simply checking the name of the first read from each file, which would normally give the pattern readA readA readB readB readC readC ...
I'm surprised the program doesn't fail due to the pairs of files being considered to be a pair not having the same numbers of reads actually.
Hi, thanks for producing this great software. I've a suggestion to add a check of user input.
The documentation states "The default running mode is paired-end and requires an even number of FASTQ files represented as pairs, e.g. kallisto quant -i index -o output pairA_1.fastq pairA_2.fastq pairB_1.fastq pairB_2.fastq"
It seems that the order is critical. If the user accidentally supplies the files in the order pairA_1.fastq pairB_1.fastq ... pairA_2.fastq pairB_2.fastq ... , kallisto runs without issuing any errors, but outputs erroneous quantities.
The suggestion is to add a check of the user input.
The text was updated successfully, but these errors were encountered: