Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/GUI/Dialogues/ConfigurationDialogue.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ private void addComponents() {
Label label_threshold = new Label("Number of bases (x-axis)");
Label label_yaxis = new Label("Height y-axis");
Label label_length = new Label("Set number of bases (calculations)");
Label label_specie = new Label("Filter for specie");
Label label_specie = new Label("Filter for species");
Label label_title = new Label("Set title");

Label label_plot = new Label("Plot");
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/IO/OutputGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,7 @@ public void createPdf(String filename, JFreeChart[] charts, String file) throws
(double)(Math.round(ratio_used_reads*10000))/100 + "% of all input reads)";
} else{
read_per = Chunk.NEWLINE + "Number of used reads: " + df.format(damageProfiler.getNumberOfUsedReads()) + " (" +
(double)(Math.round(ratio_used_reads*10000))/100 + "% of all input reads) | Specie: " + this.specie;
(double)(Math.round(ratio_used_reads*10000))/100 + "% of all input reads) | Species: " + this.specie;
}

} else {
Expand All @@ -1004,7 +1004,7 @@ public void createPdf(String filename, JFreeChart[] charts, String file) throws
(double) (Math.round(ratio_used_reads * 10000)) / 100 + "% of all input reads) | ssLib protocol";
} else {
read_per = Chunk.NEWLINE + "Number of used reads: " + df.format(damageProfiler.getNumberOfUsedReads()) + " (" +
(double) (Math.round(ratio_used_reads * 10000)) / 100 + "% of all input reads) | Specie: " + this.specie + " | ssLib protocol";
(double) (Math.round(ratio_used_reads * 10000)) / 100 + "% of all input reads) | Species: " + this.specie + " | ssLib protocol";
}
}

Expand Down