Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Holland Computing Center
chipathlon
Commits
1994ee66
Commit
1994ee66
authored
May 17, 2017
by
aknecht2
Browse files
Updates to make sure jobs get loaded correctly with executable changes.
parent
59287112
Changes
8
Hide whitespace changes
Inline
Side-by-side
chipathlon/conf.py
View file @
1994ee66
...
...
@@ -45,8 +45,15 @@ executables = [
"bamtools"
,
"samtools"
,
"idr"
,
"picard"
]
+
align_tools
+
peak_tools
"picard"
,
"bwa"
,
"bowtie2"
,
"macs2"
,
"gem"
,
"peakranger"
,
"MUSIC"
,
"CCAT"
]
# Peak_type validation
peak_types
=
{
...
...
chipathlon/jobs/params/ccat_callpeak.yaml
View file @
1994ee66
...
...
@@ -35,7 +35,7 @@ ccat_callpeak:
-
name
:
ccat_log
type
:
stdout
file_type
:
log
command
:
ccat
command
:
CCAT
arguments
:
-
"
$inputs.0"
:
type
:
file
...
...
chipathlon/jobs/params/music_broad.yaml
View file @
1994ee66
...
...
@@ -42,7 +42,7 @@ music_broad:
-
name
:
scale_16626.bed
type
:
file
file_type
:
bed
command
:
music
command
:
MUSIC
arguments
:
-
"
--prefix"
:
type
:
string
...
...
chipathlon/jobs/params/music_narrow.yaml
View file @
1994ee66
...
...
@@ -26,7 +26,7 @@ music_narrow:
-
name
:
scale_291.bed
type
:
file
file_type
:
bed
command
:
music
command
:
MUSIC
arguments
:
-
"
--prefix"
:
type
:
string
...
...
chipathlon/jobs/params/music_punctate.yaml
View file @
1994ee66
...
...
@@ -46,7 +46,7 @@ music_punctate:
-
name
:
scale_2216.bed
type
:
file
file_type
:
bed
command
:
music
command
:
MUSIC
arguments
:
-
"
--prefix"
:
type
:
string
...
...
chipathlon/jobs/params/spp_nodups_broad.yaml
View file @
1994ee66
...
...
@@ -20,7 +20,7 @@ spp_nodups_broad:
-
name
:
score
type
:
file
file_type
:
ccscore
command
:
spp_nodups
command
:
run_
spp_nodups
arguments
:
-
"
-c="
:
type
:
file
...
...
chipathlon/jobs/params/spp_nodups_narrow.yaml
View file @
1994ee66
...
...
@@ -20,7 +20,7 @@ spp_nodups_narrow:
-
name
:
score
type
:
file
file_type
:
ccscore
command
:
spp_nodups
command
:
run_
spp_nodups
arguments
:
-
"
-c="
:
type
:
file
...
...
chipathlon/workflow_job.py
View file @
1994ee66
...
...
@@ -481,6 +481,8 @@ class WorkflowJob(object):
"$outputs"
:
outputs
}
arg_list
=
[]
if
self
.
executable
==
"gem"
:
arg_list
.
append
(
"-Xmx%sM"
%
(
self
.
params
.
get
(
"memory"
,
self
.
job_data
[
"memory"
])))
has_args
=
re
.
compile
(
"\$((in)|(out))puts\.[0-9]"
)
# Loop through each argument, which are stored as a list of dicts
for
arg_dict
in
self
.
job_data
[
"arguments"
]:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment