<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://rodriguez-r.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://rodriguez-r.com/" rel="alternate" type="text/html" /><updated>2025-12-12T11:07:31+00:00</updated><id>https://rodriguez-r.com/feed.xml</id><title type="html">LM Rodriguez-R</title><subtitle>Bioinformatics &amp; Microbial Ecology</subtitle><entry><title type="html">EMBO Metagenomics 360° 2025</title><link href="https://rodriguez-r.com/hidden/embo-2025/" rel="alternate" type="text/html" title="EMBO Metagenomics 360° 2025" /><published>2025-03-11T00:00:00+00:00</published><updated>2025-03-11T00:00:00+00:00</updated><id>https://rodriguez-r.com/hidden/embo-2025</id><content type="html" xml:base="https://rodriguez-r.com/hidden/embo-2025/"><![CDATA[<h1 id="genome-resolved-metagenomics">Genome-Resolved Metagenomics</h1>

<p>All the data used here is already available in your Virtual Machines,
but you can also obtain it here if you’d like to reproduce these tasks
in your own machines:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>wget 'https://disc-genomics.uibk.ac.at/data/came24.tar.gz' -O - | tar -zx
cd SLMU
</code></pre></div></div>

<h2 id="0-nonpareil">0. Nonpareil</h2>

<p>First, let us define where the data is, so we don’t have to type it
every time:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>DATA=/mnt/data/Rodriguez
</code></pre></div></div>

<p>Now, we can start by running nonpareil locally:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 00_nonpareil
nonpareil -T kmer -s $DATA/SLMU.1.fastq.gz -f fastq -b 00_nonpareil/SLMU
NonpareilCurves.R --pdf 00_nonpareil/SLMU.pdf --no-observed 00_nonpareil/SLMU.npo
xdg-open 00_nonpareil/SLMU.pdf
</code></pre></div></div>

<h2 id="1-assembly">1. Assembly</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># IMPORTANT: This step might use significant RAM and take a very long time
spades.py --meta -1 $DATA/SLMU.1.fastq.gz -2 $DATA/SLMU.2.fastq.gz -o 01_assembly
</code></pre></div></div>

<p>If this is taking too long, you can kill the process by using Ctrl + C,
and instead copy the scaffolds we provide:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>rm -rf 01_assembly
mkdir -p 01_assembly
cp $DATA/SLMU.scaffolds.fasta 01_assembly/scaffolds.fasta
</code></pre></div></div>

<h2 id="2-mapping-reads-to-the-assembly">2. Mapping reads to the assembly</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 02_mapping
bowtie2-build 01_assembly/scaffolds.fasta 02_mapping/SLMU.idx
bowtie2 -1 $DATA/SLMU.1.fastq.gz -2 $DATA/SLMU.2.fastq.gz \
      -S 02_mapping/SLMU.sam -x 02_mapping/SLMU.idx --no-unal
samtools view -b 02_mapping/SLMU.sam | samtools sort -o 02_mapping/SLMU.bam -
ls 02_mapping
</code></pre></div></div>

<h2 id="3-binning">3. Binning</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 03_binning
jgi_summarize_bam_contig_depths --outputDepth 03_binning/SLMU.abund \
      02_mapping/SLMU.bam
metabat2 -i 01_assembly/scaffolds.fasta -a 03_binning/SLMU.abund \
      -o 03_binning/SLMU_bin
ls 03_binning/SLMU_bin.*.fa
</code></pre></div></div>

<h2 id="4-comparing-a-mag-against-a-collection-of-close-relatives">4. Comparing a MAG against a collection of close relatives</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># IMPORTANT: This step is currently causing problems because NCBI has blocked
# the internal network. If if fails, you can use our local copy (see below)
miga new -v -P 04_classification/Sal -t genomes
miga gtdb_get -v -P 04_classification/Sal -T g__Salinibacter --ref
</code></pre></div></div>

