View source: R/genomebrowser.R
genome_addGFF | R Documentation |
genomebrowser
.genome_addGFF
add track in a gff file to genomebrowser
.
genome_addGFF(gb, gfffile)
gb |
a genome browser object produced by the function |
gfffile |
a "character" string representing the input gff file to be represented in the genome browser. |
No return value, called for side effects
David Barrios and Carlos Prieto. Bioinformatics, University of Salamanca. See http://d3gb.usal.es/
The ‘D3GB’ Website: http://d3gb.usal.es
genomebrowser
, genome_addSequence
, genome_addTrack
, genome_addVCF
.
# Download fasta file
fasta <- tempfile()
download.file(paste0("https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/297/395/",
"GCF_000297395.2_ASM29739v2/GCF_000297395.2_ASM29739v2_genomic.fna.gz"),fasta)
# Genome browser generation.
gb <- genomebrowser(getAssemblyFromFasta(fasta))
genome_addSequence(gb,fasta)
# Download gff file and add to the genome browser
gff <- tempfile()
download.file(paste0("https://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/297/395/",
"GCF_000297395.2_ASM29739v2/GCF_000297395.2_ASM29739v2_genomic.gff.gz"),gff)
genome_addGFF(gb,gff)
plot(gb)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.