Don't create a record if ref=N
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2018 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
8406325247
commit
578dcc54a4
|
|
@ -136,7 +136,7 @@ public class VariantsToVCF extends RefWalker<Integer, Integer> {
|
|||
|
||||
numSNPs++;
|
||||
snpQual += av.getNegLog10PError();
|
||||
} else {
|
||||
} else if (BaseUtils.simpleBaseToBaseIndex(ref.getBase()) != -1) {
|
||||
Map<String, String> str = new HashMap<String, String>();
|
||||
List<VCFGenotypeEncoding> alleles = new ArrayList<VCFGenotypeEncoding>();
|
||||
alleles.add(new VCFGenotypeEncoding(String.valueOf(ref.getBase())));
|
||||
|
|
|
|||
Loading…
Reference in New Issue