<p>If the genomes cannot be downloaded, you can also use our local copy instead:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># IMPORTANT: This will remove the results from the above commands, so make sure
# you use it only if the above is failing
rm -rf 04_classification
mkdir -p 04_classification
cp -R $DATA/Sal 04_classification/Sal
</code></pre></div></div>

<p>And finally, you can add your own genomes and process all the data:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>miga add -v -P 04_classification/Sal -i assembly -t popgenome \
      03_binning/SLMU_bin.*.fa
miga index_wf -o 04_classification/Sal -v
</code></pre></div></div>

<p>That last command will take some time, but you can continue to
part 5 and revisit the results from MiGA later.</p>

<p>Once the run is complete, you can open the file:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>firefox 04_classification/Sal/index.html
</code></pre></div></div>

<p>If you want the taxonomic table, you can use:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>miga ls -P 04_classification/Sal -o 04_classification/Sal/taxonomy.tsv \
      --active -m tax --tab
miga browse -P 04_classification/Sal
</code></pre></div></div>

<p>And reload the page in Firefox, which should now have a taxonomy link.</p>

<h2 id="5-mapping-reads-to-the-genomes">5. Mapping reads to the genome(s)</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 05_genome_mapping
bowtie2-build 03_binning/SLMU_bin.5.fa 05_genome_mapping/SLMU_bin5.idx
bowtie2 -1 $DATA/SLMU.1.fastq.gz -2 $DATA/SLMU.2.fastq.gz \
      -S 05_genome_mapping/SLMU_bin5.sam \
      -x 05_genome_mapping/SLMU_bin5.idx --no-unal
</code></pre></div></div>

<h2 id="6-recruitment-plots">6. Recruitment plots</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 06_recplot
rpe build -d 06_recplot/SLMU_5.db -r 05_genome_mapping/SLMU_bin5.sam \
    -g 03_binning/SLMU_bin.5.fa --mag
rpe plot -d 06_recplot/SLMU_5.db -o 06_recplot/plot
</code></pre></div></div>

<p>Open the file manager and open the following file to explore some of the results
locally:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>firefox 06_recplot/plot/SLMU_bin5_sam/SLMU_bin_recruitment_plot.html
</code></pre></div></div>

<h1 id="software-used">Software Used</h1>

<ul>
  <li><a href="https://github.com/lmrodriguezr/nonpareil">Nonpareil</a></li>
  <li><a href="https://github.com/ablab/spades">SPADES</a></li>
  <li><a href="https://github.com/BenLangmead/bowtie2">Bowtie2</a></li>
  <li><a href="https://bitbucket.org/berkeleylab/metabat">Metabat2</a></li>
  <li><a href="https://github.com/bio-miga/miga">MiGA</a></li>
  <li><a href="https://github.com/KGerhardt/RecruitPlotEasy">RecruitPlotEasy</a></li>
</ul>

<p>And lots of Software used by those above!</p>]]></content><author><name></name></author><category term="hidden" /><summary type="html"><![CDATA[Instructions for EMBO Workshop Metagenomics 360° 2025]]></summary></entry><entry><title type="html">CAME 2024</title><link href="https://rodriguez-r.com/hidden/came-2024/" rel="alternate" type="text/html" title="CAME 2024" /><published>2024-09-01T00:00:00+00:00</published><updated>2024-09-01T00:00:00+00:00</updated><id>https://rodriguez-r.com/hidden/came-2024</id><content type="html" xml:base="https://rodriguez-r.com/hidden/came-2024/"><![CDATA[<h1 id="virtualbox">VirtualBox</h1>

<p>The Virtual Machine is available from USB sticks, or for download here:
<a href="https://disc-genomics.uibk.ac.at/data/CAME2024_v5.ova">https://disc-genomics.uibk.ac.at/data/CAME2024_v5.ova</a></p>

<p>The user is <strong>vmuser</strong> and the password is <strong>vmuser</strong>.</p>

<h1 id="16s-ribosomal-rna-gene-amplicons">16S Ribosomal RNA Gene Amplicons</h1>

