| average | R Documentation | 
Take averages with alignment-free and alignment-based quantification
average(based_gene, free_gene, based_transcript, free_transcript)
| based_gene | gene count matrix assessed based on alignment-based workflow | 
| free_gene | gene count matrix assessed based on alignment-free workflow | 
| based_transcript | transcript count matrix assessed based on alignment-based workflow | 
| free_transcript | transcript count matrix assessed based on alignment-free workflow | 
the average of gene expression quantification with alignment-free and alignment-based quantification workflow
align_based_gene <- system.file( 'extdata', 'test_gene_alignment_based_quantification.csv', package = 'BP4RNAseq' ) align_free_gene <- system.file( 'extdata', 'test_gene_alignment_free_quantification.csv', package = 'BP4RNAseq' ) align_based_transcript <- system.file( 'extdata', 'test_transcript_alignment_based_quantification.csv', package = 'BP4RNAseq' ) align_free_transcript <- system.file( 'extdata', 'test_transcript_alignment_free_quantification.csv', package = 'BP4RNAseq' ) align_based_gene <- read.csv(align_based_gene, header = TRUE) align_free_gene <- read.csv(align_free_gene, header = TRUE) align_based_transcript <- read.csv(align_based_transcript, header = TRUE) align_free_transcript <- read.csv(align_free_transcript, header = TRUE) average( align_based_gene, align_free_gene, align_based_transcript, align_free_transcript )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.