Skip to content

Commit

Permalink
Merge pull request #96 from yunfeiguo/0.7.3
Browse files Browse the repository at this point in the history
0.7.3
  • Loading branch information
Yunfei Guo authored Jan 20, 2017
2 parents 40734a9 + 94f4e05 commit 5151077
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.bina.varsim</groupId>
<artifactId>varsim</artifactId>
<version>0.7.2</version>
<version>0.7.3</version>
<packaging>jar</packaging>

<name>varsim</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,6 @@ public void outputVcfRecord(BufferedWriter bw, Variant var, int geno0, int geno1
throws IOException {

//skip checking because it does not apparently harm to output nonATCGN ref and alt alleles
/*
// ignore ACTGN
String ref = var.getReferenceString().toUpperCase();
String alt = var.alternativeAlleleString().toUpperCase();
if (!ref.matches("[ACTGN]*") || (!var.isAltACTGN())) {
return; // don't output if it is not ACTGN
}
*/
bw.write(var.toString(geno0, geno1));
bw.newLine();
}
Expand Down

0 comments on commit 5151077

Please sign in to comment.