iCTC | R Documentation |
this package stats::predicts whether – is a CTC or not using various preprocessing techniques and machine learning
iCTC(cell_samples, cases = c(4, 5, 6))
cell_samples, |
can contain any number of peripheral blood cells, with atleast desired genes either in row or column |
cases, |
can contain any subset of (1,2,3,4,5,6,7,8,9) numbers, meaning of these numbers given below: 1-> Harmony_NB, 2-> Harmony_RF, 3-> Harmony_GBM 4-> PCA_NB, 5-> PCA_RF, 6-> PCA_GBM 7-> Original_NB, 8-> Original_RF, 9-> Original_GBM Harmony-> projects cells into a shared embedding in which cells group by cell type rather than dataset-specific conditions. PCA-> Principal component analysis (PCA) is a technique used to emphasize variation and bring out strong patterns in a dataset. Original means none of (Harmony, PCA). NB-> Naive Bayes(ML Model) RF-> Random Forest(ML Model) GBM-> Gradient Boosting Machine(ML Model) |
results, will retrun table of samples and predicted values corresponding cases which have given row conatins cases and column with sample names
library(devtools) install_github("immunogenomics/harmony") library(harmony) cell_samples<-iCTC::raw_test_data$Clearcell_Polaris_sample_test results<-iCTC(cell_samples=cell_samples, cases = c(4,5,6)) results$CTC_probabilistic_score
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.