Skip to content

Commit 613c6b5

Browse files
authored
Merge pull request #122 from nextstrain/update-location-threshold
Update location threshold
2 parents f3a3085 + be4ec05 commit 613c6b5

File tree

3 files changed

+12
-24
lines changed

3 files changed

+12
-24
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,6 @@ The current available options for `geo_resolutions` are
9696
The `prepare_data` params in `config/config.yaml` are used to subset the full
9797
case counts and clades counts data to specific date range, locations, and clades.
9898

99-
As of 2023-04-04, the config for the automated pipeline is set to only include data from:
100-
101-
- the past 150 days
102-
- excluding sequences from the last 12 days since they may be overly enriched for variants
103-
- locations that have at least 500 sequences in the last 30 days
104-
- excluding locations specifically listed in `defaults/global_excluded_locations.txt`
105-
- clades that have at least 5000 sequences in the last 150 days
106-
10799
### Model configurations
108100

109101
The specific model configurations are housed in separate config YAML files or each model.

config/config.yaml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,39 +16,35 @@ prepare_data:
1616
nextstrain_clades:
1717
global:
1818
included_days: 150
19-
location_min_seq: 50
20-
location_min_seq_days: 30
19+
location_min_seq: 1000
20+
location_min_seq_days: 150
2121
excluded_locations: "defaults/global_excluded_locations.txt"
22-
prune_seq_days: 12
23-
clade_min_seq: 2000
22+
clade_min_seq: 500
2423
clade_min_seq_days: 150
2524
pango_lineages:
2625
global:
2726
included_days: 150
28-
location_min_seq: 150
29-
location_min_seq_days: 30
27+
location_min_seq: 1000
28+
location_min_seq_days: 150
3029
excluded_locations: "defaults/global_excluded_locations.txt"
31-
prune_seq_days: 12
3230
clade_min_seq: 1
3331
clade_min_seq_days: 150
3432
collapse_threshold: 350
3533
open:
3634
nextstrain_clades:
3735
global:
3836
included_days: 150
39-
location_min_seq: 50
40-
location_min_seq_days: 30
37+
location_min_seq: 1000
38+
location_min_seq_days: 150
4139
excluded_locations: "defaults/global_excluded_locations.txt"
42-
prune_seq_days: 12
43-
clade_min_seq: 2000
40+
clade_min_seq: 500
4441
clade_min_seq_days: 150
4542
pango_lineages:
4643
global:
4744
included_days: 150
48-
location_min_seq: 150
49-
location_min_seq_days: 30
45+
location_min_seq: 1000
46+
location_min_seq_days: 150
5047
excluded_locations: "defaults/global_excluded_locations.txt"
51-
prune_seq_days: 12
5248
clade_min_seq: 1
5349
clade_min_seq_days: 150
5450
collapse_threshold: 350

viz/src/App.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function App() {
3131
<p>
3232
Each line represents the estimated frequency of a particular clade through time.
3333
Equivalent Pango lineage is given in parenthesis, eg clade 23A (lineage XBB.1.5). Only
34-
locations with more than 50 sequences from samples collected in the previous 30 days are
34+
locations with more than 1000 sequences from samples collected in the previous 150 days are
3535
included. Results last updated {mlrCladesData?.modelData?.get('updated') || 'loading'}.
3636
</p>
3737
<div id="cladeFrequenciesPanel" class="panelDisplay"> {/* surrounding div(s) used for static-images.js script */}
@@ -54,7 +54,7 @@ function App() {
5454
<p>
5555
Each line represents the estimated frequency of a particular Pango lineage through time.
5656
Lineages with fewer than 350 observations are collapsed into parental lineage. Only
57-
locations with more than 150 sequences from samples collected in the previous 30 days are
57+
locations with more than 1000 sequences from samples collected in the previous 150 days are
5858
included. Results last updated {mlrLineagesData?.modelData?.get('updated') || 'loading'}.
5959
</p>
6060
<div id="lineageFrequenciesPanel" class="panelDisplay">

0 commit comments

Comments
 (0)