ALL Metrics
-
Views
-
Downloads
Get PDF
Get XML
Cite
Export
Track
Software Tool Article

Metagenome quality metrics and taxonomical annotation visualization through the integration of MAGFlow and BIgMAG

[version 1; peer review: 3 approved with reservations]
PUBLISHED 17 Jun 2024
Author details Author details
OPEN PEER REVIEW
REVIEWER STATUS

This article is included in the Bioinformatics gateway.

Abstract

Background

Building Metagenome–Assembled Genomes (MAGs) from highly complex metagenomics datasets encompasses a series of steps covering from cleaning the sequences, assembling them to finally group them into bins. Along the process, multiple tools aimed to assess the quality and integrity of each MAG are implemented. Nonetheless, even when incorporated within end–to–end pipelines, the outputs of these pieces of software must be visualized and analyzed manually lacking integration in a complete framework.

Methods

We developed a Nextflow pipeline (MAGFlow) for estimating the quality of MAGs through a wide variety of approaches (BUSCO, CheckM2, GUNC and QUAST), as well as for annotating taxonomically the metagenomes using GTDB-Tk2. MAGFlow is coupled to a Python–Dash application (BIgMAG) that displays the concatenated outcomes from the tools included by MAGFlow, highlighting the most important metrics in a single interactive environment along with a comparison/clustering of the input data.

Results

By using MAGFlow/BIgMAG, the user will be able to benchmark the MAGs obtained through different workflows or establish the quality of the MAGs belonging to different samples following the divide and rule methodology.

Conclusions

MAGFlow/BIgMAG represents a unique tool that integrates state-of-the-art tools to study different quality metrics and extract visually as much information as possible from a wide range of genome features.

Keywords

Metagenomics, Nextflow, pipeline, dashboard, data analysis.

Introduction

The generation of metagenomics data has increased exponentially within the last ten years, supported by the rapid evolution of next generation sequencing techniques for both short and long reads (Tremblay et al., 2022). Moreover, to perform the analysis of microbiome data the usual approach involves reconstructing genomes, commonly known as Metagenome–Assembled Genomes (MAGs), from fragmented sequences obtained during DNA extraction. The steps to achieve this goal enclose the cleaning and filtering out of low–quality reads, the assembly of the short sequences into longer and contiguous strands (contigs), plus clustering contigs into bins according to multiple genome–level features such as tetranucleotide frequency, similarity in coverage, GC content, among others (Yang et al., 2021).

Routinely, the recovered MAGs, independently of the selected workflow to assemble them, should be subject to quality measurements by one or several tools. Contiguity, completeness, and contamination are regular metrics used to classify the MAGs in different categories based on arbitrary criteria (Haryono et al., 2022). Common thresholds used to separate low (or simply bins), mid or high-quality MAGs are completeness and contamination values generated by tools such as CheckM or CheckM2, e.g., high-quality MAGs depict levels of contamination below 5% and completeness above 90%. For this manuscript we will use MAGs as a reference to any MAG regardless the category they should be classified in.

Furthermore, given the complexity and abundance of species within some specific environments, i.e., soil or sea sources (Guseva et al., 2022), more sophisticated tools have been developed to detect the presence of specific marker genes, chimerism and duplication. In addition, proper taxonomical annotation of the MAGs allows to report unique insights related to the composition of the community, contributing to ensure the quality of the assembly and the accuracy of the methods employed to bin the contigs (Cornet & Baurain, 2022).

Nevertheless, many pipelines or methodologies only include one or two tools to measure the quality of the MAGs (Kieser et al., 2020; Krakau et al., 2022; Uritskiy et al., 2018), and the visualization and/or analysis of the quality data relies entirely on the user who should be familiar with the type of generated files and how to display the information in a pleasant manner. In other cases, the users must develop manually their own methodology to perform this important step during the metagenome assembly, increasing the risk of lack of reproducibility and the difficulty to test and validate the results. This scenario sets interesting challenges that encases maximizing the scope of the quality assessment, the need of pipelines coupled to visualization tools and boosting reproducibility by wrapping the process with workflow managers (Wratten et al., 2021).

