Open ChristopherBarrington opened 1 month ago
Hi @ChristopherBarrington,
thanks for reporting! The whole conversion workflow will be reimplemented in https://github.com/nf-core/scrnaseq/pull/369 hopefully fixing also this issue.
ok thanks, in the interim I have used a custom config to ignore if an error occurs
process {
withName: 'NFCORE_SCRNASEQ:SCRNASEQ:MTX_CONVERSION:MTX_TO_(H5AD|SEURAT)' {
errorStrategy = 'ignore'
}
}
Description of the bug
When using
--aligner cellranger
the matrix files are not read correctly byReadMtx
but are read correctly byRead10X
.The 12861st feature is:
It looks like the
read.table
function used byReadMtx
causes the problem - only reading so far as this feature. TheRead10X
function usesread.delim
which uses the string as-is. MaybeRead10X
would be a more robust alternative, assuming all aligners output in the 10X format?Command used and terminal output
No response
Relevant files
No response
System information