Skip to content
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# DRAM2

## Welcome to the wiki for Distilling and Refining Annotations of Metabolism 2 (DRAM2)!
## As of May 11, 2026, we will not be making public changes to DRAM2 ahead of our upcoming publication. We appreciate your patience!

### Welcome to the wiki for Distilling and Refining Annotations of Metabolism 2 (DRAM2)!
Here you will find give you basic instructions for running DRAM2, but for full documentation, please see the official DRAM2 webpage: [Read-the-docs](https://dramit.readthedocs.io/en/latest)

<p align="center">
Expand Down
36 changes: 0 additions & 36 deletions docs/Introduction.md

This file was deleted.

3 changes: 3 additions & 0 deletions docs/dram2_dictionary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## DRAM2 dictionary - Coming soon


15 changes: 8 additions & 7 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ The WrightonLabCSU/dram documentation is split into the following pages:
---
maxdepth: 2
---
Installation
Introduction
Usage/ Quick Start
installation
introduction
usage
Parameter API <params_doc>
Output
Rules_parser
Contributing
Changelog_include
output
rules_parser
contributing
changelog_include
dram2_dictionary
```

# Indices and tables
Expand Down
71 changes: 71 additions & 0 deletions docs/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# Introduction to DRAM2

> As of May 11, 2026, we will not be making public changes to DRAM2 code ahead of our upcoming publication. We appreciate your patience, & stay tuned for more!

----

Welcome to the wiki for Distilling and Refining Annotations of Metabolism 2 (DRAM2)!

### Introduction

DRAM2 (Distilling and Refining Annotations of Metabolism, version 2) is a tool for annotating genomic and metagenomic assemblies (e.g., scaffolds or contigs) as well as predicted genes (nucleotide or amino acid sequences). It organizes genome annotations into metabolic functions across three levels of increasing interpretation: (1) **ANNOTATE**, (2) **SUMMARIZE**, and (3) **VISUALIZE**. The **ANNOTATE** output contains all database hits for every gene in each genome, generating a comprehensive output of most annotation pipelines. DRAM2 extends beyond this by organizing (**SUMMARIZE**) and visualizing (**VISUALIZE**) annotations into ecosystem-relevant functional categories, enabling more interpretable comparisons across genomes and ecosystems. The DRAM2 workflow enables the analysis of large numbers of microbial genomes or metagenomes, highlighting functional guilds and supporting inference of organismal metabolism across datasets.

### DRAM2 Overview & Workflow

Here provide we an overview on the DRAM2 workflow:

- A quick start guide can be found here https: [Usage](//dramit.readthedocs.io/en/latest/usage.html)
- A complete list of pipeline configuration parameters can be found here: [Parameters API](https://dramit.readthedocs.io/en/latest/params_doc.html)

**DRAM2 workflow**

1) Gene calling
2) Gene annotation
3) Summarize gene annotations based on curated datasets to ascribe function to MAGs
4) Generate an interactive heatmap of ecosystem-relevant MAG level metabolic function

**1) Gene calling**

DRAM2 uses Prodigal(v2.6.3) to find open reading frames (ORFs) from genomes, Metagenome Assembled Genomes (MAGs), or assemblies for downstream annotation. Alternatively, users can supply genes called using another platform.

**2) Gene annotation**

DRAM2 annotates genes in each genome (or Metagenome Assembled Genome (MAG)) using a suite of user-defined databases, including [KEGG](https://www.kegg.jp/) (if provided by the user), [UniRef90](https://www.uniprot.org/), [PFAM](https://pfam.xfam.org/), [dbCAN3](http://bcb.unl.edu/dbCAN2/), [RefSeq Viral](https://www.ncbi.nlm.nih.gov/genome/viruses/), [VOGDB](http://vogdb.org/), [MEROPS](https://www.ebi.ac.uk/merops/), and optional user-defined databases. A full list of available annotation databases can be found here: [WrightonLabCSU/dram pipeline parameters](https://dramit.readthedocs.io/en/latest/params_doc.html#pipeline-steps). ANNOTATE then integrates results across all databases, increasing annotation coverage and yielding ~25% more database hits than commonly used annotators such as DFAST, MetaERG, and Prokka. The output of this step (“raw-annotations.tsv”) contains all database annotations. DRAM2 also generates ANNOTATE folder containing: (1) the annotated nucleotide and amino acid fasta files of all genes, (2) genome quality data generated via QUAST, (3) .gff files for each genome, and (4) database-specific files produced during the gene annotation process (i.e. HMMsearch output, MMseq2s output, dbcan3-hmm and dbcan3SUB-hmm etc).

**3) Summarize gene annotations based on curated datasets to ascribe function to MAGs**

After genes have been annotated, users can SUMMARIZE this information into a user-friendly excel workbook (metabolism_summary.xlsx), which contains consolidated gene counts for the most informative genes for specific metabolic functions (*Energy acquisition/bioenergetics, Assimilation & Cofactor Metabolism, Cellular Machinery & Environmental Interaction & Adaptation*). This information can be further refined using a user-defined ecosystem (*agriculture, engineered systems, biogeochemistry, and gut*) to provide the user with counts for a refined set of genes directly related to their ecosystem of interest. In addition to the metabolism_summary excel workbook, the SUMMARIZE contains three key files: (1) a genome statistics table which includes all statistics required to meet MIMAG criteria (genome_stats.tsv), (2) a metabolism summary sheet which contains gene counts of functional genes across a curated set of metabolisms and ecosystems (summarized_genomes.tsv), and (3) a traits table which provides users with the information on the presence and absence of environmentally relevant pathways (traits.xlsx)

**4) Generate an interactive heatmap of ecosystem-relevant MAG level metabolic function**

Users can also generate an interactive heatmap depicting the presence of specific metabolic functions. DRAM2 automatically generates this heatmap for each ecosystem if indicated by the user in addition to a generic heatmap of metabolic function by MAG if no ecosystem is defined.

---

### Basic usage

Below is an example of basic DRAM2 usage. This code is for annotating a directory of genomes, renaming them for downstream use, calling genes and annotating them using all available databases, performing quality control, summarizing and visualizing with particular ecosystems in mind and assigning genome-level traits to the organisms. The command is submitted on the command line and will run in the background.

```bash
nextflow run WrightonLabCSU/DRAM --input_fasta [INPUT_FASTA] --outdir [OUTPUT_DIR] --rename --call --annotate --anno_dbs all --qc --summarize --sum_ecos 'eng_sys,ag' --visualize --traits -profile singularity -resume --slurm -bg
```

Please note that --input_fasta [INPUT_FASTA] should be a directory of genomes or MAGs in .fa or .fna format. It is also worth noting that all Nextflow options are specified with a single dash -, while all DRAM2-specific options are specified with a double dash --.

All available Nextflow options can be seen by running:
nextflow run -help

---

## Other DRAM products

DRAM webinar: https://www.youtube.com/watch?v=-Ky2fz2vw2s
DRAM in KBase publication (2023): https://pubmed.ncbi.nlm.nih.gov/36857575/

---

## Citing DRAM

If DRAM2 helps you in your research, please cite:
DRAM publication in Nucleic Acids Research (2020):
https://academic.oup.com/nar/article/48/16/8883/5884738
53 changes: 51 additions & 2 deletions docs/output.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
# DRAM Output

## Introduction
This is a work in progress, but here is an updated list of output files for DRAM2 as of May 11, 2026:

Work in progress
<details open>

<summary><strong>ANNOTATE/</strong></summary>

- `raw-annotations.tsv` — Initial gene annotations
- `raw_rrna_scan.tsv` — rRNA scan results
- `collected_rrnas.tsv` — Filtered rRNAs
- `collected_trnas.tsv` — Filtered tRNAs

**Subdirectories:**
- `HMM_SEARCH/` — HMM-based functional annotation results
- `MMSEQ2/` — Sequence similarity search results
- `PRODIGAL/` — Gene predictions
- `QUAST/` — Assembly quality metrics
- `RENAMED_GFFS/` — Standardized GFF files
- `RENAMED_HEADERS/` — Renamed FASTA headers

</details>

<details>
<summary><strong>multiqc/</strong></summary>

- `multiqc_report.html` — Aggregated QC report (HTML)
- `multiqc_data/` — subdirectory containing tool information and multiqc log

</details>

<details>

<summary><strong>pipeline_info/</strong></summary>
- contains logs, pipeline parameters, and execution traces

</details>

<details>
<summary><strong>SUMMARIZE/</strong></summary>

- `metabolism_summary.xlsx` — excel workbook showing counts per MAG of curated gene sets
- `genome_stats.tsv` — Per-genome statistics
- `summarized_genomes.tsv` — text file with same information as the metabolism summary sheet
- `traits.xlsx` — Per-MAG Traits

</details>

<details>
<summary><strong>VISUALIZE/</strong></summary>

- `product.html` - Interactive heatmaps — Trait-based visualizations

</details>
Loading