As a result, we designed a framework to measure the quality of the MAGs generated by different methodologies or belonging to different samples, as well as to visualize the metrics through a web–based interface. This framework carries out the analysis through a Nextflow pipeline (MAGFlow) that takes the MAGs as input to measure their completeness and contamination using machine learning through CheckM2 (Chklovski et al., 2023), determine the level of single–copy ortholog (SCO) completeness, duplication and fragmentation using BUSCO (Manni et al., 2021), estimate chimerism and contamination with GUNC (Orakov et al., 2021), perform a full taxonomical classification by GTDB-Tk2 (Chaumeil et al., 2022), and produce a full report of the assembly features by QUAST (Gurevich et al., 2013). After merging the outcomes from these tools, a final.tsv file is compiled by MAGFlow, and the user can use it to render an interactive web–based Dash application (BIgMAG).

Methods

Implementation

MAGFlow

MAGFlow is a pipeline designed to run in any environment, to be portable, easy to install, scalable to the available computational resources and ready to use in local or cloud-based infrastructures. In addition, MAGFlow can be customized through tuning parameters that are available for each tool encompassed in the workflow.

In order to assess the MAG quality and/or perform the taxonomical annotation, MAGFlow, wrapped by Nextflow (v23.04.0), runs BUSCO (v5.7.0), CheckM2 (v1.0.1), GUNC (v1.0.6), QUAST (v5.2.0) and optionally GTDB-Tk2 (v2.3.2), along with a download of the latest Genome Taxonomy Database (GTDB, current release: 220), to produce a.tsv file that concatenates the outputs from these pieces of software (Figure 1). The external tools enclosed by MAGFlow are Open Access, and they will remain in such status according to the license provided by their developers.

3b840ecc-36d5-46fd-9e97-d95c0bb4b80c_figure1.gif

Figure 1. MAGFlow workflow to measure the metagenome quality by different tools, annotate the MAGs taxonomically and render an interactive dashboard using the output from each piece of software.

As input, the pipeline uses genomic files organized in corresponding folders, decompressed (.fna, .fa, .fasta) or compressed (.gz) obtained from a previous process of assembly/binning. Depending on the type of input, the workflow begins by decompressing the files and checking if there are empty files to be removed from the analysis; the original files will not be modified. Afterwards, the tools mentioned above will be run in parallel according to the allocated resources for each job. The taxonomical annotation is optional for each user given the high demand it represents in terms of memory and storage. Once all the processes are finished, MAGFlow will merge the outcomes from each tool, to end up with a unique final_df.tsv file, which is the main input for BIgMAG. Additionally, the pipeline will produce the regular output from each of the tools and HTML execution reports displaying the resource usage, success of each step and timestamps, allowing the user to explore them if required.

In case the user accounts with previously generated BUSCO, CheckM2, GTDB-Tk2, GUNC or QUAST files and their aim is to use them to explore the metrics using BIgMAG, it is possible to achieve this task by just running an additional script (skip_pipeline.py). This script can recognize and process the files into the required final_df.tsv by BIgMAG. Directions about how to run MAGFlow or use the skip_pipeline.py script are available at https://github.com/jeffe107/MAGFlow.

BIgMAG

BIgMAG consists of an interactive Dash application with Plotly as the rendering engine on a regular modern web browser. The layout is divided into 7 sections, 5 of them being plots dedicated exclusively to the tools executed by MAGFlow. In the case of CheckM2 and BUSCO, scatterplots are used to depict the behavior of genome completeness against contamination levels. Moreover, the results from QUAST and GUNC are displayed through boxplots that show the distribution of the data according to a user–selected parameter.

To process the outcomes from GTDB-Tk2, BIgMAG generates a presence/absence matrix representation of annotated taxa at the taxonomical level specified by the user, in a novel strategy to extract the core data without showing the complete phylogeny of the annotated MAGs. This approach is valuable in terms of the simplicity it achieves to display complex information, providing an alternative to the time–consuming branch-collapsing methodology that is usually followed through specialized software packages, e.g., iTOL (Letunic & Bork, 2021), as shown by Bayer et al. (2020) to condensate the GTDB-Tk2 output.

Following the GTDB-Tk2 plot, as an attempt to compare the features among samples and cluster them according to their similarity using different parameters provided by BUSCO, CheckM2, GUNC and/or GTDB-Tk2, a cluster heatmap is displayed. To render this plot, average values are used, combined with the proportion of MAGs passing the GUNC test and/or the proportion of annotated MAGs by GTDB-Tk2.

At the bottom of the dashboard, the raw data in a format table is displayed with the possibility for the user of highlighting cells, deleting rows and filtering the columns with keywords.

Complementary to each plot, there is a series of callbacks that exploits the native interactivity of Plotly and Dash. These callbacks allow filtering out the MAGs according to contamination and completeness threshold levels in the CheckM2 plot, or based on complete SCO and duplicated SCO in the case of the BUSCO figure, selecting the parameter to display the data distribution of each sample in GUNC or QUAST plots and zooming in/out in the GTDB-Tk2 plot by selecting the number of samples to show. Also, it is possible to store all the figures individually directly from the dashboard with the in–built function to download the plots locally. More interactive details will be displayed when the cursor hovers each of the plot zones, i.e., on CheckM2 or BUSCO scatterplots, if GTDB-Tk2 data is found in the final_df.tsv file, the taxonomical classification will be also included in the information depicted.

BIgMAG also features the possibility of being compiled as an HTML webpage to be displayed afterwards without requiring any of the processing components installed. However, given that this is not a native feature of Dash, the callbacks cannot be used while the dashboard is stored. Therefore, we developed an additional script (app_lite.py), a lite version of BIgMAG, displaying the same layout as the regular version, although with an additional Save to html button below the heading section, and without the components triggering the callbacks. This lite version of BIgMAG can be customized and adjusted by using command line arguments (tutorial available at the repository https://github.com/jeffe107/BIgMAG).

Operation

MAGFlow/BIgMAG is performed on UNIX-based operating systems, e.g., any Linux distribution or macOS; its operation on Windows 10 or 11 is also possible through Windows Subsystem for Linux (WSL2). Specifically, MAGFlow demands the installation of Nextflow (≥23.04.0), which in turn requires Java JDK 17 or 19 (recommended version 17.0.3). In addition, it is necessary to account with a software management tool such as Conda (≥23.3.1), Mamba (≥1.3.1) or any container technology including Docker, Singularity, Apptainer, Podman or Charliecloud. After fulfilling these requirements, the user can start the analysis with MAGFlow by providing the directory path where the MAG files are stored or a.csv file indicating the different file paths. A terminal example command can be as follows:

nextflow run MAGFlow/main.nf -profile apptainer --files '~/samples/*' --outdir.

Or:

nextflow run MAGFlow/main.nf -profile apptainer –-csv_file '~/samples.csv' --outdir.

The -profile argument must be set according to the software management tool the system user incorporates, and the path to store the output files is completely arbitrary to the user. Details in regard to the required MAG file structure, an example of the .csv datasheet, and other configuration options can be found at https://github.com/jeffe107/MAGFlow.

On the other hand, BIgMAG only requires a previous installation of Conda (≥23.3.1), Mamba (≥1.3.1) or pip, plus the availability of any modern browser such as Chrome (≥v124.0.6367.62) or Firefox (≥v124.0.2). Once the user satisfies these requisites, they can install the components and dependencies trough the commands:

pip install -r BIgMAG/requirements.txt

Or:

conda create -n BIgMAG --file BIgMAG/requirements.txtconda activate BIgMAG

As a result, the user can access the interactive dashboard by providing the path to the final_df.tsv file generated by MAGFlow through the following terminal command:

BIgMAG/app.py -p 8050 './final_df.tsv'

The argument -p is included to display BIgMAG on the port of the user preference. The default value is 8050. Once the command is run, the prompt output will indicate the IP direction the user must type on the browser or copy and paste onto it, i.e., http://127.0.0.1:8050/.

Results

With the aim of demonstrating the usability of MAGFlow/BIgMAG, we used it to benchmark the MAG features recovered from a mock community (ATCC MSA-1003TM, Table 1) by 6 different pipelines, namely ATLAS, DATMA, MetaWRAP, MUFFIN, nf-core/mag and SnakeMAGs (Kieser et al., 2020; Benavides et al., 2020; Uritskiy et al., 2018; van Damme et al., 2021; Krakau et al., 2022; Tadrent et al., 2023). The selected pipelines were performed using short reads only (Illumina), except for MUFFIN which was tested for hybrid assembly (Illumina and PacBio). Additionally, in order to establish the same starting point for all the pipelines Megahit (Li et al., 2016) was set as assembly software, as well as MetaBAT2 (Kang et al., 2019) was selected as the binning tool, excluding DATMA since this workflow follows a different strategy to recover the MAGs that groups first the reads using a specific approach called CLAME (Benavides et al., 2018), to assemble them in batches afterwards.

Table 1. Description and details of the samples used to test MAGFlow/BIgMAG.

BioProjectSamplesOriginNumber of readsSequencing technologyReference
PRJNA663614SRR12687818Rice soil10.144.882IlluminaFernández-Baca et al., 2021
SRR1268782912.652.865
SRR126878308.286.935
PRJNA448773SRR7013867Wheat soil15.403.203Li et al., 2020
SRR701387416.440.929
PRJNA645385SRR12192848Maize rhizosphere9.483.602Akinola et al., 2021
SRR121928499.319.178
SRR1219285011.889.426
PRJNA510527SRR8359173Mock community5.019.157Portik et al., 2022
SRR93289802.419.037PacBio

The results obtained by MAGFlow and displayed by BIgMAG for this experiment highlight the different behavior the pipelines in their default implementation can depict even if they account with the same tools to assemble the reads and group the contigs. For instance, MetaWRAP and ATLAS show a higher dispersion in terms of the number of contigs assigned per bin (Figure 2a), whilst nf–core/mag depicted a higher proportion of MAGs with higher quality (completeness > 70% and contamination < 5%) (Figure 2b). Likewise, nf-core/mag and MetaWRAP exhibit a trend to produce more MAGs with duplicated SCO with at least 50% of complete SCO (Figure 2c). Another important aspect to consider to compare the pipeline performance is the Clade Separation Score (CSS) calculated by GUNC, a metric that indicates the level of taxonomical chimerism in each contig of a MAG, where MetaWRAP, ATLAS, nf–core/mag and SnakeMAGs show the highest consistency and correspondence between the MAGs passing the GUNC test and the CSS value (Figure 2d). Regarding the taxonomical annotation at species level, it is noticeable that DATMA is not as effective to recover the genomes from the mock community as the rest of the workflows, remaining the main proportion of these unannotated (Figure 2e). Also, MUFFIN outcomes indicate an enhancement in the recovery of less abundant genomes by performing a hybrid assembly with short and long read technologies, since species such as Acinetobacter baumannii, Cutibacterium acnes, Helicobacter pylori and Neisseria meningitidis were only detected by this pipeline; this improvement by achieved hybrid assemblies has been proved by Tao et al. (2023) and Liew et al. (2024).

3b840ecc-36d5-46fd-9e97-d95c0bb4b80c_figure2.gif

Figure 2. Plots generated by BIgMAG depicting the outputs from different tools used to estimate the quality and annotate taxonomically the MAGs recovered from a sequenced mock community: a) distribution of the number of contigs per bin obtained by each pipeline, b) scatterplot of the completeness level against contamination portion of each MAG, c) data distribution of the CSS per pipeline filtered out by bins passing GUNC test, d) dispersion of the MAGs according to the presence of complete and duplicated SCO, e) presence/absence matrix representation depicting the presence/absence of annotated taxa in each pipeline at species level and f) cluster heatmap of the pipelines in function of their average values for different parameters.

