Skip to content

Commit

Permalink
Linx:
Browse files Browse the repository at this point in the history
- reportable fusions file context marked as 'Exon' since always reports the fused exon
  • Loading branch information
charlesshale committed Aug 26, 2019
1 parent b223244 commit d26a335
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,8 @@ public static String context(final Transcript transcript, int fusedExon)
case TRANS_REGION_TYPE_UPSTREAM:
return "Promoter Region";
case TRANS_REGION_TYPE_EXONIC:
return String.format("Exon %d", fusedExon);
case TRANS_REGION_TYPE_INTRONIC:
return String.format("Intron %d", fusedExon);
return String.format("Exon %d", fusedExon);
}

return String.format("ERROR: %s", transcript.regionType());
Expand Down

0 comments on commit d26a335

Please sign in to comment.