<h2 id="0-download-the-data">0. Download the data</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>wget 'https://disc-genomics.uibk.ac.at/data/CAME_SSU.tar.gz' -O - | tar -zx
cd VM_CAME
</code></pre></div></div>

<h2 id="1-download-the-ltp-database">1. Download the LTP database</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>wget 'https://disc-genomics.uibk.ac.at/data/LTP_10_2024.arb'
</code></pre></div></div>

<h1 id="genome-resolved-metagenomics">Genome-Resolved Metagenomics</h1>

<h2 id="0-download-the-data-1">0. Download the data</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>wget 'https://disc-genomics.uibk.ac.at/data/came24.tar.gz' -O - | tar -zx
cd SLMU
</code></pre></div></div>

<p>You can start by running Nonpareil locally:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 00_nonpareil
nonpareil -T kmer -s SLMU.1.fastq.gz -f fastq -b 00_nonpareil/SLMU
NonpareilCurves.R --pdf 00_nonpareil/SLMU.pdf --no-observed 00_nonpareil/SLMU.npo
open 00_nonpareil/SLMU.pdf
</code></pre></div></div>

<h2 id="1-assembly">1. Assembly</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code># IMPORTANT: This step might use significant RAM and take a very long time
spades.py --meta -1 SLMU.1.fastq.gz -2 SLMU.2.fastq.gz -o 01_assembly
</code></pre></div></div>

<p>If this is taking too long, you can kill the process by using Ctrl + C,
and instead copy the scaffolds we provide:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>rm -rf 01_assembly
mkdir -p 01_assembly
cp SLMU.scaffolds.fasta 01_assembly/scaffolds.fasta
</code></pre></div></div>

<h2 id="2-mapping-reads-to-the-assembly">2. Mapping reads to the assembly</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 02_mapping
bowtie2-build 01_assembly/scaffolds.fasta 02_mapping/SLMU.idx
bowtie2 -1 SLMU.1.fastq.gz -2 SLMU.2.fastq.gz \
      -S 02_mapping/SLMU.sam -x 02_mapping/SLMU.idx --no-unal
samtools view -b 02_mapping/SLMU.sam | samtools sort -o 02_mapping/SLMU.bam -
ls 02_mapping
</code></pre></div></div>

<h2 id="3-binning">3. Binning</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 03_binning
jgi_summarize_bam_contig_depths --outputDepth 03_binning/SLMU.abund \
      02_mapping/SLMU.bam
metabat2 -i 01_assembly/scaffolds.fasta -a 03_binning/SLMU.abund \
      -o 03_binning/SLMU_bin
ls 03_binning/SLMU_bin.*.fa
</code></pre></div></div>

<h2 id="4-comparing-a-mag-against-a-collection-of-close-relatives">4. Comparing a MAG against a collection of close relatives</h2>

<p>This step is optional, and it’s intended to demonstrate the capabilities
of MiGA in the command line. Feel free to skip it.</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>miga new -P 04_classification/Sal -t genomes
miga gtdb_get -P 04_classification/Sal -T g__Salinibacter --ref -v
miga add -P 04_classification/Sal -i assembly -t popgenome \
      03_binning/SLMU_bin.*.fa
miga index_wf -o 04_classification/Sal -v
</code></pre></div></div>

<p>That last command will take some time, but you can continue to
part 5 and revisit the results from MiGA later.</p>

<p>Once the run is complete, you can open the file:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>04_classification/Sal/index.html
</code></pre></div></div>

<h2 id="5-mapping-reads-to-the-genomes">5. Mapping reads to the genome(s)</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 05_genome_mapping
bowtie2-build 03_binning/SLMU_bin.5.fa 05_genome_mapping/SLMU_bin5.idx
bowtie2 -1 SLMU.1.fastq.gz -2 SLMU.2.fastq.gz \
      -S 05_genome_mapping/SLMU_bin5.sam \
      -x 05_genome_mapping/SLMU_bin5.idx --no-unal
