scrnapip icon indicating copy to clipboard operation
scrnapip copied to clipboard

Alternative entrypoint?

Open colindaven opened this issue 2 years ago • 1 comments

Hi,

I don't use Cellranger since we have BD Rhapsody data which is not compatible.

Is there a way to input the data into this tool after generating the count matrix, but before standard normalization, reporting etc ? In other words, I don't want to start with fastqs, but with a matrix.

Thanks

colindaven avatar Sep 18 '23 09:09 colindaven

If you need to input a csv format expression matrix file, this can be achieved by modifying the corresponding parameters in the following configuration file: [indata] s1="path/s1_matrix.csv" s2="path/s2_matrix.csv" [run] fastp=false cellrangle=false [step1] filetype="csv" csv_sep=","

Set the path of the expression matrix corresponding to each sample in [indata] Set fastp and cellranger to false in [run] to skip these two steps Set the input file type to csv and the separator to comma in [step1]

zhangjing1123 avatar Sep 22 '23 09:09 zhangjing1123