Introduction

Looking at the change (delta) in strict core genome size as a function of the genome added.

Inputs

Outputs

## Warning: replacing previous import 'lifecycle::last_warnings' by
## 'rlang::last_warnings' when loading 'tibble'
## Warning: replacing previous import 'lifecycle::last_warnings' by
## 'rlang::last_warnings' when loading 'pillar'
## [1] '3.3.5'
## Warning: replacing previous import 'lifecycle::last_warnings' by
## 'rlang::last_warnings' when loading 'hms'
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
## ✔ tibble  3.1.3     ✔ dplyr   1.0.7
## ✔ tidyr   1.1.3     ✔ stringr 1.4.0
## ✔ readr   2.0.1     ✔ forcats 0.5.1
## ✔ purrr   0.3.4
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## [1] '1.3.1'

Cac PPanGGOLiN-based presence absence

dat<-read.table("Cac_P.txt",header=T,sep="\t")
p1<-ggplot(dat,aes(genome,delta)) +
    geom_boxplot(outlier.shape = NA) +
    geom_jitter(width=0.1, size=2, alpha=0.25) +
    ylim(0,50) +
    theme(axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
p1

Cac GET_HOMOLOGUES-based presence absence

dat<-read.table("Cac_GH.txt",header=T,sep="\t")
p1<-ggplot(dat,aes(genome,delta)) +
    geom_boxplot(outlier.shape = NA) +
    geom_jitter(width=0.1, size=2, alpha=0.25) +
    ylim(0,200) +
    theme(axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
p1

Cps PPanGGOLiN-based presence absence

dat<-read.table("Cps_P.txt",header=T,sep="\t")
p1<-ggplot(dat,aes(genome,delta)) +
    geom_boxplot(outlier.shape = NA) +
    geom_jitter(width=0.1, size=2, alpha=0.25) +
    ylim(0,50) +
    theme(axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
p1

Cps GET_HOMOLOGUES-based presence absence

dat<-read.table("Cps_GH.txt",header=T,sep="\t")
p1<-ggplot(dat,aes(genome,delta)) +
    geom_boxplot(outlier.shape = NA) +
    geom_jitter(width=0.1, size=2, alpha=0.25) +
    ylim(0,200) +
    theme(axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
p1