-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from malariagen/2024-09-11-publications
Posts for papers published by Romero et al. and Caputo et al.
- Loading branch information
Showing
4 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: My workflow | ||
on: [pull_request] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.3.4' # Not needed with a `.ruby-version` or `.tool-versions` | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
- run: bundle exec jekyll build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
layout: post | ||
title: "Romero et al. 2024 - Mitochondrial Variation in Anopheles gambiae and Anopheles coluzzii: Phylogeographic Legacy and Mitonuclear Associations With Metabolic Resistance to Pathogens and Insecticides" | ||
tags: research | ||
--- | ||
|
||
Romero et al. (2024) [Mitochondrial Variation in Anopheles gambiae and Anopheles coluzzii: Phylogeographic Legacy and Mitonuclear Associations With Metabolic Resistance to Pathogens and Insecticides](https://doi.org/10.1093/gbe/evae172) was published | ||
in Genome Biology and Evolution. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: post | ||
title: "Caputo et al. 2024 - Population genomic evidence of a putative ‘far-west’ African cryptic taxon in the Anopheles gambiae complex" | ||
tags: research | ||
--- | ||
|
||
Caputo et al. (2024) [Population genomic evidence of a putative ‘far-west’ African cryptic taxon in the Anopheles gambiae complex](https://doi.org/10.1038/s42003-024-06809-y) was published in Nature Communications Biology. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
set -xeuo pipefail | ||
|
||
# https://github.com/guard/listen/blob/master/README.md#adapter-warnings | ||
export LISTEN_GEM_ADAPTER_WARN_BEHAVIOR=silent | ||
|
||
bundle exec jekyll serve |