Skip to content

Commit

Permalink
Merge pull request #564 from pcingola/wgs_annotate
Browse files Browse the repository at this point in the history
WGS Fast memory data-frame based annotations
  • Loading branch information
pcingola authored Sep 28, 2024
2 parents 17cc55e + c365def commit 6e54996
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/snpeff/SnpEff.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public enum OutputFormat {

// Version info
public static final String SOFTWARE_NAME = "SnpEff";
public static final String REVISION = "d";
public static final String REVISION = "e";
public static final String BUILD = Gpr.compileTimeStamp(SnpEff.class);
public static final String BUILD_DATE = Gpr.compileDate(SnpEff.class);
public static final String VERSION_MAJOR = "5.2";
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/org/snpeff/vcf/VcfHeaderInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ public int getNumber() {
return number;
}

public String getNumberString() {
if(number > 0) return Integer.toString(number);
return vcfInfoNumber.toString();
}

public VcfInfoNumber getVcfInfoNumber() {
return vcfInfoNumber;
}
Expand Down
4 changes: 2 additions & 2 deletions test_04_TestCasesEff.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

Name , Value
Genome , testHg3770Chr22
Date , 2024-09-22 16:14
SnpEff_version , SnpEff 5.2c (build 2024-09-21 11:42), by Pablo Cingolani
Date , 2024-09-28 06:44
SnpEff_version , SnpEff 5.2d (build 2024-09-28 06:37), by Pablo Cingolani
Command_line_arguments , SnpEff -csvStats test_04_TestCasesEff.csv testHg3770Chr22 tests/integration/eff/eff_sort.vcf
Warnings , 1096
Number_of_lines_in_input_file, 1205
Expand Down

0 comments on commit 6e54996

Please sign in to comment.