I have the results from several cellranger count runs that are not in the cellranger output directory structure, for example:
.
.
├── CM_P2
│ ├── barcodes.tsv.gz
│ ├── features.tsv.gz
│ ├── matrix.mtx.gz
│ └── metrics_summary.csv
├── CM_P3
│ ├── barcodes.tsv.gz
│ ├── features.tsv.gz
│ ├── matrix.mtx.gz
│ └── metrics_summary.csv
.
.
It looks like where importCellRanger looks for metrics_summary.csv is hardcoded in importCellRanger.R:
metrics_summary <- .importMetricsCellRanger(samplePaths, sampleNames, "outs", "metrics_summary.csv")
Is there another way to get the summary into the SCE object with the singleCellTK API?