[picard] MarkDuplicates.jar 에서 MAPQ should be 0 for unmapped read
Bioinformatics/Biological data analysis 2011. 5. 25. 13:43Exception in thread "main" java.lang.RuntimeException: SAM validation error: ERROR: Record 62094965, Read name ILLUMINA-A16956_100211:4:14:19403:10471#0, MAPQ should be 0 for unmapped read
이러한 에러 발생시,
VALIDATION_STRINGENCY=LENIENT
옵션을 추가해준다.
This is a common problem, and you'll run into it with all the Picard suite of tools.
There's a setting that goes something like VALIDATION_STRINGENCY, and if you set it to LENIENT, it will complain about those reads, but it won't stop on them.
This happens with bwa, because it concatenates reference sequence, which leads to slightly odd things happening when a read aligns over the overlap. So this might be the source of your problem. Regardless of what's causing it, you can examine the problem reads, and cut them out, or change the stringency to let them go through.
이러한 에러 발생시,
VALIDATION_STRINGENCY=LENIENT
옵션을 추가해준다.
This is a common problem, and you'll run into it with all the Picard suite of tools.
There's a setting that goes something like VALIDATION_STRINGENCY, and if you set it to LENIENT, it will complain about those reads, but it won't stop on them.
This happens with bwa, because it concatenates reference sequence, which leads to slightly odd things happening when a read aligns over the overlap. So this might be the source of your problem. Regardless of what's causing it, you can examine the problem reads, and cut them out, or change the stringency to let them go through.
'Bioinformatics > Biological data analysis' 카테고리의 다른 글
[python] python 설치 (로컬계정) (0) | 2011.08.08 |
---|---|
[bam] MD tag and cigar (0) | 2011.08.05 |
[python] 상대경로를 절대경로로 변경 (0) | 2011.08.03 |
[picard] Picard를 사용하여 duplicates 마킹 (0) | 2011.05.25 |
[python] 현재 작업하고 있는 소스의 파일 이름 알아오는 방법 (0) | 2011.05.24 |