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: workflow/schemas/config_schema.json
+51Lines changed: 51 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -440,6 +440,10 @@
440
440
"lollipop": {
441
441
"type": "string",
442
442
"default": "lollipop"
443
+
},
444
+
"sr2silo": {
445
+
"type": "string",
446
+
"default": "sr2silo"
443
447
}
444
448
},
445
449
"default": {},
@@ -1933,6 +1937,53 @@
1933
1937
},
1934
1938
"default": {},
1935
1939
"type": "object"
1940
+
},
1941
+
"loculus": {
1942
+
"description": "This section is used to assist and prepare uploads of the data to instances of [Loculus](https://loculus.org/).\n\nNOTE: The upload package for Loculus requires metadata, currently this metadata is fetched from the same timeline.tsv file as used by tallymut, see [`tallymut` => `timeline_file`](#tallymut_timeline_file)",
1943
+
"properties": {
1944
+
"conda": {
1945
+
"type": "string",
1946
+
"default": "{VPIPE_BASEDIR}/envs/sr2silo.yaml"
1947
+
},
1948
+
"mem": {
1949
+
"type": "integer",
1950
+
"default": 8192
1951
+
},
1952
+
"time": {
1953
+
"type": "integer",
1954
+
"default": 120
1955
+
},
1956
+
"threads": {
1957
+
"type": "integer",
1958
+
"default": 1
1959
+
},
1960
+
"nextclade_reference": {
1961
+
"type": "string",
1962
+
"default": "",
1963
+
"description": "Name of the reference. Loculus uses the same names as nextclade datasets.",
1964
+
"example": ["sars-cov-2"]
1965
+
},
1966
+
"local": {
1967
+
"type": "boolean",
1968
+
"default": true,
1969
+
"description": "Don't dispatch the upload rule to the cluster for execution, run the upload locally.\n\nThis is useful for execution on clusters where the compute nodes are isolated from internet.",
1970
+
"examples": [false]
1971
+
},
1972
+
"keycloak_token_url": {
1973
+
"type": "string",
1974
+
"default": "",
1975
+
"description": "Keycloak authentication URL to use during submission",
1976
+
"example": ["https://auth.example.com/token"]
1977
+
},
1978
+
"submission_url": {
1979
+
"type": "string",
1980
+
"default": "",
1981
+
"description": "Loculus submission URL to use during submission",
0 commit comments