Skip to content

Commit

Permalink
Another logging tweak.
Browse files Browse the repository at this point in the history
  • Loading branch information
mozack committed Jul 14, 2015
1 parent 7c5ec7b commit 542ea3f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/abra/ReAligner.java
Expand Up @@ -589,7 +589,9 @@ public void processRegion(Feature region) throws Exception {
List<BreakpointCandidate> svCandidates = assem.getSvCandidateRegions();
for (BreakpointCandidate svCandidate : svCandidates) {

System.out.println("SV: " + region.getDescriptor() + "-->" + svCandidate.getRegion().getDescriptor());
if (isDebug) {
System.out.println("SV: " + region.getDescriptor() + "-->" + svCandidate.getRegion().getDescriptor());
}
List<Feature> svRegions = new ArrayList<Feature>();
svRegions.add(region);
Feature svCandidateRegion = new Feature(svCandidate.getRegion().getSeqname(), svCandidate.getRegion().getStart(),
Expand Down

0 comments on commit 542ea3f

Please sign in to comment.