Skip to content

Commit 7707e16

Browse files
committed
MCC request updates and allow cellranger vdj import to work when hashing is not used
1 parent f70bc46 commit 7707e16

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

singlecell/api-src/org/labkey/api/singlecell/CellHashingService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static public void setInstance(CellHashingService instance)
7070

7171
abstract public List<ToolParameterDescriptor> getHashingCallingParams(boolean allowDemuxEm);
7272

73-
abstract public Set<String> getHtosForParentReadset(Integer parentReadsetId, File webserverJobDir, SequenceAnalysisJobSupport support) throws PipelineJobException;
73+
abstract public Set<String> getHtosForParentReadset(Integer parentReadsetId, File webserverJobDir, SequenceAnalysisJobSupport support, boolean throwIfNotFound) throws PipelineJobException;
7474

7575
abstract public File getExistingFeatureBarcodeCountDir(Readset parentReadset, BARCODE_TYPE type, SequenceAnalysisJobSupport support) throws PipelineJobException;
7676

singlecell/src/org/labkey/singlecell/CellHashingServiceImpl.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1317,11 +1317,6 @@ public File getExistingFeatureBarcodeCountDir(Readset parentReadset, BARCODE_TYP
13171317
}
13181318

13191319
@Override
1320-
public Set<String> getHtosForParentReadset(Integer parentReadsetId, File webserverJobDir, SequenceAnalysisJobSupport support) throws PipelineJobException
1321-
{
1322-
return getHtosForParentReadset(parentReadsetId, webserverJobDir, support, true);
1323-
}
1324-
13251320
public Set<String> getHtosForParentReadset(Integer parentReadsetId, File webserverJobDir, SequenceAnalysisJobSupport support, boolean throwIfNotFound) throws PipelineJobException
13261321
{
13271322
Integer htoReadset = getCachedHashingReadsetMap(support).get(parentReadsetId);

0 commit comments

Comments
 (0)