Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plot French Guiana samples by geography #22

Merged
merged 2 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ingest/defaults/geolocation_rules.tsv
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
# If creating a general rule, then the raw field value can be substituted with '*'
# Lines starting with '#' will be ignored as comments.
# Trailing '#' will be ignored as comments.
Europe/France/French Guiana/* South America/French Guiana (France)/French Guiana (France)/*
Europe/France/France Guiana/* South America/French Guiana (France)/French Guiana (France)/*
South America/French Guiana/*/* South America/French Guiana (France)/*/*
1 change: 1 addition & 0 deletions phylogenetic/defaults/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ files:
exclude: "defaults/dropped_strains.txt"
reference: "defaults/rabies_reference.gb"
colors: "defaults/colors.tsv"
lat_longs: "defaults/lat_longs.tsv"
auspice_config: "defaults/auspice_config.json"
description: "defaults/description.md"
filter:
Expand Down
1 change: 1 addition & 0 deletions phylogenetic/defaults/lat_longs.tsv
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
country French Guiana (France) 4.0039882 -52.999998
2 changes: 2 additions & 0 deletions phylogenetic/rules/export.smk
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ rule export:
aa_muts = "results/aa_muts.json",
year = "results/year.json",
colors = config["files"]["colors"],
lat_longs = config["files"]["lat_longs"],
auspice_config = config["files"]["auspice_config"],
description = config["files"]["description"]
output:
Expand All @@ -33,6 +34,7 @@ rule export:
--metadata-id-columns {params.strain_id} \
--node-data {input.branch_lengths} {input.nt_muts} {input.aa_muts} {input.year} \
--colors {input.colors} \
--lat-longs {input.lat_longs} \
--auspice-config {input.auspice_config} \
--include-root-sequence-inline \
--output {output.auspice_json} \
Expand Down
Loading