Skip to content

Commit e05e484

Browse files
committed
Rename AppendNimble for consistency with name
1 parent 602d868 commit e05e484

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
File renamed without changes.

singlecell/src/org/labkey/singlecell/SingleCellModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public static void registerPipelineSteps()
188188
SequencePipelineService.get().registerPipelineStep(new CheckExpectations.Provider());
189189
SequencePipelineService.get().registerPipelineStep(new CommonFilters.Provider());
190190
SequencePipelineService.get().registerPipelineStep(new RunVision.Provider());
191-
SequencePipelineService.get().registerPipelineStep(new NimbleAppend.Provider());
191+
SequencePipelineService.get().registerPipelineStep(new AppendNimble.Provider());
192192
SequencePipelineService.get().registerPipelineStep(new AppendTcr.Provider());
193193
SequencePipelineService.get().registerPipelineStep(new TcrFilter.Provider());
194194

singlecell/src/org/labkey/singlecell/pipeline/singlecell/NimbleAppend.java renamed to singlecell/src/org/labkey/singlecell/pipeline/singlecell/AppendNimble.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
import java.util.List;
1616
import java.util.Set;
1717

18-
public class NimbleAppend extends AbstractRDiscvrStep
18+
public class AppendNimble extends AbstractRDiscvrStep
1919
{
20-
public NimbleAppend(PipelineContext ctx, NimbleAppend.Provider provider)
20+
public AppendNimble(PipelineContext ctx, AppendNimble.Provider provider)
2121
{
2222
super(provider, ctx);
2323
}
@@ -35,9 +35,9 @@ public Provider()
3535

3636

3737
@Override
38-
public NimbleAppend create(PipelineContext ctx)
38+
public AppendNimble create(PipelineContext ctx)
3939
{
40-
return new NimbleAppend(ctx, this);
40+
return new AppendNimble(ctx, this);
4141
}
4242
}
4343

0 commit comments

Comments
 (0)