You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#load the matrix of samples and assign row names
TPMs = read.csv(TPM_file, sep=" ", header=TRUE)
TPMs = TPMs %>%
arrange(HGNC) %>%
remove_rownames %>%
column_to_rownames(var="HGNC")
res = deconvolute(TPMs, "cibersort")
knitr::kable(res, digits=2)
When I try and run cibersort I get the following output:
Command error:
Loading required package: EPIC
Attaching package: ‘dplyr’
The following objects are masked from ‘package:stats’:
filter, lag
The following objects are masked from ‘package:base’:
intersect, setdiff, setequal, union
Running cibersort
Error in order(rownames(Y)) : argument 1 is not a vector
Calls: deconvolute ... deconvolute_cibersort -> eval -> eval -> -> order
In addition: Warning message:
The path argument of write_tsv() is deprecated as of readr 1.4.0.
Please use the file argument instead.
This warning is displayed once every 8 hours.
Call lifecycle::last_warnings() to see where this warning was generated.
Execution halted
sessioninfo() output:
R version 4.1.0 (2021-05-18)
Platform: x86_64-conda-linux-gnu (64-bit)
Running under: Debian GNU/Linux 10 (buster)
Currently I am running this on patient data that I can't share, but if there isn't anything obvious with what I posted above I can try and create some pretend results to see if it will still crash.
The text was updated successfully, but these errors were encountered:
Thanks for the bug report! I wonder if the issue is that it's a single sample.
For testing purposes, could you give it a try to include the same sample twice into your TPM matrix?
Hi folks,
I have a simple column of TPMs that works well with MCP, TIMER, EPIC, all from within immunedeconv.
My TPMs are in a matrix with the following format:
My basic script:
When I try and run cibersort I get the following output:
sessioninfo() output:
Currently I am running this on patient data that I can't share, but if there isn't anything obvious with what I posted above I can try and create some pretend results to see if it will still crash.
The text was updated successfully, but these errors were encountered: