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

fix(deployment): add range search to length field #1987

Merged
merged 2 commits into from
May 21, 2024
Merged
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
8 changes: 8 additions & 0 deletions kubernetes/loculus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ defaultOrganismConfig: &defaultOrganismConfig
displayName: Host Age
type: int
header: Host
rangeSearch: true
- name: host_age_bin
ontology_id: GENEPIO:0001394
definition: The age category of the host at the time of sampling.
Expand Down Expand Up @@ -694,6 +695,7 @@ defaultOrganismConfig: &defaultOrganismConfig
type: int
header: "Alignment states and QC metrics"
noInput: true
rangeSearch: true
- name: host_name_scientific
generateIndex: true
autocomplete: true
Expand Down Expand Up @@ -768,39 +770,45 @@ defaultOrganismConfig: &defaultOrganismConfig
type: int
header: "Alignment states and QC metrics"
noInput: true
rangeSearch: true
preprocessing:
args: { type: int }
inputs: { input: nextclade.totalSubstitutions }
- name: total_inserted_nucs
type: int
header: "Alignment states and QC metrics"
noInput: true
rangeSearch: true
preprocessing:
args: { type: int }
inputs: { input: nextclade.totalInsertions }
- name: total_deleted_nucs
type: int
header: "Alignment states and QC metrics"
noInput: true
rangeSearch: true
preprocessing:
args: { type: int }
inputs: { input: nextclade.totalDeletions }
- name: total_ambiguous_nucs
type: int
header: "Alignment states and QC metrics"
noInput: true
rangeSearch: true
preprocessing:
args: { type: int }
inputs: { input: "nextclade.totalNonACGTNs" }
- name: total_unknown_nucs
type: int
header: "Alignment states and QC metrics"
noInput: true
rangeSearch: true
preprocessing:
args: { type: int }
inputs: { input: nextclade.totalMissing }
- name: total_frame_shifts
type: int
rangeSearch: true
header: "Alignment states and QC metrics"
noInput: true
preprocessing:
Expand Down
Loading