3.1 main Functions
3.1.1 availableData()
This function scans all the cancer studies to examine presence of RNA-Seq, RNA-SeqRelativeToNormalSapmles, microRNA-Seq, microarray and methylation data. It requires a name to label the output excel file. In the following example, the entered name is "list.2020-05-05"
.
It contains one optional argument:
- oneOfEach, a character vector that contains name of a supported technique that includes
RNA-Seq
,RNA-SeqRTN
,microRNA-Seq
,Microarray.mRNA
Microarray.microRNA
ormethylation
. The default value in FALSE. Note that, if this option is selected, the function will select one cancer of each type that contains the requested data. Output will also be printed on console instead of generating an excel file. Therefore, it is mandatory that user assigns the output to a variable of interest:cancer_names <- availableData("list.2020-05-05", oneOfEach = "RNA-Seq")
availableData("list.2020-05-05")
Upon finishing, the output excel file is accessible at the present (working) directory. It contains different columns: cancer_study_id, cancer_study_name, RNA.Seq, microRNA.Seq, microarray of mRNA, microarray of miRNA, methylation and description.
if there is already an excel file with the given name in the working directory, the function prints a message, asking the user whether or not it should proceeds. If the answer is no, the function prints a message to inform the user that it has stopped further processing. If the user types yes, availableData()
will overwrite the excel file after it has obtained the requested data.
3.1.2 cleanDatabase()
This function removes the created databases in the cbaf package directory. This helps users to obtain the fresh data from cbioportal.org.
It contains one optional argument:
- databaseNames, a character vector that contains name of databases that will be removed. The default value in null.
In the following example, databaseNames is Whole2
.
cleanDatabase("Whole2")
If the databaseNames left unentered, the function will print the available databases and allow the user to choose the desired ones.
3.1.3 processOneStudy()
This function combines four other functions for the ease of use. It is recommended that users only use this parent function to obtain and process gene data across multiple subsections of a cancer study so that child functions work with maximum efficiency. processOneStudy()
uses the following functions:
- obtainOneStudy()
- automatedStatistics()
- heatmapOutput()
- xlsxOutput()
It requires at least four arguments. All function arguments are the same as low-level functions:
genesList, a list that contains at least one gene group. There is no limit on the number of gene groups, users can set as many as gene groups they desire.
submissionName, a character string containing name of interest. It is used for naming the process and should be the same as submissionName for either of
obtainOneStudy()
orobtainMultipleStudies()
functions.studyName, a character string showing the desired cancer name. It is an standard cancer study name that exists on cbioportal.org, such as
Acute Myeloid Leukemia (TCGA, NEJM 2013)
.desiredTechnique, one of the five supported high-throughput studies. RNA-Seq data can be accessed either as relative to all samples or relative to normal samples:
RNA-Seq
,RNA-SeqRTN
,microRNA-Seq
,microarray.mRNA
,microarray.microRNA
ormethylation
.
Function also contains nineteen other options:
desiredCaseList a numeric vector that contains the index of desired cancer subgroups, assuming the user knows index of desired subgroups. If not, desiredCaseList must be set as ‘none’, function will show the available subgroups asking the user to enter the desired ones during the process. The default value is ‘none’.
validateGenes a logical value that, if set to be
TRUE
, function will check each cancer subgroup to find whether or not every gene has a record. If the subgroup doesn’t have a record for the specific gene, function checks for alternative gene names that cbioportal might use instead of the given gene name.calculate, a character vector that contains the desired statistical procedures. Default input is
c("frequencyPercentage", "frequencyRatio", "meanValue")
. To get all the statistics, use the following instead:c("frequencyPercentage", "frequencyRatio", "meanValue", "medianValue")
.cutoff, a number used to limit samples to those that are greater than this number (cutoff). The default value for methylation data is 0.8 while gene expression studies use default value of 2.0. For methylation studies, it is observed/expected ratio, for the rest, it is log z-score. To change the cutoff to any desired number, change the option to
cutoff = desiredNumber
in which desiredNumber is the number of interest.round, a logical value that forces the function to round all the calculated values to two decimal places. The default value is
TRUE
.topGenes, a logical value that, if set as TRUE, causes the function to create three data.frame that contain the five top genes for each cancer. To get all the three data.frames, frequencyPercentage, meanValue and median must have been included for calculate.
shortenStudyNames a logical value that causes the function to remove the last part of cancer names aiming to shorten them. The removed segment usually contains the name of scientific group that has conducted the experiment.
geneLimit if large number of genes exist in at least one gene group, this option can be used to limit the number of genes that are shown on heatmap. For instance,
geneLimit=50
will limit the heatmap to 50 genes that show the most variation across multiple study / study subgroups. The default value is50
.rankingMethod determines the method by which genes will be ranked prior to drawing heatmap.
variation
orders the genes based on unique values in one or few cancer studies whilehighValue
ranks the genes when they cotain high values in multiple / many cancer studies. This option is useful when number of genes are too much so that user has to limit the number of genes on heatmap bygeneLimit
.heatmapFileFormat This option enables the user to select the desired image file format of the heatmaps. The default value is
"TIFF"
. Other suppoeted formats include"BMP"
,"JPG"
,"PNG"
, and"PDF"
.resolution This option can be used to adjust the resolution of the output heatmaps as ‘dot per inch’. The defalut resolution is 600.
RowCex a number that specifies letter size in heatmap row names, which ranges from 0 to 2. If
RowCex = "auto"
, the function will automatically determine the best RowCex.ColCex a number that specifies letter size in heatmap column names, which ranges from 0 to 2. If
ColCex = "auto"
, the function will automatically determine the best ColCex.heatmapMargines a numeric vector that is used to set heatmap margins. If
heatmapMargines = "auto"
, the function will automatically determine the best possible margines. Otherwise, enter the desired margine as e.g.c(10,10)
.rowLabelsAngle a number that determines the angle with which the gene names are shown in heatmaps. The default value is 0 degree.
columnLabelsAngle a number that determines the angle with which the studies/study subgroups names are shown on heatmaps. The default value is 45 degree.
heatmapColor a character string that defines heatmap color. The default value is “RdBu”. “RdGr” is also a popular color in genomic studies. To see the rest of colors, please type
library(RColorBrewer)
and thendisplay.brewer.all()
.reverseColor a logical value that reverses the color gradient for heatmap(s).
transposedHeatmap a logical value that transposes heatmap rows to columns and vice versa.
simplifyBy a number that tells the function to change the values smaller than that to zero. The purpose behind this option is to facilitate recognizing candidate genes. Therefore, it is not suited for publications. It has the same unit as cutoff.
genesToDrop a character vector. Gene names within this vector will be omitted from heatmap. The default value is
FALSE
.transposeResults, a logical value to replace the columns and rows of the output.
To get more information about the function options, please refer to the child function to whom they correspond, for example genesList
lies within obtainMultipleStudies()
function. The following is an example showing how this function can be used:
genes <- list(K.demethylases = c("KDM1A", "KDM1B", "KDM2A", "KDM2B", "KDM3A", "KDM3B", "JMJD1C", "KDM4A"), K.methyltransferases = c("SUV39H1", "SUV39H2", "EHMT1", "EHMT2", "SETDB1", "SETDB2", "KMT2A", "KMT2A"))
processOneStudy(genes, "test", "Breast Invasive Carcinoma (TCGA, Cell 2015)", "RNA-Seq", desiredCaseList = c(2,3,4,5), calculate = c("frequencyPercentage", "frequencyRatio"), heatmapFileFormat = "TIFF")
## [obtainOneStudy] Please choose a name other than 'test' and 'test2'.
## [obtainOneStudy] The requested data already exist locally.
## [obtainOneStudy] The function was haulted!
##
## [automatedStatistics] Please choose a name other than 'test' and 'test2'.
## [automatedStatistics] The requested data already exist locally.
## [automatedStatistics] The function was haulted!
##
## [heatmapOutput] Automatically determining 'RowCex'.
## [heatmapOutput] Automatically determining 'ColCex'.
## [heatmapOutput] Automatically determining 'heatmapMargines'.
## [heatmapOutput] Preparing heatmap(s).
##
|
| | 0%
##
|
|=================================== | 50%
##
|
|======================================================================| 100%
##
## [xlsxOutput] Preparing excel file(s).
##
|
| | 0%
|
|=================================== | 50%
|
|======================================================================| 100%
The output excel file and heatmaps are stored in separate folders for every gene group. Ultimately, all the folders are located inside another folder, which its name is the combination of submissionName and “output for multiple studies”, for example “test output for multiple studies”.
3.1.4 processMultipleStudies()
This function combines four other functions for the ease of use. It is recommended that users only use this parent function to obtain and process gene data across multiple cancer studies for maximum efficiency. processMultipleStudies()
uses the following functions:
- obtainMultipleStudies()
- automatedStatistics()
- heatmapOutput()
- xlsxOutput()
It requires at least four arguments. All function arguments are the same as low-level functions:
genesList, a list that contains at least one gene group. There is no limit on the number of gene groups, users can set as many as gene groups they desire.
submissionName, a character string containing name of interest. It is used for naming the process and should be the same as submissionName for either of
obtainOneStudy()
orobtainMultipleStudies()
functions.studyName, a character string showing the desired cancer name. It is an standard cancer study name that exists on cbioportal.org, such as
Acute Myeloid Leukemia (TCGA, NEJM 2013)
.desiredTechnique, one of the five supported high-throughput studies. RNA-Seq data can be accessed either as relative to all samples or relative to normal samples:
RNA-Seq
,RNA-SeqRTN
,microRNA-Seq
,microarray.mRNA
,microarray.microRNA
ormethylation
.
Function also contains nineteen other options:
cancerCode, if
TRUE
, will force the function to use the standard abbreviated cancer names instead of complete cancer names. For example,laml_tcga_pub
is the shortened name forAcute Myeloid Leukemia (TCGA, NEJM 2013)
.validateGenes a logical value that, if set to be
TRUE
, function will check each cancer subgroup to find whether or not every gene has a record. If the subgroup doesn’t have a record for the specific gene, function checks for alternative gene names that cbioportal might use instead of the given gene name.calculate, a character vector that contains the desired statistical procedures. Default input is
c("frequencyPercentage", "frequencyRatio", "meanValue")
. To get all the statistics, use the following instead:c("frequencyPercentage", "frequencyRatio", "meanValue", "medianValue")
.cutoff, a number used to limit samples to those that are greater than this number (cutoff). The default value for methylation data is 0.8 while gene expression studies use default value of 2.0. For methylation studies, it is observed/expected ratio, for the rest, it is log z-score. To change the cutoff to any desired number, change the option to
cutoff = desiredNumber
in which desiredNumber is the number of interest.round, a logical value that forces the function to round all the calculated values to two decimal places. The default value is
TRUE
.topGenes, a logical value that, if set as TRUE, causes the function to create three data.frame that contain the five top genes for each cancer. To get all the three data.frames, frequencyPercentage, meanValue and median must have been included for calculate.
shortenStudyNames a logical value that causes the function to remove the last part of cancer names aiming to shorten them. The removed segment usually contains the name of scientific group that has conducted the experiment.
geneLimit if large number of genes exist in at least one gene group, this option can be used to limit the number of genes that are shown on heatmap. For instance,
geneLimit=50
will limit the heatmap to 50 genes that show the most variation across multiple study / study subgroups. The default value is50
.rankingMethod determines the method by which genes will be ranked prior to drawing heatmap.
variation
orders the genes based on unique values in one or few cancer studies whilehighValue
ranks the genes when they cotain high values in multiple / many cancer studies. This option is useful when number of genes are too much so that user has to limit the number of genes on heatmap bygeneLimit
.heatmapFileFormat This option enables the user to select the desired image file format of the heatmaps. The default value is
"TIFF"
. Other suppoeted formats include"BMP"
,"JPG"
,"PNG"
, and"PDF"
.resolution This option can be used to adjust the resolution of the output heatmaps as ‘dot per inch’. The defalut resolution is 600.
RowCex a number that specifies letter size in heatmap row names, which ranges from 0 to 2. If
RowCex = "auto"
, the function will automatically determine the best RowCex.ColCex a number that specifies letter size in heatmap column names, which ranges from 0 to 2. If
ColCex = "auto"
, the function will automatically determine the best ColCex.heatmapMargines a numeric vector that is used to set heatmap margins. If
heatmapMargines = "auto"
, the function will automatically determine the best possible margines. Otherwise, enter the desired margine as e.g.c(10,10)
.rowLabelsAngle a number that determines the angle with which the gene names are shown in heatmaps. The default value is 0 degree.
columnLabelsAngle a number that determines the angle with which the studies/study subgroups names are shown on heatmaps. The default value is 45 degree.
heatmapColor a character string that defines heatmap color. The default value is “RdBu”. “RdGr” is also a popular color in genomic studies. To see the rest of colors, please type
library(RColorBrewer)
and thendisplay.brewer.all()
.reverseColor a logical value that reverses the color gradient for heatmap(s).
transposedHeatmap a logical value that transposes heatmap rows to columns and vice versa.
simplifyBy a number that tells the function to change the values smaller than that to zero. The purpose behind this option is to facilitate recognizing candidate genes. Therefore, it is not suited for publications. It has the same unit as cutoff.
genesToDrop a character vector. Gene names within this vector will be omitted from heatmap. The default value is
FALSE
.transposeResults, a logical value to replace the columns and rows of the output.
downloadOnServer, a logical value that activates a two step procedure, in which, Data are downloaded on a server and then the generated zip file can be transferred to a local computer to continue the procedure. The default value is
FALSE
.
To get more information about the function options, please refer to the child function to whom they correspond, for example genesList
lies within obtainMultipleStudies()
function. The following is an example showing how this function can be used:
genes <- list(K.demethylases = c("KDM1A", "KDM1B", "KDM2A", "KDM2B", "KDM3A", "KDM3B", "JMJD1C", "KDM4A"), K.methyltransferases = c("SUV39H1", "SUV39H2", "EHMT1", "EHMT2", "SETDB1", "SETDB2", "KMT2A", "KMT2A"))
studies <- c("Acute Myeloid Leukemia (TCGA, Provisional)", "Adrenocortical Carcinoma (TCGA, Provisional)", "Bladder Urothelial Carcinoma (TCGA, Provisional)", "Brain Lower Grade Glioma (TCGA, Provisional)", "Breast Invasive Carcinoma (TCGA, Provisional)")
processMultipleStudies(genes, "test2", studies, "RNA-Seq", calculate = c("frequencyPercentage", "frequencyRatio"), heatmapFileFormat = "TIFF")
## [obtainMultipleStudies] Please choose a name other than 'test' and 'test2'.
## [obtainMultipleStudies] The requested data already exist locally.
## [obtainMultipleStudies] The function was haulted!
##
## [automatedStatistics] Please choose a name other than 'test' and 'test2'.
## [automatedStatistics] The requested data already exist locally.
## [automatedStatistics] The function was haulted!
##
## [heatmapOutput] Automatically determining 'RowCex'.
## [heatmapOutput] Automatically determining 'ColCex'.
## [heatmapOutput] Automatically determining 'heatmapMargines'.
## [heatmapOutput] Preparing heatmap(s).
##
|
| | 0%
##
|
|=================================== | 50%
##
|
|======================================================================| 100%
##
## [xlsxOutput] Preparing excel file(s).
##
|
| | 0%
|
|=================================== | 50%
|
|======================================================================| 100%
The output excel file and heatmaps are stored in separate folders for every gene group. Ultimately, all the folders are located inside another folder, which its name is the combination of submissionName and “output for multiple studies”, for example “test output for multiple studies”.