As a result, the observations afore-mentioned contribute to the pipeline grouping displayed in the cluster heatmap, in which the metrics of the outcomes from MetaWRAP seem to be closer to the values obtained with ATLAS, and more dissimilar from the cluster that encompasses nf-core/mag and SnakeMAGs; MUFFIN and DATMA represent the most different workflows in regard to the quality features depicted by the MAGs assembled with these pipelines (Figure 2f).

In terms of performance, MAGFlow takes approximately 18 minutes to analyze the MAGs obtained from the mock community on an HPC cluster with 128 CPUs and 500 GB of available memory using the local executor and the default configuration that can be found on the file MAGFlow/conf/base.config at the repository (https://github.com/jeffe107/MAGFlow). Downloading the GTDB-Tk2 database can take up to 4 hours, while retrieving the GUNC database takes ~1 hour depending on the bandwidth of the user Internet network.

In order to show another example of the utility of MAGFlow/BIgMAG, we used nf–core/mag to recover MAGs from several public metagenomics datasets generated from different crop rhizospheres or soil including rice, wheat and maize (Table 1). Additionally, two modes of assembly and binning were considered, namely SASB as single assembly/single binning and CACB as co-assembly/co-binning. Considering the intensive computational demands by the co-assembly process, only Megahit was used as assembly software and MetaBAT2 as the binning tool, allowing the same experimental setting for both SASB and CACB modes. Besides, the raw reads were previously cleaned using fastp (Chen et al., 2018), and a host removal was performed with bowtie2 (Langmead & Salzberg, 2012), indexing the proper host genome according to the type of crop the samples were obtained from.

Afterwards, the MAGs retrieved under each condition were used as input for MAGFlow/BIgMAG, and leveraging on these outcomes it is possible to notice how rice samples remarkably allowed to recover a higher number of MAGs, depicting greater quality in terms of percentage of complete SCO (Figure 3a), mainly for the CACB mode even though all the co-assemblies accounted with a similar number of reads (sequencing depth). This situation highlights how the sequencing depth is not the single factor affecting the assembly process and stresses the need to consider how additional conditions can influence the results such as the error rate of the sequencing method, the complexity of soil/rhizosphere samples, and the read length (Sims et al., 2014).

3b840ecc-36d5-46fd-9e97-d95c0bb4b80c_figure3.gif

Figure 3. Results of the experiment to explore the recovered MAGs by nf–core/mag from different soil/rhizosphere samples using MAGFlow/BIgMAG: a) dispersion of the MAGs according to the presence of complete and duplicated SCO, b) scatterplot of the completeness level against contamination portion of each bin/MAG, c) presence/absence matrix representation depicting the presence/absence of annotated taxa in each pipeline at genus level and d) cluster heatmap of the pipelines in function of their average values for different parameters.

