Skip to content

Commit

Permalink
fix command filterAlignments
Browse files Browse the repository at this point in the history
  • Loading branch information
PoslavskySV committed Jun 19, 2019
1 parent 3ee1955 commit be74711
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<dependency> <dependency>
<groupId>io.repseq</groupId> <groupId>io.repseq</groupId>
<artifactId>repseqio</artifactId> <artifactId>repseqio</artifactId>
<version>1.3.1</version> <version>1.3.2-SNAPSHOT</version>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>com.milaboratory</groupId> <groupId>com.milaboratory</groupId>
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public AlignmentsFilter getFilter() {
public ActionConfiguration getConfiguration() { public ActionConfiguration getConfiguration() {
return new FilterConfiguration(getChains(), return new FilterConfiguration(getChains(),
chimerasOnly, chimerasOnly,
limit, getReadIds().toArray(), getContainFeature(), getCdr3Equals()); limit, getReadIds() == null ? null : getReadIds().toArray(), getContainFeature(), getCdr3Equals());
} }


@Override @Override
Expand All @@ -145,7 +145,7 @@ public void run1() throws Exception {
sReads = new CountLimitingOutputPort<>(sReads, limit); sReads = new CountLimitingOutputPort<>(sReads, limit);
progress = SmartProgressReporter.extractProgress((CountLimitingOutputPort<?>) sReads); progress = SmartProgressReporter.extractProgress((CountLimitingOutputPort<?>) sReads);
} }
writer.header(reader.getParameters(), reader.getUsedGenes(), null); writer.header(reader.getParameters(), reader.getUsedGenes(), getFullPipelineConfiguration());
SmartProgressReporter.startProgressReport("Filtering", progress); SmartProgressReporter.startProgressReport("Filtering", progress);
int total = 0, passed = 0; int total = 0, passed = 0;
final AlignmentsFilter filter = getFilter(); final AlignmentsFilter filter = getFilter();
Expand Down

0 comments on commit be74711

Please sign in to comment.