-
Notifications
You must be signed in to change notification settings - Fork 4
/
motif_analysis.cwl
89 lines (73 loc) · 1.79 KB
/
motif_analysis.cwl
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/usr/bin/env cwl-runner
class: CommandLineTool
id: motif_analysis.cwl
label: motif analysis
cwlVersion: v1.1
requirements:
DockerRequirement:
dockerPull: "quay.io/biocontainers/homer:4.9.1--pl5.22.0_1"
ResourceRequirement:
coresMin: 1
ramMin: 1024
outdirMin: 100000
inputs:
bed_file:
type: File
inputBinding:
position: 0
prefix: -t
doc: The bed file to analyze motifs from
genome_name:
type: string?
inputBinding:
position: 1
default: "hg38"
doc: The name of the genome being used
output_directory:
type: string?
inputBinding:
position: 2
default: "."
doc: The directory for Homer to write output files to
region_size:
type: int?
inputBinding:
position: 3
prefix: -size
default: 200
doc: Size of the region around peak summit for motif finding
rna_flag:
type: string?
inputBinding:
position: 4
default: "-rna"
doc: A flag to let Homer know to search for RNA motifs
num_cores:
type: int?
inputBinding:
position: 5
prefix: -p
default: 1
doc: The number of cores to use for motif analysis
outputs:
motifs:
type: File
outputBinding:
glob: "*.all.motifs"
doc: A file containing all Homer motifs found
known_results:
type: File
outputBinding:
glob: "*Results.txt"
doc: text file containing statistics about known motif enrichment
autonormalization_statistics:
type: File
outputBinding:
glob: "*autonorm.tsv"
doc: autonormalization statistics for lower-order oligo normalization.
formatted_results:
type: File
outputBinding:
glob: "*Results.html"
doc: formatted output of de novo motif finding.
baseCommand: [/usr/local/share/homer-4.9.1-1/bin/findMotifsGenome.pl]