The names of the samples are represented by merging the origin of the sample (rice, wheat or maize) and the mode used by the pipeline to obtain the MAGs (SASB or CACB).

Moreover, this application of MAGFlow/BIgMAG underlines the advantages CACB permits by increasing both the quality and the number of MAGs obtained per type of sample. This is supported by the obtention of more mid-quality MAGS (completeness > 50% and contamination < 10%) (Figure 3b), as well as by the higher proportion of annotated MAGs at genus levels for all soil/rhizosphere samples treated under CACB mode (Figure 3c). These observations can even lead to cluster samples assembled under CACB in the same group when they belong to different matrices (Figure 3d). Similar outcomes have been published by Vosloo et al. (2021) during experiments set with this type of operational mode, fixing metaSPAdes as assembler and MetaBAT2 as binning software.

Discussion

The strategy MAGFlow uses to perform the analysis attempts to follow the nf–core guidelines (P. A. Ewels et al., 2020), which allows robustness and reproducibility, and it has been tested using nf–test. This is supported by its Nextflow wrapping, along with its great performance features such as the possibility to run the software independently and in parallel, the chance to couple it to many other Nextflow modules or pipelines and the property to be scalable and adjusted to the available resources on the system user (Di Tommaso et al., 2017). MAGFlow can also be implemented through a wide variety of profiles such as Conda, Mamba, Docker, Singularity and Apptainer, which increases the scope of suitable systems to execute it. In addition, the pipeline can be launched in local environments, HPC clusters featuring executors as SLURM or SGE, or cloud–based solutions such as Azure Batch or AWS Batch (native Nextflow functionality not tested for MAGFlow).

When writing this report, there is another specific workflow aiming to run multiple tools to measure the quality of metagenomes called GENcontams.nf, which is part of the GEN–ERA toolbox (Cornet et al., 2022). Among the advantages of this package, we can enumerate the inclusion of tools that MAGFlow currently lacks, such as Physeter, Kraken2 and EukCC, the wide control the user can apply over the parameters to run the software, as well as the integration with the GEN–ERA suite. Nonetheless, GENcontams.nf is written under Nextflow DSL1, which is no longer supported by the developers, it does not incorporate a visualization module, and it is not modularized, meaning that all of the analysis are performed in a single script, increasing the likely to fail, and limiting the possibility to couple it to other Nextflow pipelines. Besides, GENcontams.nf does not perform the taxonomical annotation with GTDB-Tk2, leaving this task to a different module within the GEN–ERA toolbox.

