Skip to content

Commit a7cdde0

Browse files
committed
Drop fasterq-dump argument
1 parent 1842112 commit a7cdde0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/RestoreSraDataHandler.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,6 @@ public Pair<File, File> downloadSra(String dataset, File outDir) throws Pipeline
249249
args.add(SequencePipelineService.get().getJavaTempDir());
250250

251251
args.add("-f"); //force-overwrite
252-
args.add("--quiet");
253252

254253
args.add("-O");
255254
args.add(outDir.getPath());

singlecell/resources/chunks/PrepareRawCounts.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ for (datasetId in names(seuratObjects)) {
55
seuratObj <- CellMembrane::ReadAndFilter10xData(dataDir = rawCountDir, datasetId = datasetId, datasetName = datasetName, emptyDropsLower = emptyDropsLower, emptyDropsFdrThreshold = emptyDropsFdrThreshold, useEmptyDropsCellRanger = useEmptyDropsCellRanger, nExpectedCells = nExpectedCells)
66

77
if (!is.null(maxAllowableCells) && ncol(seuratObj) > maxAllowableCells) {
8-
stop(paste0('The seurat object has more than the max allowable cells. Please review emptyDrops results'))
8+
stop(paste0('The seurat object has ', ncol(seuratObj), ' cells, which is more than the max allowable cells (', maxAllowableCells, '). Please review emptyDrops results as this probably means thresholds were suboptimal.'))
99
}
1010

1111
saveData(seuratObj, datasetId)

0 commit comments

Comments
 (0)