Description Usage Arguments Details Value Examples
This function takes bam file of genomic alignments and performs isoform recontruction and gene and transcript expression quantification. It also allows saving of read class files of alignments, extending provided annotations, and quantification based on extended annotations. When multiple samples are provided, extended annotations will be combined across samples to allow comparison.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
reads |
A string or a vector of strings specifying the paths of bam
files for genomic alignments, or a |
rcFile |
A string or a vector of strings specifying the read
class files that are saved during previous run of |
rcOutDir |
A string variable specifying the path to where read class files will be saved. |
annotations |
A |
genome |
A fasta file or a BSGenome object. |
stranded |
A boolean for strandedness, defaults to FALSE. |
ncore |
specifying number of cores used when parallel processing is used, defaults to 1. |
yieldSize |
see |
opt.discovery |
A list of controlling parameters for isoform reconstruction process:
|
opt.em |
A list of controlling parameters for quantification algorithm estimation process:
|
discovery |
A logical variable indicating whether annotations are to be extended for quantification. |
verbose |
A logical variable indicating whether processing messages will be printed. |
Main function
A list of two SummarizedExperiment object for transcript expression and gene expression.
1 2 3 4 5 6 7 8 9 10 11 12 | ## =====================
test.bam <- system.file("extdata",
"SGNex_A549_directRNA_replicate5_run1_chr9_1_1000000.bam",
package = "bambu")
fa.file <- system.file("extdata",
"Homo_sapiens.GRCh38.dna_sm.primary_assembly_chr9_1_1000000.fa",
package = "bambu")
gr <- readRDS(system.file("extdata",
"annotationGranges_txdbGrch38_91_chr9_1_1000000.rds",
package = "bambu"))
se <- bambu(reads = test.bam, annotations = gr,
genome = fa.file, discovery = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.