</code></pre></div></div>

<h2 id="6-recruitment-plots">6. Recruitment plots</h2>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>mkdir -p 06_recplot
rpe build -d 06_recplot/SLMU_5.db -r 05_genome_mapping/SLMU_bin5.sam \
    -g 03_binning/SLMU_bin.5.fa --mag
rpe plot -d 06_recplot/SLMU_5.db
mv recruitment_plots 06_recplot/
</code></pre></div></div>

<p>Open the file manager and open the following file to explore some of the results
locally:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>06_recplot/recruitment_plots/SLMU_bin5_sam/SLMU_bin_recruitment_plot.html
</code></pre></div></div>

<h1 id="software-used">Software Used</h1>

<ul>
  <li><a href="http://www.arb-home.de/">ARB</a></li>
  <li><a href="https://docs.qiime2.org/">Qiime2</a></li>
  <li><a href="https://github.com/lmrodriguezr/nonpareil">Nonpareil</a></li>
  <li><a href="https://github.com/ablab/spades">SPADES</a></li>
  <li><a href="https://github.com/BenLangmead/bowtie2">Bowtie2</a></li>
  <li><a href="https://bitbucket.org/berkeleylab/metabat">Metabat2</a></li>
  <li><a href="https://github.com/bio-miga/miga">MiGA</a></li>
  <li><a href="https://github.com/KGerhardt/RecruitPlotEasy">RecruitPlotEasy</a></li>
</ul>

<p>And lots of Software used by those above!</p>]]></content><author><name></name></author><category term="hidden" /><summary type="html"><![CDATA[Instructions for CAME 2024]]></summary></entry><entry><title type="html">SeqCode Registry</title><link href="https://rodriguez-r.com/software/seqcode-registry/" rel="alternate" type="text/html" title="SeqCode Registry" /><published>2023-01-01T00:00:00+00:00</published><updated>2023-01-01T00:00:00+00:00</updated><id>https://rodriguez-r.com/software/seqcode-registry</id><content type="html" xml:base="https://rodriguez-r.com/software/seqcode-registry/"><![CDATA[<p>The SeqCode Registry is a portal for the registration, tracking, curation, and
validation of prokaryotic names on the basis of genome sequences. It features
several automated checks, including nomenclatural and genomic reviews, as well
as a multi-scheme taxonomic browser.</p>

