The package provides a full genome assembly of P. aeruginosa str. PA14. Data source: NCBI.
You can install the development version of BSgenome.Paeruginosa.NCBI.PA14 from GitHub with:
devtools::install_github('utubun/BSgenome.Paeruginosa.NCBI.PA14')
Load P. aeruginosa str. PA14 genome, and assign it ot the variable genome
:
library(BSgenome.Paeruginosa.NCBI.PA14)
genome <- BSgenome.Paeruginosa.NCBI.PA14
Get the information about the genome:
sprintf(
'Genome:\t%s\nName:\t%s\nOrganism:\t%s\nProvider:\t%s\nReleased:\t%s',
sapply(c(bsgenomeName, commonName, organism, provider, releaseDate), \(f) {f(genome)})
)
List the methods available for the given object class:
methods(class = class(genome))
help(package = 'BSgenome')