Title: | What the Package Does (One Line, Title Case) |
---|---|
Description: | What the package does (one paragraph). |
Authors: | Kai Aragaki [aut, cre] |
Maintainer: | Kai Aragaki <[email protected]> |
License: | GPL (>= 3) |
Version: | 0.0.0.9000 |
Built: | 2025-03-03 05:03:42 UTC |
Source: | https://github.com/KaiAragaki/classifyBLCA |
A data.frame containing the centroid coordinates for the six consensus classes of muscle-invasive bladder cancer
centroids_consensus
centroids_consensus
An object of class tbl_df
(inherits from tbl
, data.frame
) with 857 rows and 9 columns.
Aurelie Kamoun
https://www.biorxiv.org/content/10.1101/488460v2
A data.frame containing the centroid coordinates for the five TCGA classes of muscle-invasive bladder cancer
centroids_tcga
centroids_tcga
An object of class tbl_df
(inherits from tbl
, data.frame
) with 1264 rows and 7 columns.
Gordon Robertson
https://doi.org/10.1016/j.cell.2017.09.007
A data.frame containing the centroid coordinates for the four UROMOL2021 classes of non-muscle-invasive bladder cancer
centroids_uromol2021
centroids_uromol2021
An object of class tbl_df
(inherits from tbl
, data.frame
) with 1942 rows and 7 columns.
Sia Lindskrog
https://www.nature.com/articles/s41467-021-22465-w
Calculate centroid correlation for samples
classify_blca( df, gene_id = c("entrez", "ensembl", "hgnc"), classifier = c("tcga", "uromol2021", "consensus"), tidy = FALSE )
classify_blca( df, gene_id = c("entrez", "ensembl", "hgnc"), classifier = c("tcga", "uromol2021", "consensus"), tidy = FALSE )
df |
A |
gene_id |
Character specifying the type of gene identifiers used for the
row names or first column of |
classifier |
Classifier to be used. |
tidy |
Logical. If TRUE, assumes the first column contains the gene identifiers. Otherwise, assumes IDs are row names |
If using the TCGA classifier, you must provide either Entrez IDs or HGNC symbols. The original centroids provided for the TCGA classifier only included Entrez and HGNC, and the conversion from Entrez to Ensembl is ambiguous. Therefore, conversion and selection of unique genes must be performed by the user on a case-by-case basis, perhaps using the expression value of the gene as a guide for which genes to keep.
A tibble
containing:
Pearson correlation
of a given sample
to the given class
centroid
low and high end of 95% confidence interval
centroid for which the sample has the highest correlation to
t-statistic
degrees of freedom
(Highest Correlation - 2nd Highest Correlation)/median(Distance to highest correlation)
Aurelie Kamoun