<p>The SeqCode Registry can be accessed at https://seqco.de/ and it’s part of
<a href="https://seqco.de/initiative">The SeqCode Initiative</a>.</p>]]></content><author><name></name></author><category term="Software" /><category term="genomics" /><category term="taxonomy" /><category term="nomenclature" /><category term="ruby" /><summary type="html"><![CDATA[SeqCode Registry portal for prokaryotic nomenclature]]></summary></entry><entry><title type="html">Lignocellulolytic consortium</title><link href="https://rodriguez-r.com/publication/lignocellulolytic-consortium/" rel="alternate" type="text/html" title="Lignocellulolytic consortium" /><published>2022-09-26T00:00:00+00:00</published><updated>2022-09-26T00:00:00+00:00</updated><id>https://rodriguez-r.com/publication/lignocellulolytic-consortium</id><content type="html" xml:base="https://rodriguez-r.com/publication/lignocellulolytic-consortium/"><![CDATA[<p>The understanding and manipulation of microbial communities toward the
conversion of lignocellulose and plastics are topics of interest in microbial
ecology and biotechnology. In this study, the polymer-degrading capability of a
minimal lignocellulolytic microbial consortium (MELMC) was explored by
genome-resolved metagenomics. The MELMC was mostly composed (&gt;90%) of three
bacterial members (<em>Pseudomonas protegens</em>;
<em>Pristimantibacillus lignocellulolyticus</em> gen. nov., sp. nov; and
<em>Ochrobactrum gambitense</em> sp. nov) recognized by their high-quality
metagenome-assembled genomes (MAGs). Functional annotation of these MAGs
revealed that <em>Pr. lignocellulolyticus</em> could be involved in cellulose and
xylan deconstruction, whereas <em>Ps. protegens</em> could catabolize lignin-derived
chemical compounds. The capacity of the MELMC to transform synthetic plastics
was assessed by two strategies: (i) annotation of MAGs against databases
containing plastic-transforming enzymes; and (ii) predicting enzymatic activity
based on chemical structural similarities between lignin- and plastics-derived
chemical compounds, using Simplified Molecular-Input Line-Entry System and
Tanimoto coefficients. Enzymes involved in the depolymerization of polyurethane
and polybutylene adipate terephthalate were found to be encoded by
<em>Ps. protegens</em>, which could catabolize phthalates and terephthalic acid. The
axenic culture of <em>Ps. protegens</em> grew on polyhydroxyalkanoate (PHA)
nanoparticles and might be a suitable species for the industrial production of
PHAs in the context of lignin and plastic upcycling.</p>]]></content><author><name></name></author><category term="Publication" /><category term="genomics" /><category term="environmental genomics" /><category term="taxonomy" /><category term="plastic degradation" /><summary type="html"><![CDATA[Novel bacterial taxa in a minimal lignocellulolytic consortium and their potential for lignin and plastics transformation]]></summary></entry><entry><title type="html">65,000 names</title><link href="https://rodriguez-r.com/publication/65000-names/" rel="alternate" type="text/html" title="65,000 names" /><published>2022-09-20T00:00:00+00:00</published><updated>2022-09-20T00:00:00+00:00</updated><id>https://rodriguez-r.com/publication/65000-names</id><content type="html" xml:base="https://rodriguez-r.com/publication/65000-names/"><![CDATA[<p>Thousands of new bacterial and archaeal species and higher-level taxa are
discovered each year through the analysis of genomes and metagenomes. The
Genome Taxonomy Database (GTDB) provides hierarchical sequence-based
descriptions and classifications for new and as-yet-unnamed taxa. However,
bacterial nomenclature, as currently configured, cannot keep up with the need
for new well-formed names. Instead, microbiologists have been forced to use
hard-to-remember alphanumeric placeholder labels. Here, we exploit an approach
to the generation of well-formed arbitrary Latinate names at a scale sufficient
to name tens of thousands of unnamed taxa within GTDB. These newly created names
represent an important resource for the microbiology community, facilitating
communication between bioinformaticians, microbiologists and taxonomists, while
populating the emerging landscape of microbial taxonomic and functional
discovery with accessible and memorable linguistic labels.</p>]]></content><author><name></name></author><category term="Publication" /><category term="nomenclature" /><summary type="html"><![CDATA[Naming the unnamed: over 65,000 Candidatus names for unnamed Archaea and Bacteria in the Genome Taxonomy Database]]></summary></entry><entry><title type="html">SeqCode</title><link href="https://rodriguez-r.com/publication/seqcode/" rel="alternate" type="text/html" title="SeqCode" /><published>2022-09-19T00:00:00+00:00</published><updated>2022-09-19T00:00:00+00:00</updated><id>https://rodriguez-r.com/publication/seqcode</id><content type="html" xml:base="https://rodriguez-r.com/publication/seqcode/"><![CDATA[<p>Most prokaryotes are not available as pure cultures and therefore ineligible
for naming under the rules and recommendations of the International Code of
Nomenclature of Prokaryotes (ICNP). Here we summarize the development of the
SeqCode, a code of nomenclature under which genome sequences serve as
nomenclatural types. This code enables valid publication of names of prokaryotes
based upon isolate genome, metagenome-assembled genome or single-amplified
genome sequences. Otherwise, it is similar to the ICNP with regard to the
formation of names and rules of priority. It operates through the SeqCode
Registry (https://seqco.de/), a registration portal through which names and
nomenclatural types are registered, validated and linked to metadata. We
describe the two paths currently available within SeqCode to register and
validate names, including <em>Candidatus</em> names, and provide examples for both.
Recommendations on minimal standards for DNA sequences are provided. Thus, the
SeqCode provides a reproducible and objective framework for the nomenclature of
all prokaryotes regardless of cultivability and facilitates communication across
microbiological disciplines.</p>]]></content><author><name></name></author><category term="Publication" /><category term="taxonomy" /><category term="nomenclature" /><category term="seqcode" /><summary type="html"><![CDATA[SeqCode: a nomenclatural code for prokaryotes described from sequence data]]></summary></entry><entry><title type="html">Development of the SeqCode</title><link href="https://rodriguez-r.com/publication/development-seqcode/" rel="alternate" type="text/html" title="Development of the SeqCode" /><published>2022-09-01T00:00:00+00:00</published><updated>2022-09-01T00:00:00+00:00</updated><id>https://rodriguez-r.com/publication/development-seqcode</id><content type="html" xml:base="https://rodriguez-r.com/publication/development-seqcode/"><![CDATA[<p>Over the last fifteen years, genomics has become fully integrated into
prokaryotic systematics. The genomes of most type strains have been sequenced,
genome sequence similarity is widely used for delineation of species, and
phylogenomic methods are commonly used for classification of higher taxonomic
ranks. Additionally, environmental genomics has revealed a vast diversity of
as-yet-uncultivated taxa.
In response to these developments, a new code of nomenclature, the
<em>Code of Nomenclature of Prokaryotes Described from Sequence Data</em> (SeqCode),
has been developed over the last two years to allow naming of Archaea and
Bacteria using DNA sequences as the nomenclatural types. The SeqCode also allows
naming of cultured organisms, including fastidious prokaryotes that cannot be
deposited into culture collections. Several simplifications relative to the
<em>International Code of Nomenclature of Prokaryotes</em> (ICNP) are implemented to
make nomenclature more accessible, easier to apply and more readily
communicated. By simplifying nomenclature with the goal of a unified
classification, inclusive of both cultured and uncultured taxa, the SeqCode
will facilitate the naming of taxa in every biome on Earth, encourage the
isolation and characterization of as-yet-uncultivated taxa, and promote
synergies between the ecological, environmental, physiological, biochemical,
and molecular biological disciplines to more fully describe prokaryotes.</p>]]></content><author><name></name></author><category term="Publication" /><category term="taxonomy" /><category term="nomenclature" /><category term="seqcode" /><category term="history" /><summary type="html"><![CDATA[Development of the SeqCode: A proposed nomenclatural code for uncultivated prokaryotes with DNA sequences as type]]></summary></entry><entry><title type="html">Maputo children: comparative fecal microbiome</title><link href="https://rodriguez-r.com/publication/maputo-mozambique-usa/" rel="alternate" type="text/html" title="Maputo children: comparative fecal microbiome" /><published>2022-08-18T00:00:00+00:00</published><updated>2022-08-18T00:00:00+00:00</updated><id>https://rodriguez-r.com/publication/maputo-mozambique-usa</id><content type="html" xml:base="https://rodriguez-r.com/publication/maputo-mozambique-usa/"><![CDATA[<p>The infant gut microbiome has lifelong implications on health and immunity but
there is still limited understanding of the microbiome differences and
similarities between children in low- and middle-income countries (LMICs) vs.
high-income countries (HICs). Here, we describe and compare the microbiome
profile of children aged under 48 months in two urban areas: Maputo, Mozambique
and Atlanta, USA using shotgun metagenomics. The gut microbiome of American
children showed distinct development, characterized by higher alpha diversity
after infancy, compared to the same age group of African children, and the
microbiomes clustered separately based on geographic location or age. The
abundances of antibiotic resistance genes (ARGs) and virulence factors (VFs)
were significantly higher in Maputo children, driven primarily by several
primary and opportunistic pathogens. Most notably, about 50% of Maputo children
under the age of two were positive for enterotoxigenic (ETEC) and typical
enteropathogenic (EPEC) <em>Escherichia coli</em> diagnostic genes while none of the
Atlanta age-matched children showed such a positive signal. In contrast,
commensal species such as <em>Phocaeicola vulgatus</em> and <em>Bacteroides caccae</em> were
more abundant in Atlanta, potentially reflecting diets rich in animal protein
and susceptibility to inflammatory diseases. Overall, our results suggest that
the different environments characterizing the two cities have significant,
distinctive signatures on the microbiota of children and its development over
time. Lack of safe water, sanitation, and hygiene (WASH) conditions and/or
unsafe food sources may explain the higher enteric pathogen load among children
in Maputo.</p>]]></content><author><name></name></author><category term="Publication" /><category term="community ecology" /><category term="metagenomics" /><category term="human microbiome" /><summary type="html"><![CDATA[Higher pathogen load in children from Mozambique vs. USA revealed by comparative fecal microbiome profiling]]></summary></entry><entry><title type="html">RecruitPlotEasy Announcement</title><link href="https://rodriguez-r.com/publication/recruitploteasy-announcement/" rel="alternate" type="text/html" title="RecruitPlotEasy Announcement" /><published>2022-01-27T00:00:00+00:00</published><updated>2022-01-27T00:00:00+00:00</updated><id>https://rodriguez-r.com/publication/recruitploteasy-announcement</id><content type="html" xml:base="https://rodriguez-r.com/publication/recruitploteasy-announcement/"><![CDATA[<p>Mapping of short metagenomic (or metatranscriptomic) read data to reference
isolate or single-cell genomes or metagenome-assembled genomes (MAGs) to assess
microbial population relative abundance and/or structure represents an essential
task of many studies across environmental and clinical settings. The filtering
for the quality of the read match and assessment of read mapping results are
frequently performed without visual aids or with the assistance of
visualizations produced through ad-hoc, in-house approaches. Here, we introduce
RecruitPlotEasy, a fully automated, user-friendly pipeline for these purposes
that integrates statistical approaches to quantify intra-population sequence and
gene-content diversity and identify co-occurring relative populations in the
sample. Hence, RecruitPlotEasy should also greatly facilitate population
genetics studies.</p>

