File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
singlecell/src/org/labkey/singlecell/run Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ private File getGenomeCsv(int genomeId) throws PipelineJobException
184184
185185 private File getGenomeCsv (int genomeId , boolean forceWorkDir ) throws PipelineJobException
186186 {
187- ReferenceGenome rg = SequenceAnalysisService . get (). getReferenceGenome ( genomeId , getPipelineCtx ().getJob ().getUser () );
187+ ReferenceGenome rg = getPipelineCtx ().getSequenceSupport ().getCachedGenome ( genomeId );
188188 if (rg == null )
189189 {
190190 throw new PipelineJobException ("Unable to find genome: " + genomeId );
@@ -206,7 +206,7 @@ private File getGenomeFasta(int genomeId) throws PipelineJobException
206206
207207 private File getGenomeFasta (int genomeId , boolean forceWorkDir ) throws PipelineJobException
208208 {
209- ReferenceGenome rg = SequenceAnalysisService . get (). getReferenceGenome ( genomeId , getPipelineCtx ().getJob ().getUser () );
209+ ReferenceGenome rg = getPipelineCtx ().getSequenceSupport ().getCachedGenome ( genomeId );
210210 if (rg == null )
211211 {
212212 throw new PipelineJobException ("Unable to find genome: " + genomeId );
You can’t perform that action at this time.
0 commit comments