Skip to content

Commit

Permalink
This fixes #448
Browse files Browse the repository at this point in the history
  • Loading branch information
PoslavskySV committed Nov 16, 2018
1 parent 4260528 commit e7c8615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/milaboratory/mixcr/cli/CommandExport.java
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ void run1(List<FieldExtractor<? super Clone>> exporters) throws Exception {
count = set.getClones().stream().mapToDouble(Clone::getCount).sum();
int di = initialSet.size() - set.size();
double cdi = initialCount - count;
warn("Filtered " + di + " of " + initialSet.size() + " clones (" + Util.PERCENT_FORMAT.format(100.0 * di / initialSet.size()) + "%).");
warn("Filtered " + cdi + " of " + initialCount + " reads (" + Util.PERCENT_FORMAT.format(100.0 * cdi / initialCount) + "%).");
warn("Filtered " + set.size() + " of " + initialSet.size() + " clones (" + Util.PERCENT_FORMAT.format(100.0 * di / initialSet.size()) + "%).");
warn("Filtered " + count + " of " + initialCount + " reads (" + Util.PERCENT_FORMAT.format(100.0 * cdi / initialCount) + "%).");
}
}
}
Expand Down

0 comments on commit e7c8615

Please sign in to comment.