Closed Feat-FeAR closed 9 months ago
kerblam run heatmaps -l --profile test does not work because:
kerblam run heatmaps -l --profile test
expression_matrix.tsv.gz
test_expression_matrix.csv.gz
kerblam.toml
[data.profiles.test] "expression_matrix.tsv.gz" = "test_expression_matrix.csv.gz"
does not work because then metasplit crashes
metasplit
[WARNING] metasplit.core: I only read one header. This might mean you gave me the wrong delimiter.
I think that the culprit is xsv fmt trying to format an already CSV-formatted file (albeit with TSV extension).
xsv fmt
This is fixed in ef2b50d
kerblam run heatmaps -l --profile test
does not work because:expression_matrix.tsv.gz
), while test espression matrix is generated as a CSV compressed file (test_expression_matrix.csv.gz
), butkerblam.toml
expects two CSVs... https://github.com/TCP-Lab/transportome_profiler/blob/32f40b74b63527fc45b2e7e8f7e9dbf94ca237e6/kerblam.toml#L10does not work because then
metasplit
crashesI think that the culprit is
xsv fmt
trying to format an already CSV-formatted file (albeit with TSV extension).