出现“java.lang.AssertionError: SAM dictionaries are not the same”报错
Posted 橙子牛奶糖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了出现“java.lang.AssertionError: SAM dictionaries are not the same”报错相关的知识,希望对你有一定的参考价值。
运行一下程序时出现“java.lang.AssertionError: SAM dictionaries are not the same”报错
java -jar picard.jar SortVcf I=1000G_phase1.indels.hg19.sites.vcf O=1000G_phase1.indels.hg19.sites.sorted.vcf SEQUENCE_DICTIONARY=hg19.dict
说明要先更新hg19.dict,在做上步之前,先运行如下命令:
java -jar picard.jar UpdateVcfSequenceDictionary I=1000G_phase1.indels.hg19.sites.vcf O=1000G_phase1.indels.hg19.sites.dic.vcf SEQUENCE_DICTIONARY=hg19.dict
运行完后,会得到1000G_phase1.indels.hg19.sites.dic.vcf文件
再输入如下命令:
java -Xmx60g -jar picard.jar SortVcf I=1000G_phase1.indels.hg19.sites.dic.vcf O=1000G_phase1.indels.hg19.sites.sorted.vcf SEQUENCE_DICTIONARY=hg19.dict
以上是关于出现“java.lang.AssertionError: SAM dictionaries are not the same”报错的主要内容,如果未能解决你的问题,请参考以下文章
统计一篇英文文章内每个单词出现频率,并返回出现频率最高的前10个单词及其出现次数