Skip to content

Commit

Permalink
Update SnpSift_exercise_KEY.md
Browse files Browse the repository at this point in the history
Fixed solution: exercise 4 was looking for chromosome 13 not 3
  • Loading branch information
epartan authored Sep 24, 2024
1 parent 9f31211 commit 6a3f5d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lessons/SnpSift_exercise_KEY.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ java -jar $SNPEFF/SnpSift.jar filter "( CHROM = '11' ) & ( ( ANN[*].EFFECT has
**4)** Extract all of the high impact mutations on Chromosome 12 or moderate impact mutations on Chromosome 3.

```
java -jar $SNPEFF/SnpSift.jar filter "( ( CHROM = '12') & ( ANN[*].IMPACT has 'HIGH' ) ) | ( ( CHROM = '13') & ( ANN[*].IMPACT has 'MODERATE' ) )" mutect2_syn3_normal_syn3_tumor_GRCh38.p7-pass-filt-LCR.pedigree_header.snpeff.dbSNP.vcf
java -jar $SNPEFF/SnpSift.jar filter "( ( CHROM = '12') & ( ANN[*].IMPACT has 'HIGH' ) ) | ( ( CHROM = '3') & ( ANN[*].IMPACT has 'MODERATE' ) )" mutect2_syn3_normal_syn3_tumor_GRCh38.p7-pass-filt-LCR.pedigree_header.snpeff.dbSNP.vcf
```

[Next Lesson >>](11_IGV.md)
Expand Down

0 comments on commit 6a3f5d7

Please sign in to comment.