-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.vsh.yaml
More file actions
63 lines (62 loc) · 1.79 KB
/
Copy pathconfig.vsh.yaml
File metadata and controls
63 lines (62 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: generate_html
namespace: ingestion_qc
description: Generate an HTML report from the QC metrics
authors:
- __merge__: /src/authors/jakub_majercik.yaml
roles: [author]
- __merge__: /src/authors/dorien_roosen.yaml
roles: [author]
- __merge__: /src/authors/robrecht_cannoodt.yaml
roles: [author]
- __merge__: /src/authors/weiwei_schultz.yaml
roles: [contributor]
argument_groups:
- name: Inputs
arguments:
- name: --input_data
type: file
required: true
direction: input
description: The input JSON file containing the QC metrics
example: path/to/file.json
- name: --input_structure
type: file
required: true
direction: input
description: The input JSON file containing the structure of the data
example: path/to/file.json
- name: Outputs
arguments:
- name: --output_qc_report
type: file
required: true
direction: output
description: The output HTML report
example: path/to/file.html
resources:
- type: bash_script
path: script.sh
test_resources:
- type: bash_script
path: test.sh
- path: /resources_test/qc_sample_data/sc_dataset.json
- path: /resources_test/qc_sample_data/sc_report_structure.json
- path: /resources_test/spatial_qc_sample_data/xenium_dataset.json
- path: /resources_test/spatial_qc_sample_data/xenium_report_structure.json
engines:
- type: docker
image: node:latest
setup:
- type: apt
packages:
- git
- type: docker
run: |
cd /opt && git clone -b v0.2.1 https://github.com/openpipelines-bio/siqc.git \
&& cd siqc && npm install \
&& true
runners:
- type: executable
- type: nextflow
directives:
label: [lowmem, lowdisk]