Emine Toparslan1, Kemal Karabag2, Ugur Bilge3. 1. Institute of Natural and Applied Sciences, Akdeniz University, Antalya, Turkey. 2. Department of Agricultural Biotechnology, Faculty of Agriculture, Akdeniz University, Antalya, Turkey. 3. Department of Biostatistics and Medical Informatics, Faculty of Medicine, Akdeniz University, Antalya, Turkey.
Abstract
Phylogenetic analyses can provide a wealth of information about the past demography of a population and the level of genetic diversity within and between species. By using special computer programs developed in recent years, large amounts of data have been produced in the molecular genetics area. To analyze these data, powerful new methods based on large computations have been applied in various software packages and programs. But these programs have their own specific input and output formats, and users need to create different input formats for almost every program. R is an open source software environment, and it supports open contribution and modification to its libraries. Furthermore, it is also possible to perform several analyses using a single input file format. In this article, by using the multiple sequences FASTA format file (.fas extension) we demonstrate and share a workflow of how to extract haplotypes and perform phylogenetic analyses and visualizations in R. As an example dataset, we used 120 Bombus terrestris dalmatinus mitochondrial cytochrome b gene (cyt b) sequences (373 bp) collected from eight different beehives in Antalya. This article presents a short guide on how to perform phylogenetic analyses using R and RStudio.
Phylogenetic analyses can provide a wealth of information about the past demography of a population and the level of genetic diversity within and between species. By using special computer programs developed in recent years, large amounts of data have been produced in the molecular genetics area. To analyze these data, powerful new methods based on large computations have been applied in various software packages and programs. But these programs have their own specific input and output formats, and users need to create different input formats for almost every program. R is an open source software environment, and it supports open contribution and modification to its libraries. Furthermore, it is also possible to perform several analyses using a single input file format. In this article, by using the multiple sequences FASTA format file (.fas extension) we demonstrate and share a workflow of how to extract haplotypes and perform phylogenetic analyses and visualizations in R. As an example dataset, we used 120 Bombus terrestris dalmatinus mitochondrial cytochrome b gene (cyt b) sequences (373 bp) collected from eight different beehives in Antalya. This article presents a short guide on how to perform phylogenetic analyses using R and RStudio.
Phylogenetic relationships are mostly calculated using computer programs with several mathematical models. Although there are many software packages to estimate parameters, they don’t work together in a common workflow that can compute these parameters in one task [1]. To use these software packages, datasets need to be in different input file formats. Therefore, users have to prepare different input files for almost every program. These are; .fas, .mas, .meg, .arp, .gtx, .str, .nwk, .tree and .txt files with different formats. This way of working can cause increased workload and time loss [2]. At this point, there is a need for a platform where analyses can be performed in a single framework. Although R (programming language) is a software environment for statistical computing and graphics, it is increasingly used in bioinformatics and phylogenetic data analysis thanks to advanced packages and libraries [2-11].R is an environment for linear and nonlinear modeling, classical statistical tests, time-series analysis, classification, clustering [10] and graphics. It is free and it enables static and dynamic program analyses [12]. On the other hand, RStudio is an open-source Integrated Development Environment (IDE) for the R programming language. RStudio is a software that combines various components of R, such as console, resource editing, graphics, history, help, in one workbench [13].R and RStudio create an R Markdown document provided by the rmarkdown package, which can store all code snippets, analyses, results, and images in a document [14]. With knitr package, a new Markdown file is created and converted into different file formats such as PDF, HTML, Word etc. by using pandoc() function [15]. Additionally, with R Markdown, journal articles and multi-part books can be written, and websites and blogs can be generated [14]. Therefore, they provide a wide range of options and are quite practical.One of the strongest biomarkers used to estimate phylogenetic relationships is also mitochondrial DNA. It is frequently used in phylogenetic research and it is possible to group individuals as haplotypes by defining variations in the mtDNA for every population. Moreover, a haplotype network based on nucleotide differences between haplotypes can be created [16].We demonstrate how to perform phylogenetic analyses and graphics in a single workflow using R for mtDNA sequences. Additionally, we have shared all the R commands in these analyses for everyone to use. Furthermore, some of these commands can be used directly, and some are in modifiable form for users who have samples with different sequence lengths and numbers.
Packages, libraries and commands
As R is an open source software, a huge number of packages have been created to date [10]. R packages stored as a library in the R environment are a combination of functions, commands and sample data. We defined the packages and commands used in this study below. We shared the R code and mitochondrial cyt b sequences used in our article as S1 and S2 Appendices.
msa: Multiple alignment analysis package
The msa package (version 1.18.0) is a unified R/Bioconductor interface and implements three multiple sequence alignment methods (ClustalW, ClustalOmega and MUSCLE). They do not need any other external software tools because they are all integrated in the package. Sequence types that this package can read for alignment are "B", "DNA", "RNA" or "AA" that is a single string specifying the type of sequences contained in the FASTA format file (.fa, .fas, or .fasta) or fastaq file. The readDNAStringSet() function and its family: readBStringSet(), readRNAStringSet(), readAAStringSet() load sequences from an input file (or multiple input files) into an XStringSet object [4, 17]. Results are stored as objects provided by the Biostrings package. Therefore, multiple sequence alignment process is inherited from the Biostrings package [4].The msaConvert() command enables the conversion of multiple sequence alignment objects to formats used in other analysis packages. It can convert to 6 different formats; "seqinr::alignment", "bios2mds::align", "ape::AAbin", "ape::DNAbin", "phangorn::phyDat", and "bio3d::fasta" [4].
bios2mds: From biological sequences to multidimensional scaling
This package (version 1.2.3) realizes the analysis of biological sequences by metric Multidimensional Scaling (MDS). It has a variety of functions such as reading multiple sequence alignments, exporting aligned objects, calculating distance matrices, performing MDS analysis, and visualizing results [8].
adegenet: Exploratory analysis of genetic and genomic data
adegenet package (version 2.1.3) is a toolset to explore genetic and genomic data. It generates class "genind" for hierarchical population structure, class "genpop" for alleles counts by populations, and class "genlight" for genome-wide SNP data [5].The fasta2DNAbin() command reads FASTA format files and outputs a DNAbin object containing either the full alignments or only SNPs. At the same time, this command processes the massive datasets with its memory-efficiency [5].
ape: Analyses of phylogenetics and evolution
The ape (version 5.3) is a package that can read, write, plot and manipulate phylogenetics data. Moreover, it has many functions such as comparing these data in a phylogenetic framework, character analysis of ancestors, reading, and writing nucleotide sequences [9]. The dist.dna() function calculates distances from DNA sequences by computing a matrix of pairwise distances from DNA sequences [9]. Also, the nj() function performs the neighbor-joining tree estimation of Saitou and Nei [18]. The boot.phylo() function performs the bootstrap analysis, and it can be used with the ggtree() command for visualization of the phylogenetic tree with bootstrap values. Additionally, it can extract data from Bioconductor and work together with adegenet and pegas packages [2, 7].
ggtree: An R package for visualization of tree and annotation data
The ggtree, R/Bioconducter package (version 2.0.4), is created for visualization of phylogenetic analysis such as annotation of the phylogenetic tree and other phylogenetic relationship structures. The ggtree() command is visualizing the phylogenetic tree as a tree object or as a phylo object by the as.phylo() command [11].
ggplot2: Create elegant data visualizations using the grammar of graphics
The ggplot2 package (version 3.3.1) that is the extension of ggtree is a package that declaratively generates graphics based on Graphics Grammar [11, 19]. It explains how to match variables with aesthetics and which graphical principles to use. It provides a better plotting of the graphics obtained with the ggtree package with a set of layers such as geom_tiplab() or geom_treescale() [11, 20].
stats-package: The R stats package
This package (version 3.6.3), which includes commands for statistical calculations and random number generation, provides methods for hierarchical cluster analysis based on a set of dissimilarities. The dist() command calculates the distances between the lines of a data matrix. It can use six different distance measures which are "euclidean", "maximum", "manhattan", "canberra", "binary" or "minkowski". The heatmap() function it provides creates a heat map using the distance [10].
haplotypes: Manipulating DNA sequences and estimating unambiguous haplotype network with statistical parsimony
The haplotypes package (version 1.1.2) reads and manipulates aligned DNA sequences, supports indel coding methods, shows base substitutions and indels, calculates absolute pairwise distances between DNA sequences. It provides or infers haplotypes by using identical DNA sequences or absolute pairwise character difference matrix. Furthermore, this package gives genealogical relationships among haplotypes using estimation of statistical parsimony and plots its networks [3].
pegas: Population and evolutionary genetics analysis system
The pegas package (version 0.13) provides commands for reading, writing from different DNA sequences files including from VCF files. It generates plots, analyzing and manipulating allelic and haplotypic data. It requires packages ape and adegenet, making an integrated environment for population genetic data analysis. Additionally, it realizes the analysis of basic statistics, linkage disequilibrium, Fst and Amova, HWE, haplotype networks, minimum spanning tree and network, and median-joining networks [2].
Material and method
As an example, we used mitochondrial cyt b sequences (373 bp) dataset from 120 Bombus terrestris dalmatinus belonging to 8 different populations (Aksu = 15, Bayatbadem = 15, Demre = 15, Phaselis = 15, Geyikbayir = 15, Kumluca = 15, Termessos = 15, Firm = 15). Populations were grouped according to the regions from where they were collected; the Aksu, Demre and Kumluca populations belong to greenhouse regions, while the Bayatbadem, Phaselis, Geyikbayir and Termessos populations belong to nature areas and the commercial population was obtained from a firm which is located in Antalya. We want to show how to obtain multiple sequence alignments, haplotype networks, heat map and phylogenetic trees from a FASTA format input file using R (4.0.3. version) [10]. For all these analyses and graphics, we benefited from both R packages and short R commands.
Preparing the dataset
The file with the .fas extension obtained from the sequencing process was used as the input file. The sample names in the data were tagged with their population name and sample number. Names and numbers were separated by underscores or spaces, for example, “Kumluca_6” or “Bayatbadem 24”. This naming method allows extracting unique names as population names from sample names with the help of a short command. Thus, the name of the population in all the analyses do not need to be entered again.
Multiple sequence alignment and plotting aligned FASTA format file
The readDNAStringSet() command supported in Biostrings package (version 2.54.0) was used to read FASTA format file [17]. With msa() function implemented in msa package, all samples were aligned to the same length by ClustalW algorithm and stored as DNAStringSet object [4, 17]. The as.DNAbin() function provided by ape package (version 5.3) was used to store multiple sequence alignments as a DNAbin object [7]. In this stage, the trim.Ends() function implemented in ips package (version 0.0.11) can be used for trimming the sequences [21]. The msaplot() command provided by ggtree package and ggplot2 package was used to demonstrate the aligned sequences with the phylogenetic tree [11]. Geometric layers (geom_tiplab(), scale_color_continuous(), geom_tiplab(), geom_treescale()) belonging to ggplot2 package were used fordetailing the tree [11]. To construct the phylogenetic tree, the dist.dna() function implemented in ape package was used [7]. The pairwise distance of the DNA sequences was computed with K80 model derived by Kimura [22]. The phylogenetic tree was estimated using the nj() function implemented in ape package [7]. The branch lengths of the tree have been colored to represent the genetic distance. As stated in the commands below, "lightskyblue1" was used for the longest branch of the tree and "coral4" was used for the shortest branch. Each of the nucleotides was represented by a different color. A, C, G, and T nucleotides have been colored with "rosybrown", "sienna1", "lightgoldenrod1", and "lightskyblue1", respectively, as stated in the commands below.ggt <- ggtree(tree, cex = 0.8, aes(color = branch.length)) +scale_color_continuous(high = ‘lightskyblue1’,low = ‘coral4’) +geom_tiplab(align = TRUE, size = 2) +geom_treescale(y = -5, color = "coral4", fontsize = 4)msaplot(ggt, nbin, offset = 0.009, width = 1, height = 0.5,color = c(rep("rosybrown", 1), rep("sienna1", 1),rep("lightgoldenrod1", 1), rep("lightskyblue1", 1)))
Extraction of haplotypes
We wrote dynamic short R commands to find out information about haplotypes and sequence variations. Firstly, we converted the DNAbin object to the DNA matrix (120x373) using the as.matrix() command provided by R base package [10]. Secondly, by comparing the sequences, we extracted the haplotype number, haplotype frequency and variable regions. Thirdly, we identified unique haplotype sequences by ignoring common nucleotides between haplotypes and by printing variable regions.The number of haplotypes per population was calculated using haplotypes package and short R commands [3]. Firstly, DNAbin object was converted to an object of class "DNA" using the as.dna() command which is provided by haplotypes package. Then haplotypes were extracted and grouped using the haplotype() and grouping() commands, respectively [3]. Finally, the population frequency matrix was extracted.
Haplotype distance matrix and heat map
Distance between the haplotypes was calculated by using dist.hamming() function from pegas package [2]. The Hamming distance method is a calculation of the pairwise distance matrix for the corresponding symbols between two strings of equal length [23]. Our data set consisted of haplotype sequences with 41 base pair long strings. We first separated each string into nucleotide arrays with strsplit() function, and formed a (20x41) haplotype sequences matrix, and then called dist.hamming() function for computing Hamming distance matrix.For the construction of a heat map, we extracted the symmetric distance matrix (20x20) from the haplotype sequences matrix (20x41) using simple R commands. For this calculation, we compared the haplotype sequences in pairs, counting the nucleotide differences between them and writing them on a symmetric matrix. Then, we used this matrix for the visualization of heat map with the heatmap() command provided by stats package [10].
Haplotype network
The haplotype() and haploNet() functions implemented in pegas package were used for the construction of the haplotype network [2]. In this section, we wanted to show that data in R can be modified quickly and easily, creating multiple options for analysis. For this reason, we have shown three different haplotype graphs that were represented with different colors as hierarchical using the same data set. Thus, we have created options for those working both in individual datasets and those working with larger populations or groups. While the first haplotype network was represented by individuals, the second haplotype network was represented by populations and the third haplotype network was represented by groups. All haplotype networks were also plotted in different colors.The haplotype network represented by individuals has been colored using rainbow colors defined as the default and the names and colors of the samples were described using fill argument in the legend() command, as below.plot(net, size = attr(net, "freq"), scale.ratio = 2, cex = 0.6,labels = TRUE, pie = ind.hap, show.mutation = 1, font = 2,fast = TRUE)legend(x = 57,y = 15, colnames(ind.hap), fill = rainbow(ncol(ind.hap)),cex = 0.52, ncol = 6, x.intersp = 0.2, text.width = 11)We chose special colors for the haplotype network represented by the populations. For the haplotype network, the desired colors were defined as a list in bg argument in the plot() command, as below.bg <- c(rep("dodgerblue4", 15), rep("olivedrab4",15),rep("royalblue2", 15), rep("red",15), rep("olivedrab3",15),rep("skyblue1", 15), rep("olivedrab1", 15),rep("darkseagreen1", 15))plot(net, size = attr(net, "freq"), bg = bg, scale.ratio = 2, cex = 0.7,labels = TRUE, pie = ind.hap,show.mutation = 1, font = 2, fast = TRUE)The names and colors of samples were described as a list in fill argument in the legend() command, as below.hapcol <- c("Aksu", "Demre", "Kumluca", "Firm", "Bayatbadem","Geyikbayir", "Phaselis", "Termessos")ubg < -c(rep("dodgerblue4",1), rep("royalblue2",1),rep("skyblue1",1),rep("red",1), rep("olivedrab4",1), rep("olivedrab3",1),rep("olivedrab1",1), rep("darkseagreen1",1))legend(x = -35,y = 45, hapcol, fill = ubg, cex = 0.8, ncol = 1, bty = "n",x.intersp = 0.2)For the construction of the haplotype network represented by groups, each individual has been renamed with the name of the group to which it belongs. The sample names in the DNAbin object were replaced with the group names to which they belong with a few simple commands, and the haplotype network represented by the groups was plotted. The desired color set for the network diagram was defined in a list for the gbg argument in the plot() command, as below.gbg <- c(rep("red"), rep("blue"), rep("green"))plot(netg, size = attr(netg, "freq"), bg = gbg, scale.ratio = 2, cex = 0.7,labels = TRUE, pie = ind.hapg, show.mutation = 1, font = 2, fast = TRUE)Colors of the groups were defined as a list in fill argument in the legend() command, as below.legend(x = -35,y = 45, colnames(ind.hapg), fill = c("red","blue","green"),cex = 0.8, ncol = 1, bty = "n", x.intersp = 0.2)
Phylogenetic trees
We demonstrated the circular phylogenetic tree by using ggtree, ggplot2, ape, and stats packages [7, 10, 11]. To construct the phylogenetic tree, the dist.dna() and nj() commands were used supported by stats package. We have shown two circular phylogenetic trees. In the first tree, populations have been colored using the aes(color = Populations) command inherited from ggtree() and were drawn using ggplot2 package, as below.emos <- ggtree(tree, layout = ‘circular’,branch.length = ‘branch.length’, lwd = 0.5) +xlim(-0.1, NA)groupOTU(emos, krp, ‘Populations’) +aes(color = Populations) +theme(legend.position = “right”) +geom_tiplab(names(nbin), cex = 1.7, offset = 0.002) +guides(color = guide_legend(override.aes = list(size = 2.5))) +geom_treescale(x = -0.1,color = “coral4”, fontsize = 3, offset = 9)In the second tree, the phylogenetic tree was colored according to branch lengths representing genetic distance. The aes(color = branch.length) command was used for coloring branches. Colors were defined using the scale_color_continuous() command. As stated in the commands below, "lightskyblue1" color was used for the longest branch and "coral4" color was used for the shortest branch.ggtree(tree,layout = ‘circular’, branch.length = ‘branch.length’,aes(color = branch.length), lwd = 0.5) +xlim(-0.1, NA) +geom_tiplab(names(nbin), size = 1.7, offset = 0.002) +scale_color_continuous(high = ‘lightskyblue1’,low = ‘coral4’) +geom_treescale(x = -0.1, color = “coral4”, fontsize = 3, offset = 9)On the other hand, we have constructed the phylogenetic relationship between haplotypes by using haplotype sequences. In this stage, treeio package (version 1.10.0) [24] was used with ggtree package. We calculated the genetic distance with the dist.hamming() function supported by pegas package [2]. The nj() function was used for neighbor-joining tree estimation. The confidence level between the branches was calculated using 100 bootstrap replicates by the boot.phylo() function implemented in the ape package [20]. The confidence interval was defined according to Kress et al. [25] criteria, as strong for 85% and above, moderate for 70–85%, weak for 50–70%, and poor for 50% and below. We colored node points using the scale_fill_manual() command inherited from the ggtree() command. As stated below, "black", "red", "pink1", and "white" colors were selected according to the suggested four confidence intervals, respectively.D <- dist.hamming(mat7)#pegas packageclass(D)htre<-nj(D)bp <- boot.phylo(htre, mat7, B = 100, function(x) nj(dist.hamming(x)))bp2 <- data.frame(node = 1:Nnode(htre) + Ntip(htre), bootstrap = bp)htree <- full_join(htre, bp2, by = “node”)boothap <- ggtree(htree, size = 1, branch.length = ‘branch.length’) +geom_tiplab(size = 4) +geom_nodepoint(aes(fill = cut(bootstrap,c(0,50,70,85,100)),shape = 21, size = 4) +theme_tree(legend.position = c(0.85, 0.2)) +scale_fill_manual(values = c("black","red","pink1","white",guide = ‘legend’,name = ‘Bootstrap Percentage (BP)’,breaks = c(‘(85,100]’, ‘(70,85]’,‘(50,70]’, ‘(0,50]’),labels = expression(BP> = 85, 70< = BP*“<85”,50< = BP*“<70”, BP<50))
Results
The mitochondrial cty b with length 373 base pairs belonging to 120 Bombus terrestris dalmatinus was aligned with the ClustalW method using the msa package [4]. The aligned sequences were visualized by matching them with the phylogenetic tree by using the ggtree() and msaplot() commands [11]. In Fig 1, the branch lengths of the tree have been colored to represent the genetic distance. Each of the nucleotides was represented by a different color. Thus, color changes on the plot have revealed nucleotide differences between the samples.
Fig 1
Plotting the multiple sequence alignments with a phylogenetic tree.
The phylogenetic tree belonging to the mitochondrial cty b gene of 120 Bombus terrestris dalmatinus and nucleotide differences have been schematized. Colors both on the phylogenetic tree and on the branch scale represent genetic distance. mtDNA cyt b sequences have been colored by four different colors shown in the ‘seq’ column for each nucleotide. Color changes on the aligned sequences represent nucleotide differences.
Plotting the multiple sequence alignments with a phylogenetic tree.
The phylogenetic tree belonging to the mitochondrial cty b gene of 120 Bombus terrestris dalmatinus and nucleotide differences have been schematized. Colors both on the phylogenetic tree and on the branch scale represent genetic distance. mtDNA cyt b sequences have been colored by four different colors shown in the ‘seq’ column for each nucleotide. Color changes on the aligned sequences represent nucleotide differences.The distance scale has shown 0.6% genetic variation per nucleotide substitution. Each row of the multiple sequence alignments corresponding to the names at the end of the tree represents a complete sequence.Haplotype sequences were obtained from the DNA matrix object by comparing each row with rows and each column with columns. As shown in Table 1, when nucleotides were compared, the same nucleotides between haplotypes were expressed with dots while different nucleotides were directly written.
Table 1
Sequences and frequencies of haplotypes.
Haplotypes
sequences length (41 base pairs)
hf
pct
H1
ATAATGATATATATATACCAATTTATAACAAATATTTTCAT
3
2.5
H2
.....C....C.C.C....C...............CCA...
6
5
H3
.....CC.C.C.C.C....C......C........CCA...
6
5
H4
..........C.C.C..A........C........CCA...
4
3.33
H5
..C.C..C.C.C.C...AT.C....C.C....C..CC.TGC
2
1.67
H6
CCCC.CC.C........AT..C.C....T...C.....TGC
2
1.67
H7
.C...CC.C......C.AT..C.C....T...C.....TGC
11
9.17
H8
.C.........C.....AT..C.C....T...C.....TGC
3
2.5
H9
...............C.AT..C.C....T...C.....TGC
3
2.5
H10
.C.............C.AT..C.C....T...C.....TGA
2
1.67
H11
.C.............C.AT..C.C....T...C.....TGC
55
45.83
H12
CCCC.CC.C.C.C.CCC..C.CCCC.C.TC..C.....TGC
2
1.67
H13
CCCC.CC.C.C.C.CCC..C.CCC..C.TCCCCCC...TGC
4
3.33
H14
CCCC.CC.C.C.C.CCC..C.CC.C.C..CCCCCC..A.GC
1
0.83
H15
CCCC.CC.C.C.C.CCC..C.CCCC.C.T...C.....TGC
3
2.5
H16
CCC..CC.C.C.C.CCC..C.CCCC.C.T...C.....TGC
1
0.83
H17
.....CC.C.C.C.C.C..C..CCC.C.TCCCC........
6
5
H18
.C...CC.C.C.C.C.C..C..CCC.C..CCCC........
2
1.67
H19
CCCC.CC.C.CCC.C.CA.C............C....A.GC
2
1.67
H20
CCCC.CC.C.C.C.C.CA..............C.....TGC
2
1.67
hf, frequences of haplotypes; pct, percentages of haplotype frequences.
hf, frequences of haplotypes; pct, percentages of haplotype frequences.The number of haplotypes per population was extracted using haplotypes package and short R commands. The most common haplotype was H11 that was submitted on NCBI (GenBank: MH221884.1), while the H16 and H14 haplotypes were observed in only one sample. While the Firm population has seven different haplotypes, only two haplotypes were detected in the Demre, Kumluca, and Termessos populations (Table 2).
A, Aksu; B, Bayatbadem; D, Demre; F, Firm; G, Geyikbayir; K, Kumluca; P, Phaselis; T, TermessosThe haplotype distance matrix was computed from the haplotype sequence matrix (20x41) using the dist.hamming() function. The distance matrix shows the difference in the number of nucleotides between the two haplotypes. In Table 3, the smallest difference between the haplotype pairs was one nucleotide between the H9-H11, H10-H11, H12-H15 and H15-H16 haplotypes. The largest difference was 35 nucleotides between H5-H14 haplotypes.
Table 3
Haplotype distance matrix using Hamming distance method.
H1
H2
H3
H4
H5
H6
H7
H8
H9
H10
H11
H12
H13
H14
H15
H16
H17
H18
H19
H2
8
H3
11
3
H4
8
4
5
H5
17
21
24
19
H6
16
22
21
22
19
H7
14
20
19
20
19
4
H8
11
19
22
17
14
7
5
H9
10
18
21
16
15
8
4
3
H10
11
19
22
17
17
8
4
3
2
H11
11
19
22
17
16
7
3
2
1
1
H12
24
22
19
24
31
12
14
19
18
18
17
H13
27
25
22
27
34
15
17
22
21
21
20
5
H14
26
22
19
24
35
20
22
27
26
26
25
8
5
H15
23
21
18
23
30
11
13
18
17
17
16
1
6
9
H16
22
20
17
22
29
12
12
17
16
16
15
2
7
10
1
H17
17
15
12
17
32
21
19
22
21
22
22
11
12
13
12
11
H18
17
15
12
17
32
21
19
22
23
22
22
11
12
11
12
11
2
H19
18
14
13
16
23
12
16
17
20
20
19
12
15
12
11
12
17
15
H20
16
16
15
16
21
8
12
15
16
16
15
10
13
14
9
10
17
15
4
A heat map was constructed with phylogenetic trees from the haplotype sequences matrix using the heatmap() function [10] (Fig 2). The haplotype distance matrix was extracted by using our own code from the haplotype sequence matrix (20x41). The matrix obtained was a symmetric version of Hamming distance matrix which is used to construct the heat map. The Heat Map is fully compatible with the haplotype distance matrix given in Table 3.
Fig 2
Heat map based on the number of nucleotide differences between the haplotypes.
Each branch of the phylogenetic tree represents the corresponding haplotype in the matrix. We defined the close relationships with "darkred" color and far relationships with "white" color.
Heat map based on the number of nucleotide differences between the haplotypes.
Each branch of the phylogenetic tree represents the corresponding haplotype in the matrix. We defined the close relationships with "darkred" color and far relationships with "white" color.Haplotype networks were constructed using pegas package [2]. Circle sizes were provided to the plot() command using size = attr(x, "freq") argument; in this case based on the number of individuals each hapolotype has [10]. Each link between the haplotypes is a distance that showed the number of nucleotides between the two haplotypes. Every line on the links is a representation of one nucleotide. We demonstrated three haplotype networks represented by individuals (Fig 3), populations (Fig 4a) and groups (Fig 4b).
Fig 3
Haplotype network represented by individuals.
Each slice in the circles represents an individual. Branch lengths between the circles have been represented by genetic distance between haplotypes. Every dash on the lines is a representation of one nucleotide. The rainbow() command was used for coloring the individuals. Haplotype network was demonstrated using the plot() command and names of individuals were added with the legend() command.
Fig 4
Haplotype networks for populations (a) and groups (b).
(a) Populations have been colored in blue, red, and green representing the groups (greenhouse, firm and nature) they belong to. (b) Groups have been colored compatibly with the population haplotype network. Circle sizes were calculated based on the number of individuals they had. Each slice in the circles represents an individual. Every dash on the lines is a representation of one nucleotide. To visualize the two plots at the same time, the plot(new, TRUE) command was used after the first plot command and was continued with the second plot command.
Haplotype network represented by individuals.
Each slice in the circles represents an individual. Branch lengths between the circles have been represented by genetic distance between haplotypes. Every dash on the lines is a representation of one nucleotide. The rainbow() command was used for coloring the individuals. Haplotype network was demonstrated using the plot() command and names of individuals were added with the legend() command.
Haplotype networks for populations (a) and groups (b).
(a) Populations have been colored in blue, red, and green representing the groups (greenhouse, firm and nature) they belong to. (b) Groups have been colored compatibly with the population haplotype network. Circle sizes were calculated based on the number of individuals they had. Each slice in the circles represents an individual. Every dash on the lines is a representation of one nucleotide. To visualize the two plots at the same time, the plot(new, TRUE) command was used after the first plot command and was continued with the second plot command.In Fig 3, indivudals have been colored rainbow colors as default by the plot() command. In Fig 4a, the populations representing the greenhouse group have been colored in 3 different shades of blue, the Firm population belonging to the firm group was colored in red, and the populations of the nature group have been colored in 4 different shades of green. In Fig 4b, samples belonging to the greenhouse, firm, and nature groups have been colored blue, red and green, respectively. Therefore, each pie chart here represents individuals belonging to that group as a whole.In Figs 3 and 4a, the largest circle in the center represents H11. Since the circles are schematized in the form of a pie chart according to the number of individuals, the name of the H11 haplotype does not appear in the small-sized images. But it looks quite clear in high resolution and large scale images or in the form of the larger pie chart (Fig 4b). 20 haplotypes with 71 links were determined. The closest haplotypes were H9-H10-H11; H12-H15, and H15-H16, while the most distant haplotypes were the H5-H14 haplotypes (Figs 3 and 4). Every dash on the lines is a representation of one nucleotide. The circles have been drawn according to their number of samples using "size = attr(net, "freq")" command. Therefore, the dashes (H11-H7; H11-H8, H11- H9, H11-H10) around the largest circle (H11) can’t be seen. If this command is removed and run again, all the mutation difference numbers can be seen as the dashes on the lines.Phylogenetic trees were constructed using ggtree and ggplot2 packages. Tree estimation was calculated by the neighbor-joining method supported by ape package. While phylogenetic tree in Fig 5 was colored to represent populations, in Fig 6 it was colored to represent genetic distance. The biggest clade in both Figs 5 and 6 consisted of samples from Kumluca (12), Geyikbayir (6), Firm (4), Phaselis (7), Demre (13), Bayatbadem (6), and Aksu (7). Mostly, Aksu and Firm samples created more than one different phylogenetic clades.
Fig 5
Colorized phylogenetic tree representing populations.
The distance scale has shown 0.6% genetic variation per nucleotide substitution.
Fig 6
Colorized phylogenetic tree representing DNA distance.
The distance scale has shown 0.6% genetic variation per nucleotide substitution.
Colorized phylogenetic tree representing populations.
The distance scale has shown 0.6% genetic variation per nucleotide substitution.
Colorized phylogenetic tree representing DNA distance.
The distance scale has shown 0.6% genetic variation per nucleotide substitution.We demonstrated the phylogenetic relationship between haplotypes using the bootstrap method (Fig 7). The distance was estimated by the Hamming distance method of nucleotide differences between the two sequences [2]. The confidence interval was defined as strong for 85% and above, moderate for 70–85%, weak for 50–70%, and poor for 50% and below [25]. The bootstrap values were specified by coloring according to these confidence intervals.
Fig 7
Neighbor-joining (NJ) tree for cyt b haplotypes of B. terrestris dalmatinus.
Colored internal nodes represent the bootstrap confidence level.
Neighbor-joining (NJ) tree for cyt b haplotypes of B. terrestris dalmatinus.
Colored internal nodes represent the bootstrap confidence level.
Discussion
There are many software packages available today that compute and visualize population genetic statistics and phylogenetics. Some of the most used software packages are MEGA, DnaSP, splitsTree, TASSEL and Arlequin [1, 2]. With the tremendous advancements in technology in recent years, large amounts of molecular genetic data have been obtained. To process and analyze these data, there is a need for powerful computer software and hardware. Almost every software environment has its own specific input and output file format. While some analyses can be completed in one program, one software or in one workflow, the majority of them can only be completed in combined software packages. These multiple workflows create an imperative to convert inter-program input/output format changes, which is sometimes difficult and mostly time-consuming. Here we show phylogenetic relationships and statistical findings in a single workflow using R, on a sample mtDNA dataset. By sharing all the commands we use, we aim to present a ready-made format for researchers working in this field. Thus, by using only one FASTA format file as input, we are able to output multiple sequence alignments, haplotype sequences, heat map, haplotype networks, and phylogenetic trees. We have demonstrated the use and plotting of R in phylogenetic analyses, using both packages and R codes, taking advantage of R’s free language and free license. We tried to make some commands as modifiable as possible. One of these was the creation of a haplotype network [2]. We shared three haplotype networks representing individuals, populations, and groups. Some arguments such as coloring or plot scaling can be modified in accordance with other data sets. We demonstrated three different colored phylogenetic trees representing the populations, DNA distance and haplotypes bootstrap tree [11, 20]. Likewise, by changing the commands we use for phylogenetic trees, arguments such as colors, tree type, and graphic scaling can be modified. We wanted to show that R can be used for researchers who study mtDNA and are interested in phylogenetics. While input-output files are frequently needed in phylogenetic analysis software, we showed that 8 different outputs can be obtained from a single .fas extension file and shared all the packages, libraries and commands we used in these analyses. At the same time, we recommend using RStudio for visualization studies, with features such as easier editing of the code with the source pane, easier manipulation of visuals with the plot pane, and to be a reminder for arguments or definitions. Consequently, the haplotypes sequences, heat map, haplotype networks, and phylogenetic trees gave results that are completely compatible with each other. We believe that R and RStudio will be increasingly used in phylogenetic analyses and visualization due to the fact that it is an open source and always up-to-date environment, free for all as well as open for researcher contributions such as this one.
R codes.
It is for phylogenetic analyses by using FASTA format file.(TXT)Click here for additional data file.
120 mitochondrial cyt b sequences of B. terrestris dalmatinus.
It is an example dataset as FASTA format sequences file.(FAS)Click here for additional data file.14 Oct 2020PONE-D-20-22465A workflow with RStudio: phylogenetic analyses and visualizations using mitochondrial cytochrome b gene sequencesPLOS ONEDear Dr. BILGE,Thank you for submitting your manuscript to PLOS ONE. After careful consideration, we feel that it has merit but does not fully meet PLOS ONE’s publication criteria as it currently stands. Therefore, we invite you to submit a revised version of the manuscript that addresses the points raised during the review process.Please address the comments and suggestions made by the reviewers, particularly those regarding format and readability. Additionally, as reviewer 2 points out, there is little in this work that is specific to RStudio, and the strengths of some approaches are not fully explained. After addressing these concerns, the manuscript could be much improved.Please submit your revised manuscript by Nov 28 2020 11:59PM. If you will need more time than this to complete your revisions, please reply to this message or contact the journal office at plosone@plos.org. When you're ready to submit your revision, log on to https://www.editorialmanager.com/pone/ and select the 'Submissions Needing Revision' folder to locate your manuscript file.Please include the following items when submitting your revised manuscript:A rebuttal letter that responds to each point raised by the academic editor and reviewer(s). You should upload this letter as a separate file labeled 'Response to Reviewers'.A marked-up copy of your manuscript that highlights changes made to the original version. You should upload this as a separate file labeled 'Revised Manuscript with Track Changes'.An unmarked version of your revised paper without tracked changes. You should upload this as a separate file labeled 'Manuscript'.If you would like to make changes to your financial disclosure, please include your updated statement in your cover letter. Guidelines for resubmitting your figure files are available below the reviewer comments at the end of this letter.If applicable, we recommend that you deposit your laboratory protocols in protocols.io to enhance the reproducibility of your results. Protocols.io assigns your protocol its own identifier (DOI) so that it can be cited independently in the future. For instructions see: http://journals.plos.org/plosone/s/submission-guidelines#loc-laboratory-protocolsWe look forward to receiving your revised manuscript.Kind regards,Michael Scott Brewer, Ph.D.Academic EditorPLOS ONEJournal Requirements:When submitting your revision, we need you to address these additional requirements.1. Please ensure that your manuscript meets PLOS ONE's style requirements, including those for file naming. The PLOS ONE style templates can be found athttps://journals.plos.org/plosone/s/file?id=wjVg/PLOSOne_formatting_sample_main_body.pdf andhttps://journals.plos.org/plosone/s/file?id=ba62/PLOSOne_formatting_sample_title_authors_affiliations.pdf[Note: HTML markup is below. Please do not edit.]Reviewers' comments:Reviewer's Responses to QuestionsComments to the Author1. Is the manuscript technically sound, and do the data support the conclusions?The manuscript must describe a technically sound piece of scientific research with data that supports the conclusions. Experiments must have been conducted rigorously, with appropriate controls, replication, and sample sizes. The conclusions must be drawn appropriately based on the data presented.Reviewer #1: YesReviewer #2: Yes**********2. Has the statistical analysis been performed appropriately and rigorously?Reviewer #1: YesReviewer #2: Yes**********3. Have the authors made all data underlying the findings in their manuscript fully available?The PLOS Data policy requires authors to make all data underlying the findings described in their manuscript fully available without restriction, with rare exception (please refer to the Data Availability Statement in the manuscript PDF file). The data should be provided as part of the manuscript or its supporting information, or deposited to a public repository. For example, in addition to summary statistics, the data points behind means, medians and variance measures should be available. If there are restrictions on publicly sharing data—e.g. participant privacy or use of data from a third party—those must be specified.Reviewer #1: YesReviewer #2: Yes**********4. Is the manuscript presented in an intelligible fashion and written in standard English?PLOS ONE does not copyedit accepted manuscripts, so the language in submitted articles must be clear, correct, and unambiguous. Any typographical or grammatical errors should be corrected at revision, so please note any specific errors here.Reviewer #1: NoReviewer #2: Yes**********5. Review Comments to the AuthorPlease use the space provided to explain your answers to the questions above. You may also include additional comments for the author, including concerns about dual publication, research ethics, or publication ethics. (Please upload your review as an attachment if it exceeds 20,000 characters)Reviewer #1: This manuscript presents exciting and beneficial research for computational phylogenetics, and should be published.There are grammatical issues throughout the manuscript which should be addressed, and it may be advisable to enlist the aid of a dedicated copyeditor.While fairly straightforward, I do think that Figure 1 needs a descriptive caption to convey what you want the reader to take away from the figure.Likewise, the caption for Figure 3 discusses which commands were used to construct the figure, and while the purpose of the figure here is to demonstrate the utility of these commands, it would still be advisable to provide some explanation of what information the figure itself is meant to convey. For example, what do the vertical hash marks indicate? Does the variation in branch length tell us anything? You convey these things in the caption for Figure 4, but if you are going to only explain them in one figure why not do so in the firstfigure of this type which the reader will see?For Figures 5 and 6, it would be good to put "site substitutions" after the 0.006 over the scale bar, for clarity.For the most part, the walkthrough is well written and easy to follow. However, I do have some comments:In the walkthrough, you have readers install the "stats" package twice.It would be good to make sure that the instructions in the walkthrough are written in such a way so that people do not just stop reading when they get to, for example, "If your arrays are already aligned, please proceed from "READING AND PLOTTING OF ALIGNMENT-NJ-MSAPLOT" section" and miss important instructions in the same paragraph. The above quote is followed by a general warning of how long the alignment can take, which is then followed by an important instruction about calling the previously aligned file to the RStudio console. Make sure the walkthrough is written to be useable by people with little to no knowledge of R. Your code is helpful and you want lots of people to use it, so the lower you can make the bar to entry the better.Along these same lines, the walkthrough is written such that even if I do not need to align my sequences (as an example), I still need to perform some of the commands in the sequence alignment section in order to complete tasks described further down in the walkthrough. This could be another barrier to use of yourcode by those not well versed in R.Unfortunately, I was unable to test your code using the, relatively, small .fas files which I use for my research. Your code worked fine when tested with your example fsa file, but my 124 taxa, 1016 bp .fsa file caused RStudio to crash when I used nbin<-fasta2DNAbin(fname). I have not had trouble importing these data into RStudio in the past, so I assume it has something to do with your code. If your code cannot handle sequences of over 1000 bp, it should be noted in the publication. I was able to test your code on a ~500 bp, 137 taxa .fsa file, however, so your code works for shorter sequences.Reviewer #2: I found this manuscript to have a very helpful purpose: providing a worked example of population genetic and phylogenetic analysis in R. The manuscript was mostly clearly written. Below I outline a few key areas for improvement.First a few more general suggestions for improvement:1) There is nothing specific to RStudio in this workflow. I would encourage the authors to simple find and replace all instances of "RStudio" with "R". The section explaining that RStudio is a popular IDE could optionally remain. I suggest this because the authors do not discuss any RStudio-specific functionality, so continually referring to RStudio is misleading or distracting. I also make this suggestion because there remains a substantial group of R users who are uninterested in adopting RStudio for their work, but who would still find the contents of this manuscript useful.2) The authors repeatedly highlight that some returned objects are of the S4 class system. However, the authors do not explain what is significant about S4 classes, nor how they compare to the S3 and R5 systems, nor any potential enter-operability concerns among different class systems. Thus I would suggest either including more information about S4 and why it matters to the analyses, or I would encourage the authors to simply remove any reference to S4.3) The code examples in the main text need to be properly formatted. As they stand now, they are extremely hard to read. The main issue is a lack of proper line breaking and indentation. R Markdown or Sweave could be used to produce the proper formatting.Finally, here are a few edits for increased clarity:lines 58--60: remove the sentence about Sweave, starting "Sweave, a powerful..." and ending "...and calculation results [10]." Sweave is never mentioned again, and so does not need to be introduced here. It is probably also no longer the first choice of most R users for making dynamical documents as most people now seem to use R Markdown and knitr.lines 62--66: remove the sentences beginning "R also can be used..." and ending "...and store data analysis [10]." The purpose of this section is unclear and the use of the term "environment" (a very specific term in R) is incorrect in the technical context of R programming.line 93: the semicolon (;) should be a colon (:)line 98: delete "array"line 180: instead of saying "S4 class" saw what the actual class name isline 207: "subtracted" should be "extracted"**********6. PLOS authors have the option to publish the peer review history of their article (what does this mean?). If published, this will include your full peer review and any attached files.If you choose “no”, your identity will remain anonymous but your review may still be made public.Do you want your identity to be public for this peer review? For information about this choice, including consent withdrawal, please see our Privacy Policy.Reviewer #1: NoReviewer #2: No[NOTE: If reviewer comments were submitted as an attachment file, they will be attached to this email and accessible via the submission site. Please log into your account, locate the manuscript record, and check for the action link "View Attachments". If this link does not appear, there are no attachment files.]While revising your submission, please upload your figure files to the Preflight Analysis and Conversion Engine (PACE) digital diagnostic tool, https://pacev2.apexcovantage.com/. PACE helps ensure that figures meet PLOS requirements. To use PACE, you must first register as a user. Registration is free. Then, login and navigate to the UPLOAD tab, where you will find detailed instructions on how to use the tool. If you encounter any issues or have any questions when using PACE, please email PLOS at figures@plos.org. Please note that Supporting Information files do not need this step.3 Nov 2020#Editor; Response: Yes, we checked the requirements. We would like to thank you very much for your cooperation and advice in revising our manuscript.Reviewer#1: Response: We would like to thank you very much for your suggestions about grammar, figures, and the use of R codes. Thanks to you, we checked again R codes and added some information for the users. We now have a step-by-step and very informative workflow. These suggestions were very helpful for us to improve our article.Rewier#2: Response: Thank you very much for your encouragement to improve our article. Thanks to you, our article will be useful not only for RStudio users but also for R users. Additionally, we are grateful to you for your suggestion about up to date dynamical documents that R creates. We updated the R codes in the main text, and we added up to date information about R Markdown in our article. Additionally, we are also grateful for your suggestions about grammar.Submitted filename: Response-to-Reviewers.docxClick here for additional data file.24 Nov 2020PONE-D-20-22465R1A workflow with R: phylogenetic analyses and visualizations using mitochondrial cytochrome b gene sequencesPLOS ONEDear Dr. BILGE,Thank you for submitting your manuscript to PLOS ONE. After careful consideration, we feel that it has merit but does not fully meet PLOS ONE’s publication criteria as it currently stands. Therefore, we invite you to submit a revised version of the manuscript that addresses the points raised during the review process.Thank you for your improved manuscript. One of the original reviewers was kind enough to assess the changes, and they are happy with your edits. I did my best to evaluate the responses to the other reviewer's comments and found them satisfactory as well. Please address the minor edits suggested by the reviewers.Please submit your revised manuscript by Jan 08 2021 11:59PM. If you will need more time than this to complete your revisions, please reply to this message or contact the journal office at plosone@plos.org. When you're ready to submit your revision, log on to https://www.editorialmanager.com/pone/ and select the 'Submissions Needing Revision' folder to locate your manuscript file.Please include the following items when submitting your revised manuscript:A rebuttal letter that responds to each point raised by the academic editor and reviewer(s). You should upload this letter as a separate file labeled 'Response to Reviewers'.A marked-up copy of your manuscript that highlights changes made to the original version. You should upload this as a separate file labeled 'Revised Manuscript with Track Changes'.An unmarked version of your revised paper without tracked changes. You should upload this as a separate file labeled 'Manuscript'.If you would like to make changes to your financial disclosure, please include your updated statement in your cover letter. Guidelines for resubmitting your figure files are available below the reviewer comments at the end of this letter.If applicable, we recommend that you deposit your laboratory protocols in protocols.io to enhance the reproducibility of your results. Protocols.io assigns your protocol its own identifier (DOI) so that it can be cited independently in the future. For instructions see: http://journals.plos.org/plosone/s/submission-guidelines#loc-laboratory-protocolsWe look forward to receiving your revised manuscript.Kind regards,Michael Scott Brewer, Ph.D.Academic EditorPLOS ONE[Note: HTML markup is below. Please do not edit.]Reviewers' comments:Reviewer's Responses to QuestionsComments to the Author1. If the authors have adequately addressed your comments raised in a previous round of review and you feel that this manuscript is now acceptable for publication, you may indicate that here to bypass the “Comments to the Author” section, enter your conflict of interest statement in the “Confidential to Editor” section, and submit your "Accept" recommendation.Reviewer #1: All comments have been addressed**********2. Is the manuscript technically sound, and do the data support the conclusions?The manuscript must describe a technically sound piece of scientific research with data that supports the conclusions. Experiments must have been conducted rigorously, with appropriate controls, replication, and sample sizes. The conclusions must be drawn appropriately based on the data presented.Reviewer #1: Yes**********3. Has the statistical analysis been performed appropriately and rigorously?Reviewer #1: N/A**********4. Have the authors made all data underlying the findings in their manuscript fully available?The PLOS Data policy requires authors to make all data underlying the findings described in their manuscript fully available without restriction, with rare exception (please refer to the Data Availability Statement in the manuscript PDF file). The data should be provided as part of the manuscript or its supporting information, or deposited to a public repository. For example, in addition to summary statistics, the data points behind means, medians and variance measures should be available. If there are restrictions on publicly sharing data—e.g. participant privacy or use of data from a third party—those must be specified.Reviewer #1: Yes**********5. Is the manuscript presented in an intelligible fashion and written in standard English?PLOS ONE does not copyedit accepted manuscripts, so the language in submitted articles must be clear, correct, and unambiguous. Any typographical or grammatical errors should be corrected at revision, so please note any specific errors here.Reviewer #1: Yes**********6. Review Comments to the AuthorPlease use the space provided to explain your answers to the questions above. You may also include additional comments for the author, including concerns about dual publication, research ethics, or publication ethics. (Please upload your review as an attachment if it exceeds 20,000 characters)Reviewer #1: This is a much improved manuscript and will be a wonderful contribution to the ability of researchers to efficiently and effectively analyze and visualize phylogenetic data.I do have a few very minor grammatical points:Line 433: "and" needed after "tree type,"Line 435: This sentence is a bit clumsy, perhaps reword to "While input-output files are frequently needed in phylogenetic analysis software..."Line 446: "was" should be "were"**********7. PLOS authors have the option to publish the peer review history of their article (what does this mean?). If published, this will include your full peer review and any attached files.If you choose “no”, your identity will remain anonymous but your review may still be made public.Do you want your identity to be public for this peer review? For information about this choice, including consent withdrawal, please see our Privacy Policy.Reviewer #1: No[NOTE: If reviewer comments were submitted as an attachment file, they will be attached to this email and accessible via the submission site. Please log into your account, locate the manuscript record, and check for the action link "View Attachments". If this link does not appear, there are no attachment files.]While revising your submission, please upload your figure files to the Preflight Analysis and Conversion Engine (PACE) digital diagnostic tool, https://pacev2.apexcovantage.com/. PACE helps ensure that figures meet PLOS requirements. To use PACE, you must first register as a user. Registration is free. Then, login and navigate to the UPLOAD tab, where you will find detailed instructions on how to use the tool. If you encounter any issues or have any questions when using PACE, please email PLOS at figures@plos.org. Please note that Supporting Information files do not need this step.26 Nov 2020#Editor; Response: We would like to thank you very much for your cooperation and advice in revising our manuscript.Reviewer#1: Response: We would like to thank you very much for your cooperation and advice in revising our manuscript.Submitted filename: Response-to-Reviewers.docxClick here for additional data file.1 Dec 2020A workflow with R: phylogenetic analyses and visualizations using mitochondrial cytochrome b gene sequencesPONE-D-20-22465R2Dear Dr. BILGE,We’re pleased to inform you that your manuscript has been judged scientifically suitable for publication and will be formally accepted for publication once it meets all outstanding technical requirements.Within one week, you’ll receive an e-mail detailing the required amendments. When these have been addressed, you’ll receive a formal acceptance letter and your manuscript will be scheduled for publication.An invoice for payment will follow shortly after the formal acceptance. To ensure an efficient process, please log into Editorial Manager at http://www.editorialmanager.com/pone/, click the 'Update My Information' link at the top of the page, and double check that your user information is up-to-date. If you have any billing related questions, please contact our Author Billing department directly at authorbilling@plos.org.If your institution or institutions have a press office, please notify them about your upcoming paper to help maximize its impact. If they’ll be preparing press materials, please inform our press team as soon as possible -- no later than 48 hours after receiving the formal acceptance. Your manuscript will remain under strict press embargo until 2 pm Eastern Time on the date of publication. For more information, please contact onepress@plos.org.Kind regards,Michael Scott Brewer, Ph.D.Academic EditorPLOS ONEAdditional Editor Comments (optional):Reviewers' comments:4 Dec 2020PONE-D-20-22465R2A workflow with R: phylogenetic analyses and visualizations using mitochondrial cytochrome b gene sequencesDear Dr. BILGE:I'm pleased to inform you that your manuscript has been deemed suitable for publication in PLOS ONE. Congratulations! Your manuscript is now with our production department.If your institution or institutions have a press office, please let them know about your upcoming paper now to help maximize its impact. If they'll be preparing press materials, please inform our press team within the next 48 hours. Your manuscript will remain under strict press embargo until 2 pm Eastern Time on the date of publication. For more information please contact onepress@plos.org.If we can help with anything else, please email us at plosone@plos.org.Thank you for submitting your work to PLOS ONE and supporting open access.Kind regards,PLOS ONE Editorial Office Staffon behalf ofDr. Michael Scott BrewerAcademic EditorPLOS ONE
Authors: Nikolaj M Vendelbo; Khalid Mahmood; Burkhard Steuernagel; Brande B H Wulff; Pernille Sarup; Mogens S Hovmøller; Annemarie Fejer Justesen; Peter S Kristensen; Jihad Orabi; Ahmed Jahoor Journal: Cells Date: 2022-04-09 Impact factor: 7.666
Authors: Marja M Mostert-O'Neill; Hannah Tate; S Melissa Reynolds; Makobatjatji M Mphahlele; Gert van den Berg; Steve D Verryn; Juan J Acosta; Justin O Borevitz; Alexander A Myburg Journal: New Phytol Date: 2022-07-02 Impact factor: 10.323