topx.Rd
This function select the X top genes given a user defined threshold
a character string. Two options: sudo or docker, depending to which group the user belongs
a character string indicating the path of the file. IMPORTANT: full path to the file MUST be included
integer used for filtering indicate the number of top expressed/vaying genes to be selected
separator used in count file, e.g. '\t', ','
boolean TRUE or FALSE, if FALSE gene expression data are log10 transformed before being plotted.
expression refers to the selection of the top expressed genes, variance to the the selection of the top variable genes
a filtered tab delimited file and a histogram of the gene by gene total expression
if (FALSE) {
system("wget http://130.192.119.59/public/singlecells_counts.txt.gz")
system("gzip -d singlecells_counts.txt.gz")
topx(group="docker", file=paste(getwd(), "singlecells_counts.txt", sep="/"),
threshold=10000, logged=FALSE, type="expression", separator="\t")
topx(group="docker", file=paste(getwd(), "singlecells_counts.txt", sep="/"),
threshold=10000, logged=FALSE, type="variance", separator="\t")
}