View source: R/obtain_gene_expression.R
obtain_gene_expression | R Documentation |
Obtain the reads count for each gene to represent the expression of each gene and report the sequencing depth size factors for each Input samples
obtain_gene_expression(Input_data, GTF_file, nthreads=1, isPairedEnd=FALSE, Group_label, rep_num)
Input_data |
a |
GTF_file |
a |
nthreads |
a |
isPairedEnd |
a |
Group_label |
a |
rep_num |
a |
It will return a list containing two components:
gene_express |
a |
size_factor |
a |
## Not run: ### obtain gene reads count from Input dataset in BAM format Input_data <- c(group1_INPUT_BAM,group2_INPUT_BAM,group3_INPUT_BAM) gene_expression <- obtain_gene_expression(Input_data=Input_data, GTF_file=GENE_ANNO_GTF, nthreads=10, isPairedEnd=FALSE, Group_label=c("Group1","Group2","Group3"), rep_num=c(3,3,3)) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.