Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CNAprioritization
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Beatrice Tan
CNAprioritization
Commits
3e2c380f
Commit
3e2c380f
authored
Feb 02, 2018
by
Tan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated run rule for running different sample sizes with GISTIC2.
parent
0c50f100
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
Snakefile
Snakefile
+1
-1
config.yaml
config.yaml
+2
-2
rules/SampleSizes.smk
rules/SampleSizes.smk
+2
-2
run_pipeline_cluster.sh
run_pipeline_cluster.sh
+1
-1
No files found.
Snakefile
View file @
3e2c380f
...
...
@@ -42,7 +42,7 @@ onerror:
rule all:
"""Define desired output from pipeline."""
input:
os.path.join(config["gisticdir"], "gistic2")
"Samplesize/Report.txt"
#"Reports/Results.html"
...
...
config.yaml
View file @
3e2c380f
...
...
@@ -34,6 +34,6 @@ settings_gistic: "-ta 0.1
-conf
0.99"
#Settings for sample size differences
#sizes: [
30, 40, 50, 60, 70, 80, 90]
sizes
:
[
30
,
40
]
sizes
:
[
20
,
30
,
40
,
50
,
60
,
70
,
80
,
90
]
#
sizes: [30, 40]
repeats
:
[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
18
,
19
,
20
]
rules/SampleSizes.smk
View file @
3e2c380f
...
...
@@ -18,9 +18,9 @@ rule run_gistic_subsets:
seg="Samplesize/Input/Size{rand_nr}.Rep{rep_nr}.txt"
output:
"Samplesize/GISTIC/Size{rand_nr}.Rep{rep_nr}/all_lesions.conf_" + config["gistic_precision"] + ".txt"
"Samplesize/GISTIC/Size{rand_nr}.Rep{rep_nr}/regions_track.conf_" + config["gistic_precision"] + ".bed"
params:
cnv="",
gistic_directory=config["gisticdir"],
ref=config["reference"],
ref_file="",
extra=config["settings_gistic"]
...
...
@@ -50,7 +50,7 @@ rule run_rubic_subsets:
rule report_sizes:
"""Report the difference when using different sample sizes."""
input:
#
gistic=expand("Samplesize/GISTIC/Size{rand_nr}.Rep{rep_nr}/all_lesions.conf_" + config["gistic_precision"] + ".txt", rand_nr=config["sizes"], rep_nr=config["repeats"]),
gistic=expand("Samplesize/GISTIC/Size{rand_nr}.Rep{rep_nr}/all_lesions.conf_" + config["gistic_precision"] + ".txt", rand_nr=config["sizes"], rep_nr=config["repeats"]),
rubic_gains=expand("Samplesize/RUBIC/Size{rand_nr}.Rep{rep_nr}/gains.txt", rand_nr=config["sizes"], rep_nr=config["repeats"]),
rubic_losses=expand("Samplesize/RUBIC/Size{rand_nr}.Rep{rep_nr}/losses.txt", rand_nr=config["sizes"], rep_nr=config["repeats"])
output:
...
...
run_pipeline_cluster.sh
View file @
3e2c380f
...
...
@@ -18,7 +18,7 @@ snakemake -p \
--configfile
config.yaml
\
--snakefile
Snakefile
\
--latency-wait
90
\
--jobs
1
\
--jobs
3
\
--max-jobs-per-second
10
\
--restart-times
3
\
--use-conda
\
...
...
Write
Preview
Markdown
is supported
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