Description Usage Arguments Examples
Workflow wrapper to extract RNAseq reads and search for custom breakpoint exon junction sequences.
1 2 3 4 5 6 7 8 9 10 | examine_breakpoint_evidence(
Sample_ID,
fusion_data = NULL,
breakpoint = NULL,
file_manifest,
Seqlens,
fusion_theoretical_pdict,
cicero.contig,
TA.contigs
)
|
Sample_ID |
character string of patient ID |
fusion_data |
dataframe with fusion results from CICERO, TransAbyss, and STAR-Fusion concatenated |
breakpoint |
list class with breakpoint string |
file_manifest |
dataframe with Sample_ID and the full file path of the BAM file. |
Seqlens |
named numeric vector with chromosome lengths |
fusion_theoretical_pdict |
a pdict obj with computationally derived exon junction sequences |
cicero.contig |
a dataframe with contig sequences from CICERO output |
TA.contigs |
a dataframe with contig sequences from TransAbyss output |
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
my_seqs <- data.frame(Name=paste0("seq",1:10),Sequence=rep(c("ATCGCCCGTTA"), 10))
my_files_df <- data.frame(Sample="PAZZUM.03A.01R", filepath=dir("/path/to/sample.bam"))
chr_lengths <- c("16"=24000000)
my_pdict_obj <- create_custom_pdict(theoretical_seqs_df=my_seqs)
examine_breakpoint_evidence("PAZZUM.03A.01R", breakpoint=list("16:1250000|16:1260000"),
my_files_df,chr_lengths, my_pdict_obj, cicero_contig_df, transabyss_contig_df)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.