On the other hand, in terms of visualization and portability of the plots, MultiQC (Ewels et al., 2016) is the top–of–the–notch application that has eased the process of output integration from several pieces of software; however, out of the tools implemented in MAGFlow, MultiQC only accounts with support for QUAST and BUSCO data obtained from their execution elsewhere.

MAGFlow/BIgMAG attempts to fulfil these limitations in the field of metagenomics data analysis given the reproducibility and scalability of its workflow to assess the quality of the MAGs, the complementary functionalities it includes varying from taxonomic classification to assembly metrics passing through structural integrity, the easiness to analyze as many MAG folders as the user decides and the modularization to enclose the software tools in separate Nextflow modules. Furthermore, BIgMAG complements MAGFlow by generating high-quality automatic plots for all the encompassed tools, allowing a high degree of interactivity and customization according to the user needs. As a result, MAGFlow/BIgMAG represents a unique tool to our knowledge that integrates the execution of the software with a visualization module to extract MAG quality information and taxonomical features, making it interestingly useful when targeting comparisons among different metagenomics pipelines or tools to bin contigs. Also, MAGFlow/BIgMAG provides a convenient support during exploratory analyses that involve establishing general differences across samples as we showed with the examples presented in this paper.

Finally, following the principle of divide–and–rule proposed by Lupo et al. (2021), which suggests that genome quality and contamination should be assessed with as many different tools as possible, MAGFlow/BIgMAG scope will be continuously expanded through the inclusion of additional new tools, such as Kraken2, Physeter, EukCC, among others.

Comments on this article Comments (0)

Version 2
VERSION 2 PUBLISHED 17 Jun 2024
Comment
Author details Author details
Competing interests
Grant information
Copyright
Download
 
