Skip to content

Commit 8024753

Browse files
committed
Bugfix to cellranger VDJ
1 parent 8a795a4 commit 8024753

File tree

2 files changed

+67
-123
lines changed

2 files changed

+67
-123
lines changed

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

Lines changed: 67 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,76 @@
3737
import org.labkey.singlecell.analysis.ProcessSingleCellHandler;
3838
import org.labkey.singlecell.analysis.SingleCellReadsetListener;
3939
import org.labkey.singlecell.button.FeatureBarcodeButton;
40-
import org.labkey.singlecell.pipeline.singlecell.*;
40+
import org.labkey.singlecell.pipeline.singlecell.AppendCiteSeq;
41+
import org.labkey.singlecell.pipeline.singlecell.AppendMetadata;
42+
import org.labkey.singlecell.pipeline.singlecell.AppendNimble;
43+
import org.labkey.singlecell.pipeline.singlecell.AppendSaturation;
44+
import org.labkey.singlecell.pipeline.singlecell.AppendTcr;
45+
import org.labkey.singlecell.pipeline.singlecell.AvgExpression;
46+
import org.labkey.singlecell.pipeline.singlecell.CalculateGeneComponentScores;
47+
import org.labkey.singlecell.pipeline.singlecell.CalculateUCellScores;
48+
import org.labkey.singlecell.pipeline.singlecell.CellBarcodeFilter;
49+
import org.labkey.singlecell.pipeline.singlecell.CheckExpectations;
50+
import org.labkey.singlecell.pipeline.singlecell.CiteSeqDimReduxDist;
51+
import org.labkey.singlecell.pipeline.singlecell.CiteSeqDimReduxPca;
52+
import org.labkey.singlecell.pipeline.singlecell.CiteSeqPlots;
53+
import org.labkey.singlecell.pipeline.singlecell.CiteSeqWnn;
54+
import org.labkey.singlecell.pipeline.singlecell.ClassifyTNKByExpression;
55+
import org.labkey.singlecell.pipeline.singlecell.ClearCommands;
56+
import org.labkey.singlecell.pipeline.singlecell.ClrNormalizeByGroup;
57+
import org.labkey.singlecell.pipeline.singlecell.CommonFilters;
58+
import org.labkey.singlecell.pipeline.singlecell.CustomGSEA;
59+
import org.labkey.singlecell.pipeline.singlecell.CustomUCell;
60+
import org.labkey.singlecell.pipeline.singlecell.DietSeurat;
61+
import org.labkey.singlecell.pipeline.singlecell.DimPlots;
62+
import org.labkey.singlecell.pipeline.singlecell.DoubletFinder;
63+
import org.labkey.singlecell.pipeline.singlecell.Downsample;
64+
import org.labkey.singlecell.pipeline.singlecell.DropAssays;
65+
import org.labkey.singlecell.pipeline.singlecell.DropCiteSeq;
66+
import org.labkey.singlecell.pipeline.singlecell.FeaturePlots;
67+
import org.labkey.singlecell.pipeline.singlecell.FilterDisallowedClasses;
68+
import org.labkey.singlecell.pipeline.singlecell.FilterRawCounts;
69+
import org.labkey.singlecell.pipeline.singlecell.FindClustersAndDimRedux;
70+
import org.labkey.singlecell.pipeline.singlecell.FindMarkers;
71+
import org.labkey.singlecell.pipeline.singlecell.IntegrateData;
72+
import org.labkey.singlecell.pipeline.singlecell.MergeSeurat;
73+
import org.labkey.singlecell.pipeline.singlecell.NormalizeAndScale;
74+
import org.labkey.singlecell.pipeline.singlecell.PhenotypePlots;
75+
import org.labkey.singlecell.pipeline.singlecell.PlotAssayFeatures;
76+
import org.labkey.singlecell.pipeline.singlecell.PlotAverageCiteSeqCounts;
77+
import org.labkey.singlecell.pipeline.singlecell.PredictScTour;
78+
import org.labkey.singlecell.pipeline.singlecell.PrepareRawCounts;
79+
import org.labkey.singlecell.pipeline.singlecell.RemoveCellCycle;
80+
import org.labkey.singlecell.pipeline.singlecell.RunCellHashing;
81+
import org.labkey.singlecell.pipeline.singlecell.RunCelltypist;
82+
import org.labkey.singlecell.pipeline.singlecell.RunCelltypistCustomModel;
83+
import org.labkey.singlecell.pipeline.singlecell.RunConga;
84+
import org.labkey.singlecell.pipeline.singlecell.RunCsCore;
85+
import org.labkey.singlecell.pipeline.singlecell.RunEscape;
86+
import org.labkey.singlecell.pipeline.singlecell.RunLDA;
87+
import org.labkey.singlecell.pipeline.singlecell.RunPCA;
88+
import org.labkey.singlecell.pipeline.singlecell.RunPHATE;
89+
import org.labkey.singlecell.pipeline.singlecell.RunRiraClassification;
90+
import org.labkey.singlecell.pipeline.singlecell.RunSDA;
91+
import org.labkey.singlecell.pipeline.singlecell.RunScGate;
92+
import org.labkey.singlecell.pipeline.singlecell.RunScGateBuiltin;
93+
import org.labkey.singlecell.pipeline.singlecell.RunScMetabolism;
94+
import org.labkey.singlecell.pipeline.singlecell.RunSingleR;
95+
import org.labkey.singlecell.pipeline.singlecell.RunVision;
96+
import org.labkey.singlecell.pipeline.singlecell.ScoreCellCycle;
97+
import org.labkey.singlecell.pipeline.singlecell.SeuratPrototype;
98+
import org.labkey.singlecell.pipeline.singlecell.SplitSeurat;
99+
import org.labkey.singlecell.pipeline.singlecell.StudyMetadata;
100+
import org.labkey.singlecell.pipeline.singlecell.SubsetSeurat;
101+
import org.labkey.singlecell.pipeline.singlecell.SummarizeTCellActivation;
102+
import org.labkey.singlecell.pipeline.singlecell.TcrFilter;
103+
import org.labkey.singlecell.pipeline.singlecell.TrainCelltypist;
104+
import org.labkey.singlecell.pipeline.singlecell.TrainScTour;
105+
import org.labkey.singlecell.pipeline.singlecell.UpdateSeuratPrototype;
106+
import org.labkey.singlecell.pipeline.singlecell.VireoHandler;
41107
import org.labkey.singlecell.run.CellRangerFeatureBarcodeHandler;
42108
import org.labkey.singlecell.run.CellRangerGexCountStep;
43109
import org.labkey.singlecell.run.CellRangerVDJWrapper;
44-
import org.labkey.singlecell.run.CellRangerVLoupeRepairHandler;
45110
import org.labkey.singlecell.run.NimbleAlignmentStep;
46111
import org.labkey.singlecell.run.NimbleAnalysis;
47112
import org.labkey.singlecell.run.VelocytoAlignmentStep;
@@ -166,7 +231,6 @@ public static void registerPipelineSteps()
166231
SequencePipelineService.get().registerPipelineStep(new MergeSeurat.Provider());
167232
SequencePipelineService.get().registerPipelineStep(new NormalizeAndScale.Provider());
168233
SequencePipelineService.get().registerPipelineStep(new ClrNormalizeByGroup.Provider());
169-
SequenceAnalysisService.get().registerFileHandler(new CellRangerVLoupeRepairHandler());
170234
SequencePipelineService.get().registerPipelineStep(new PrepareRawCounts.Provider());
171235
SequenceAnalysisService.get().registerFileHandler(new VireoHandler());
172236

singlecell/src/org/labkey/singlecell/run/CellRangerVLoupeRepairHandler.java

Lines changed: 0 additions & 120 deletions
This file was deleted.

0 commit comments

Comments
 (0)