Skip to content

Commit 8760a31

Browse files
committed
Add Cirro config
1 parent ef32765 commit 8760a31

3 files changed

Lines changed: 30 additions & 3 deletions

File tree

.cirro/process-form.json

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,31 @@
5050
"description": "p_depth (GLIPH2)",
5151
"title": "p_depth",
5252
"type": "string"
53+
},
54+
"samplechart_x_col": {
55+
"default": "timepoint",
56+
"description": "Metadata column for x axis of sample-level plots for Sample workflow notebook",
57+
"title": "Sample plot X axis column",
58+
"type": "string"
59+
},
60+
"samplechart_color_col": {
61+
"default": "origin",
62+
"description": "Metadata column for legend color of sample-level plots for Sample workflow notebook",
63+
"title": "Sample plot X axis column",
64+
"type": "string"
65+
},
66+
"vgene_subject_col": {
67+
"default": "subject_id",
68+
"description": "Metadata column for grouping of samples for V gene plots for Sample workflow notebook",
69+
"title": "V gene plot subject column",
70+
"type": "string"
71+
},
72+
"vgene_x_cols": {
73+
"default": "timepoint,origin",
74+
"description": "Comma-separated list of metadata columns for x axis of V gene plot (eg. timepoint,origin or timepoint)",
75+
"title": "V gene plot X axis columns",
76+
"type": "string"
5377
}
54-
5578
}
5679
},
5780
"ui": {}

.cirro/process-input.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,9 @@
99
"local_min_OVE": "$.params.dataset.paramJson.local_min_OVE",
1010
"local_min_pvalue": "$.params.dataset.paramJson.local_min_pvalue",
1111
"outdir": "$.params.dataset.s3|/data/",
12-
"p_depth": "$.params.dataset.paramJson.p_depth"
12+
"p_depth": "$.params.dataset.paramJson.p_depth",
13+
"samplechart_x_col": "$.params.dataset.paramJson.samplechart_x_col",
14+
"samplechart_color_col": "$.params.dataset.paramJson.samplechart_color_col",
15+
"vgene_subject_col": "$.params.dataset.paramJson.vgene_subject_col",
16+
"vgene_x_cols": "$.params.dataset.paramJson.vgene_x_cols"
1317
}

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ params {
3030
samplechart_x_col = 'timepoint'
3131
samplechart_color_col = 'origin'
3232
vgene_subject_col = 'subject_id'
33-
vgene_x_cols = 'timepoint,origin'
33+
vgene_x_cols = 'origin,timepoint'
3434

3535
// GIANA parameters
3636
threshold = 7.0

0 commit comments

Comments
 (0)