Skip to content

Commit

Permalink
Changed enrichment status tags of digests from 'A' and 'I' to 'E' and…
Browse files Browse the repository at this point in the history
… 'N'.
  • Loading branch information
hansenp committed Dec 11, 2020
1 parent 73d95b9 commit 811fa2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/jax/diachromatic/align/Digest.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ public int hashCode() {
*/
@Override
public String toString() {
String activeTag = "I";
String activeTag = "N";
if(active) {
activeTag = "A";
activeTag = "E";
}
return String.format("%s\t%d\t%d\t%s",
chromosome,
Expand Down

0 comments on commit 811fa2a

Please sign in to comment.