Description Usage Arguments Details Value Examples
A function that imports the results from an Aeron run into a list of Fusion objects.
1 2 3 4 5 6 | import_aeron(
filename_fusion_support,
filename_fusion_transcript,
genome_version,
limit
)
|
filename_fusion_support |
Filename for the Aeron result file fusion_support..txt. |
filename_fusion_transcript |
Filename for the Aeron result file fusion_transcripts..txt. |
genome_version |
Which genome was used in mapping (hg19, hg38, etc.). |
limit |
A limit on how many lines to read. |
Note that the strands and breakpoint positions are not included in the result files from Aeron. These have to be retrieved manually, using the ensembl identifiers (which are included in the result files, and will be available in the Fusion objects after importing).
A list of Fusion objects.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | aeronfusionsupportfile <- system.file(
"extdata",
"aeron_fusion_support.txt",
package="chimeraviz")
aeronfusiontranscriptfile <- system.file(
"extdata",
"aeron_fusion_transcripts.fa",
package="chimeraviz")
fusions <- import_aeron(
aeronfusionsupportfile,
aeronfusiontranscriptfile,
"hg19",
3)
# This should import a list of 3 fusions described in Fusion objects.
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.