Function that returns numeric values with 2 decimal numbers.
dec_two(x)
dec_two(x)
x |
input numeric value with N decimal numbers. |
a numeric value with 2 decimal numbers.
aaa <- dec_two(8.31232)
aaa <- dec_two(8.31232)
Function that reads in the GEO code of a dataset, and returns the gene expression dataframe.
getGeneExpressionFromGEO(datasetGeoCode, retrieveGeneSymbols, verbose = FALSE)
getGeneExpressionFromGEO(datasetGeoCode, retrieveGeneSymbols, verbose = FALSE)
datasetGeoCode |
the GEO code of a dataset. |
retrieveGeneSymbols |
a boolean flag stating if the function should retrieve the gene symbols or not. |
verbose |
a boolean flag stating if helping messages should be printed or not |
a gene expression dataset.
geneExpressionDF1 <- getGeneExpressionFromGEO("GSE3268", FALSE, FALSE)
geneExpressionDF1 <- getGeneExpressionFromGEO("GSE3268", FALSE, FALSE)
Function that reads in a URL to check and verifies if it exists (function written by Janko Thyson @rappster and taken from https://stackoverflow.com/a/12195574 )
readUrl(url)
readUrl(url)
url |
the URL of a webpage |
the output of a webpage verification check
y <- readUrl("http://stat.ethz.ch/R-manual/R-devel/library/base/html/connections.html")
y <- readUrl("http://stat.ethz.ch/R-manual/R-devel/library/base/html/connections.html")