<p>RecruitPlotEasy is implemented in Python and R languages and is freely available
open source software under the Artistic License 2.0 from
https://github.com/KGerhardt/RecruitPlotEasy.</p>]]></content><author><name></name></author><category term="Publication" /><category term="software" /><category term="population ecology" /><category term="genomics" /><category term="metagenomics" /><summary type="html"><![CDATA[RecruitPlotEasy: An Advanced Read Recruitment Plot Tool for Assessing Metagenomic Population Abundance and Genetic Diversity]]></summary></entry><entry><title type="html">RecruitPlotEasy</title><link href="https://rodriguez-r.com/software/recruitploteasy/" rel="alternate" type="text/html" title="RecruitPlotEasy" /><published>2022-01-01T00:00:00+00:00</published><updated>2022-01-01T00:00:00+00:00</updated><id>https://rodriguez-r.com/software/recruitploteasy</id><content type="html" xml:base="https://rodriguez-r.com/software/recruitploteasy/"><![CDATA[<p>RecruitPlotEasy is a fully automated, user-friendly pipeline for these purposes
that integrates statistical approaches to quantify intra-population sequence and
gene-content diversity and identify co-occurring relative populations in the
sample.</p>

<p>RecruitPlotEasy is a standalone application inspired by the Recruitment Plot v2
tools from the <a href="/software/enveomics">Enveomics Collection</a>.</p>]]></content><author><name></name></author><category term="Software" /><category term="genomics" /><category term="metagenomics" /><category term="population ecology" /><category term="r" /><category term="python" /><summary type="html"><![CDATA[RecruitPlotEasy Recruitment Plots]]></summary></entry></feed>