Meteor - A plateform for quantitative metagenomic profiling of complex ecosystems
Project description
Meteor
Introduction
Meteor is a plateform for quantitative metagenomics profiling of complex ecosystems. Meteor relies on genes catalogue to perform species-level taxonomic profiling, functional analysis and strain-level population structure inference.
Dependencies
Besides python packages dependencies, Meteor requires:
- python 3.10+
- bowtie2 2.3.5+
- freebayes 1.3.6+
Installation
Meteor is available with conda which includes all its dependencies:
conda create --name meteor -c conda-forge -c bioconda meteor
Or with pip with a recent Python 3.10+:
pip install meteor
You can test the installation of meteor with:
meteor test
Getting started
A basic usage of meteor will require to:
- Download or build a reference catalogue
- Structure the raw fastq files
- Map reads against the reference catalogue
- Compute taxonomical and/or functional abundances
- Strain profiling
1. Download or build a custom reference
Meteor requires to download locally a microbial gene catalogue specif, either in 'full' or 'light' version. The 'full' version contains all genes of the catalogue, whereas the 'light' version contains only the marker genes that will be used to infer species abundance profiles. Of note, no functional profiling can be performed when using the 'light' version of a catalogue.
Ten catalogues are currently available:
Microbial gene catalogue | <name> | Genes count (M) | Metagenomic Species Pan-genomes (MSPs) | Size (full) (GB) | Size (light) (GB) | Description |
---|---|---|---|---|---|---|
Felis catus | cat_gut | 1.3 | 344 | 2.0 | 0.2 | link |
Gallus gallus domesticus | chicken_caecal | 13.6 | 2420 | 19.6 | 1.2 | link |
Canis lupus familiaris | dog_gut | 0.95 | 234 | 1.4 | 0.1 | link |
Homo sapiens gut | human_gut | 10.4 | 1990 | 12.6 | 0.7 | link |
Homo sapiens oral | human_oral | 8.4 | 853 | 13.7 | 0.5 | link |
Homo sapiens skin | human_skin | 2.9 | 392 | 3.9 | 0.2 | link |
Mus musculus | mouse_gut | 5.0 | 1252 | 10.3 | 0.6 | link |
Oryctolagus cuniculus | rabbit_gut | 5.7 | 1053 | 8.0 | 0.4 | link |
Rattus norvegicus | rat_gut | 5.9 | 1627 | 7.0 | 0.6 | link |
Sus domesticus | pig_gut | 9.3 | 1523 | 11.3 | 0.7 | link |
These references can be downloaded with the following command:
meteor download -i <name> -c -o <refdir>
The 'light' catalogues are available with the tag (--fast) :
meteor download -i <name> -c --fast -o <refdir>
Users can also import custom gene catalogue with the command:
meteor build -i <fastafile> -n <name> -o <refdir> -t <threads>
2. Import fastq
Meteor requires a first of fastq indexing:
meteor fastq -i <fastqdir> [-p paired reads] -n <projectname> -o <outputdir>
When multiple sequencing are available for a library, the option -m allows to group these samples. Example:
Illumina_lib1-SAMPLE_01.fastq
Illumina_lib1-SAMPLE_02.fastq
Illumina_lib2-SAMPLE_01.fastq
Illumina_lib2-SAMPLE_02.fastq
In this case, the following command will group these samples the same library:
meteor fastq -i ./ -m SAMPLE_\\d+ -n projectname -o outputdir
3. Mapping
The fastq files are mapped against a catalogue to generate a gene count table with the following command:
meteor mapping -i <fastqdir/sampledir> -r <refdir> -o <mappingdir>
We recommend to first filter out reads with low-quality, length < 60nt or belonging to the host.
4. Taxonomic and functional profiling
Genes from the catalogue are clustered into Metagenomic Species Pangeomes (MSP) with MSPminer, and are functionnaly annotated against KEGG r107, DBcan (carbohydate active enzymes) and MUSTARD (antibiotic resistant determinants).
MSP and functional profiles are computed from the gene count table with the following command:
meteor profile -i <mappingdir/sampledir> -o <profiledir> -r <refdir> -n coverage
The "-n" parameter ensures read count normalization for gene length. If omitted, no normalization will be performed on the gene table.
This profiling step will generate:
- a Species abundance table;
- an ARD abundance table (full catalogue only);
- a DBCAN abundance table (full catalogue only);
- a Gut Metabolic Modules (GMM) abundance table (from the KO annotation) (full catalogue only).
- a Gut Brain Modules (GBM) abundance table (from the KO, EGGNOG and TIGRFAM annotations) (full catalogue only).
5. Merging
To merge output from different samples into a single table, use the following command:
meteor merge -i <profiledir> -o <mergingdir>
5. Strain profiling
Meteor is capable of profiling strains in large metagenomic datasets. It identifies specific mutations from strains and applies them to the gene catalog MSPs.
To use Meteor for strain profiling, use the following command:
meteor strain -i <mappingdir/sampledir> -o <straindir> -r <refdir>
Meteor computes mutation rates and trees between strains from samples using a GTR+GAMMA model with the following command:
meteor tree -i <straindir> -o <treedir>
The METEOR team
The main contributors to METEOR:
- Franck Gauthier
- Amine Ghozlane
- Florian Plaza Oñate
- Nicolas Pons
- Florence Thirion
Acknowledgements
Special thanks to the following people:
- Mathieu Almeida
- Emmanuelle Le Chatelier
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.