Export To
metrics
Views Downloads
F1000Research - -
PubMed Central
Data from PMC are received and updated monthly.
- -
Citations
CITE
how to cite this article
Yepes-García J and Falquet L. Metagenome quality metrics and taxonomical annotation visualization through the integration of MAGFlow and BIgMAG [version 1; peer review: 3 approved with reservations]. F1000Research 2024, 13:640 (https://doi.org/10.12688/f1000research.152290.1)
NOTE: If applicable, it is important to ensure the information in square brackets after the title is included in all citations of this article.
track
receive updates on this article
Track an article to receive email alerts on any updates to this article.

Open Peer Review

Current Reviewer Status: ?
Key to Reviewer Statuses VIEW
ApprovedThe paper is scientifically sound in its current form and only minor, if any, improvements are suggested
Approved with reservations A number of small changes, sometimes more significant revisions are required to address specific details and improve the papers academic merit.
Not approvedFundamental flaws in the paper seriously undermine the findings and conclusions
Version 1
VERSION 1
PUBLISHED 17 Jun 2024
Views
15
Cite
Reviewer Report 31 Jul 2024
Juliette Hayer, UMR MIVEGEC (University of Montpellier- IRD-CNRS), Montpellier, France 
Approved with Reservations
VIEWS 15
The authors present a new and very useful workflow, MAGFlow, coupled with a visualization tool (BIgMAG) for assessing the quality of Metagenome Assembled Genomes (MAGs). These tools allow not only to assess the quality of the MAGs by combining several ... Continue reading
CITE
CITE
HOW TO CITE THIS REPORT
Hayer J. Reviewer Report For: Metagenome quality metrics and taxonomical annotation visualization through the integration of MAGFlow and BIgMAG [version 1; peer review: 3 approved with reservations]. F1000Research 2024, 13:640 (https://doi.org/10.5256/f1000research.167031.r300029)
NOTE: it is important to ensure the information in square brackets after the title is included in all citations of this article.
  • Author Response 23 Sep 2024
    Jeferyd Yepes, Department of Biology, University of Fribourg, Fribourg, 1700, Switzerland
    23 Sep 2024
    Author Response
    Dear Dr. Juliette Hayer,

    We appreciate the time you took to review our manuscript and tool, and we are grateful for the valuable comments and suggestions you provided us. ... Continue reading
COMMENTS ON THIS REPORT
  • Author Response 23 Sep 2024
    Jeferyd Yepes, Department of Biology, University of Fribourg, Fribourg, 1700, Switzerland
    23 Sep 2024
    Author Response
    Dear Dr. Juliette Hayer,

    We appreciate the time you took to review our manuscript and tool, and we are grateful for the valuable comments and suggestions you provided us. ... Continue reading
Views
23
Cite
Reviewer Report 29 Jul 2024
Fotis Baltoumas, BSRC "Alexander Fleming, Vari, Greece 
Approved with Reservations
VIEWS 23
The article by Yepes-Garcia and Falquet, titled "Metagenome quality metrics and taxonomical annotation visualization through the integration of MAGFlow and BIgMAG" presents a new, nextflow-based pipeline for the analysis and assessment of MAGs.

Although a number of ... Continue reading
CITE
CITE
HOW TO CITE THIS REPORT
Baltoumas F. Reviewer Report For: Metagenome quality metrics and taxonomical annotation visualization through the integration of MAGFlow and BIgMAG [version 1; peer review: 3 approved with reservations]. F1000Research 2024, 13:640 (https://doi.org/10.5256/f1000research.167031.r300036)
NOTE: it is important to ensure the information in square brackets after the title is included in all citations of this article.
  • Author Response 23 Sep 2024
    Jeferyd Yepes, Department of Biology, University of Fribourg, Fribourg, 1700, Switzerland
    23 Sep 2024
    Author Response
    Dear Dr. Fotis Baltoumas,

    We appreciate the time you took to review our manuscript and tool, and we are grateful for the valuable comments and suggestions you provided us.
    ... Continue reading
COMMENTS ON THIS REPORT
  • Author Response 23 Sep 2024
    Jeferyd Yepes, Department of Biology, University of Fribourg, Fribourg, 1700, Switzerland
    23 Sep 2024
    Author Response
    Dear Dr. Fotis Baltoumas,

    We appreciate the time you took to review our manuscript and tool, and we are grateful for the valuable comments and suggestions you provided us.
    ... Continue reading
Views
41
Cite
Reviewer Report 18 Jul 2024
Abraham Gihawi, University of East Anglia, Norwich, UK 
Approved with Reservations
VIEWS 41
Jeferyd Yepes-García and Laurent Falquet present the article entitled: "Metagenome quality metrics and taxonomical annotation visualization through the integration of MAGFlow and BIgMAG". This article describes two pieces of software. Firstly MAGFlow, which is concerned with the quality control and ... Continue reading
CITE
CITE
HOW TO CITE THIS REPORT
Gihawi A. Reviewer Report For: Metagenome quality metrics and taxonomical annotation visualization through the integration of MAGFlow and BIgMAG [version 1; peer review: 3 approved with reservations]. F1000Research 2024, 13:640 (https://doi.org/10.5256/f1000research.167031.r300031)
NOTE: it is important to ensure the information in square brackets after the title is included in all citations of this article.
  • Author Response 23 Sep 2024
    Jeferyd Yepes, Department of Biology, University of Fribourg, Fribourg, 1700, Switzerland
    23 Sep 2024
    Author Response
    Dear Dr. Abrahm Gihawi,

    We appreciate the time you took to review our manuscript and tool, and we are grateful for the valuable comments and suggestions you provided us. ... Continue reading
COMMENTS ON THIS REPORT
  • Author Response 23 Sep 2024
    Jeferyd Yepes, Department of Biology, University of Fribourg, Fribourg, 1700, Switzerland
    23 Sep 2024
    Author Response
    Dear Dr. Abrahm Gihawi,

    We appreciate the time you took to review our manuscript and tool, and we are grateful for the valuable comments and suggestions you provided us. ... Continue reading

Comments on this article Comments (0)

Version 2
VERSION 2 PUBLISHED 17 Jun 2024
Comment
Alongside their report, reviewers assign a status to the article:
Approved - the paper is scientifically sound in its current form and only minor, if any, improvements are suggested
Approved with reservations - A number of small changes, sometimes more significant revisions are required to address specific details and improve the papers academic merit.
Not approved - fundamental flaws in the paper seriously undermine the findings and conclusions
Sign In
If you've forgotten your password, please enter your email address below and we'll send you instructions on how to reset your password.

The email address should be the one you originally registered with F1000.

Email address not valid, please try again

You registered with F1000 via Google, so we cannot reset your password.

To sign in, please click here.

If you still need help with your Google account password, please click here.

You registered with F1000 via Facebook, so we cannot reset your password.

To sign in, please click here.

If you still need help with your Facebook account password, please click here.

Code not correct, please try again
Email us for further assistance.
Server error, please try again.