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
9ea0a4bc
Commit
9ea0a4bc
authored
May 27, 2016
by
Adam Caprez
Browse files
Add staging of gem read distribution file
parent
be0b317a
Changes
4
Hide whitespace changes
Inline
Side-by-side
chipathlon/conf.py
View file @
9ea0a4bc
...
...
@@ -52,7 +52,8 @@ file_extensions = {
"yaml"
:
[
"yaml"
],
"result"
:
[
"bed"
,
"narrowPeak"
,
"broadPeak"
,
"tagAlign"
,
"bam"
],
"txt"
:
[
"txt"
],
"chrom_sizes"
:
[
"sizes"
]
"chrom_sizes"
:
[
"sizes"
],
"read_dist"
:
[
"txt"
]
}
# list of resources that can be specified per job (step) in
...
...
chipathlon/jobs/modules/peak_call.yaml
View file @
9ea0a4bc
...
...
@@ -10,7 +10,9 @@ peak_call:
type
:
file
-
prefix
:
type
:
string
additional_inputs
:
null
additional_inputs
:
-
read.dist
:
type
:
file
outputs
:
-
results_sorted.narrowPeak
:
type
:
file
...
...
chipathlon/jobs/params/gem_callpeak.yaml
View file @
9ea0a4bc
...
...
@@ -8,7 +8,9 @@ gem_callpeak:
type
:
file
-
prefix
:
type
:
argument
additional_inputs
:
null
additional_inputs
:
-
read_dist
:
type
:
file
outputs
:
-
bed
:
type
:
file
...
...
chipathlon/peak_call_generator.py
View file @
9ea0a4bc
...
...
@@ -44,7 +44,9 @@ class PeakCallGenerator(ModuleGenerator):
"control.bed"
:
file_pair
[
1
][
"file_name"
],
"prefix"
:
prefix
}
additional_inputs
=
{}
additional_inputs
=
{
"read.dist"
:
self
.
module
.
workflow_jobs
[
'gem_callpeak'
].
raw_files
.
keys
()[
0
]
}
sample_data
=
[
file_pair
[
0
][
"sample"
],
file_pair
[
1
][
"sample"
]]
experiment_ids
=
file_pair
[
0
][
"experiment_ids"
]
control_ids
=
file_pair
[
1
][
"control_ids"
]
...
...
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