my command:
java -Xmx20g -jar GenomeAnalysisTK-1.3-24-gc8b1c92/GenomeAnalysisTK.jar \
-T VariantAnnotator \
-R hg19fastadatabase/ucsc.hg19.fasta \
-I dedup_mate_recal.bam \
--variant recal_raw.vcf \
--dbsnp hg19_GATK1_1/dbsnp_132.hg19.vcf \
-o output2.vcf \
-A FisherStrand \
-A MappingQualityRankSumTest \
-A ReadPositionRankSumTest \
-A RMSMappingQuality \
-A MappingQualityZero \
-A QualByDepth \
-A HaplotypeScore \
-A DepthOfCoverage \
-A BaseQualityRankSumTest
I got the Error:
##### ERROR MESSAGE: Invalid command line: Argument annotation has a bad value: Class ReadPositionRankSumTest is not found; please check that you have specified the class name correctly
##### ERROR ------------------------------------------------------------------------------------------
ReadPositionRankSumTest (ReadPosRankSum)
how can i solve this problem
java -Xmx20g -jar GenomeAnalysisTK-1.3-24-gc8b1c92/GenomeAnalysisTK.jar \
-T VariantAnnotator \
-R hg19fastadatabase/ucsc.hg19.fasta \
-I dedup_mate_recal.bam \
--variant recal_raw.vcf \
--dbsnp hg19_GATK1_1/dbsnp_132.hg19.vcf \
-o output2.vcf \
-A FisherStrand \
-A MappingQualityRankSumTest \
-A ReadPositionRankSumTest \
-A RMSMappingQuality \
-A MappingQualityZero \
-A QualByDepth \
-A HaplotypeScore \
-A DepthOfCoverage \
-A BaseQualityRankSumTest
I got the Error:
##### ERROR MESSAGE: Invalid command line: Argument annotation has a bad value: Class ReadPositionRankSumTest is not found; please check that you have specified the class name correctly
##### ERROR ------------------------------------------------------------------------------------------
ReadPositionRankSumTest (ReadPosRankSum)
how can i solve this problem
Comment