Entering edit mode
9.2 years ago
BioRyder
▴
220
Hello,
I am trying to convert bcl to fastq by bcl2fastq v2.16.0.10. my Index length is 6. I have used --use-bases-mask option as follows:
--use-bases-mask Y*,I6n,y*
Is it correct base mask option .. ?
Hello,
I used the following
-m=Y*,I8n*,Y*
base mask option in bcl2fastq 1.8.4 version in got the out put.But When I am using same in bcl2fastq v2.16.0.10,--use-bases-mask Y*,I8n*,Y*
,showing the error thatIndex length is : 8
If the index read is only 8bp long, then you can't use a 9bp mask like
I8n
; just useI8
. If the index is 9bp long, then the trailing '*' is the problem; useI8n
.