-
Notifications
You must be signed in to change notification settings - Fork 12
/
action.yml
43 lines (39 loc) · 1.03 KB
/
action.yml
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
name: snakemake
description: Run Snakemake on the repository
branding:
icon: git-pull-request
color: green
inputs:
directory:
description: Working directory for the execution
required: true
default: .test
snakefile:
description: Snakefile containing the workflow description
default: Snakefile
args:
description: Additional Snakemake arguments to use
required: false
default: ''
stagein:
description: Additional steps to prepare the workflow for execution
required: false
default: ''
task:
description: Whether to run Snakemake or to generate a container image specification.
required: false
default: 'run'
show-disk-usage-on-error:
descriptions: Whether to return the used disk space on failing.
required: false
default: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.directory }}
- ${{ inputs.snakefile }}
- ${{ inputs.args }}
- ${{ inputs.stagein }}
- ${{ inputs.task }}
- ${{ inputs.show-disk-usage-on-error }}