View source: R/panaroo_2_pagoo.R
panaroo_2_pagoo | R Documentation |
This function handle conversion of panaroo's output files into
a pagoo R6 class object. It takes the "gene_presence_absence.csv" file and
(optionally but recommended) gff input file paths, and returns an object of
class PgR6MS
(or PgR6M
if left
empty the gffs
argument). Panaroo identifies some genes with unusual
lengths tagging them with 'stop', 'length', or 'refound' labels. In the
current version, this function discards those genes.
panaroo_2_pagoo(gene_presence_absence_csv, gffs, sep = "__")
gene_presence_absence_csv |
|
gffs |
A |
sep |
|
A pagoo's R6 class object. Either PgR6M, if gffs
argument is left empty, or PgR6MS if path to gff files is
provided.
Tonkin-Hill, G., MacAlasdair, N., Ruis, C. et al. Producing polished prokaryotic pangenomes with the Panaroo pipeline. Genome Biol 21, 180 (2020). https://doi.org/10.1186/s13059-020-02090-4
## Not run: gffs <- list.files(path = "path/to/gffs/", pattern = "[.]gff$", full.names = TRUE) gpa_csv <- "path/to/gene_presence_absence.csv" library(pagoo) pg <- panaroo_2_pagoo(gene_presence_absence_csv = gpa_csv, gffs = gffs) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.