You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/en/virus.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,11 +23,16 @@ _Host filters_
23
23
`--host`
24
24
Filter by host organism name or NCBI Taxonomy ID (e.g., 'human', 'Aedes aegypti', `1335626`).
25
25
26
+
`--lab_passaged`
27
+
'true' or 'false'. Filter for or against lab-passaged samples.
28
+
Command line: `--lab_passaged true` to fetch only lab-passaged samples, or `--lab_passaged false` to exclude them.
29
+
Python: `lab_passaged=True` or `lab_passaged=False` (`lab_passaged=None` for no filter).
30
+
26
31
_Sequence & Gene filters_
27
32
28
33
`--nuc_completeness`
29
34
Filter by nucleotide completeness. One of: 'complete' or 'partial'.
30
-
Set to 'complete' to only return full-length viral genomes; set to 'partial' to only return sequences that are NOT full-length viral genomes.
35
+
Set to 'complete' to only return nucleotide sequences marked as complete; set to 'partial' to only return sequences that are marked as partial.
31
36
32
37
`--min_seq_length`
33
38
Filter by minimum sequence length.
@@ -60,6 +65,11 @@ Filter by maximum number of ambiguous nucleotide characters (N's).
60
65
Filter for sequences containing specific proteins or genes (e.g., 'spike', 'ORF1ab'). Can be a single protein name or a list of protein names.
61
66
Python: `has_proteins="spike"` or `has_proteins=["spike", "ORF1ab"]`
62
67
68
+
`--annotated`
69
+
'true' or 'false'. Filter for sequences that have been annotated with gene/protein information.
70
+
Command line: `--annotated true` to fetch only that have been annotated with gene/protein information, or `--annotated false` to exclude them.
71
+
Python: `annotated=True` or `annotated=False` (`annotated=None` for no filter).
72
+
63
73
_Date filters_
64
74
65
75
`--min_collection_date`
@@ -115,16 +125,6 @@ Use NCBI's optimized cached data packages for an Alphainfluenza (Influenza A vir
115
125
`-g``--genbank_metadata`
116
126
Fetch and save additional detailed metadata from GenBank, including collection dates, host details, and publication references, in a separate `{virus}_genbank_metadata.csv` file (plus full XML/CSV dumps).
117
127
118
-
`--annotated`
119
-
Filter for sequences that have been annotated with gene/protein information.
120
-
Command line: `--annotated true` or `--annotated false`.
121
-
Python: `annotated=True` or `annotated=False`.
122
-
123
-
`--lab_passaged`
124
-
Filter for or against lab-passaged samples.
125
-
Command line: `--lab_passaged true` to fetch only lab-passaged samples, or `--lab_passaged false` to exclude them.
126
-
Python: `lab_passaged=True` or `lab_passaged=False`.
127
-
128
128
`--proteins_complete`
129
129
Flag to only include sequences where all annotated proteins are complete.
0 commit comments