Skip to content

Commit a901f3e

Browse files
committed
Fix typo in decoupleR
1 parent ca2c33f commit a901f3e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/SequenceAnalysisMaintenanceTask.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public SequenceAnalysisMaintenanceTask()
6363
@Override
6464
public String getDescription()
6565
{
66-
return "Delete SequenceAnalysis Artifacts";
66+
return "SequenceAnalysis File Maintenance";
6767
}
6868

6969
@Override
@@ -293,12 +293,12 @@ else if (sf.getFilePath() == null)
293293

294294
private void processContainer(Container c, Logger log) throws IOException, PipelineJobException
295295
{
296+
if (!c.isWorkbook())
297+
log.info("processing container: " + c.getPath());
298+
296299
PipeRoot root = PipelineService.get().getPipelineRootSetting(c);
297300
if (root != null && !root.isCloudRoot())
298301
{
299-
if (!c.isWorkbook())
300-
log.info("processing container: " + c.getPath());
301-
302302
//first sequences
303303
File sequenceDir = new File(root.getRootPath(), ".sequences");
304304
TableInfo tableRefNtSequences = SequenceAnalysisSchema.getTable(SequenceAnalysisSchema.TABLE_REF_NT_SEQUENCES);

singlecell/resources/chunks/RunDecoupler.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ for (datasetId in names(seuratObjects)) {
22
printName(datasetId)
33
seuratObj <- readSeuratRDS(seuratObjects[[datasetId]])
44

5-
seuratObj <- CellMembrane::RunDecoupler(seuratObj)
5+
seuratObj <- CellMembrane::RunDecoupleR(seuratObj)
66

77
saveData(seuratObj, datasetId)
88

0 commit comments

Comments
 (0)