@@ -6,7 +6,6 @@ rule get_fasta:
6
6
url = resources .fasta_url ,
7
7
log :
8
8
"logs/resources/get_fasta.log"
9
- #cache: True
10
9
threads : config ["resources" ]["plotting" ]["cpu" ]
11
10
resources :
12
11
runtime = config ["resources" ]["plotting" ]["time" ]
@@ -32,7 +31,6 @@ rule install_damidseq_pipeline_software:
32
31
url = "https://github.com/owenjm/damidseq_pipeline.git" ,
33
32
version = "-b v1.5.3" ,
34
33
retries : 3
35
- #cache: True
36
34
log :
37
35
"logs/resources/install_find_peaks_software.log"
38
36
threads : 1
@@ -84,7 +82,6 @@ rule masked_fasta:
84
82
genome = resources .genome ,
85
83
log :
86
84
"logs/resources/masked_fasta.log"
87
- #cache: True
88
85
threads : config ["resources" ]["plotting" ]["cpu" ]
89
86
resources :
90
87
runtime = config ["resources" ]["plotting" ]["time" ]
@@ -101,7 +98,6 @@ rule index_fasta:
101
98
f"{ resources .fasta } .fai" ,
102
99
log :
103
100
"logs/resources/index_fasta.log"
104
- #cache: True
105
101
threads : config ["resources" ]["plotting" ]["cpu" ]
106
102
resources :
107
103
runtime = config ["resources" ]["plotting" ]["time" ]
@@ -135,7 +131,6 @@ rule make_gatc_tracks:
135
131
f"resources/{ resources .genome } _{ resources .build } _{ maskedgenes } .masked.GATC.gff" ,
136
132
params :
137
133
genome = lambda wildcards , output : output [0 ][:- 9 ]
138
- #cache: True
139
134
threads : config ["resources" ]["fastqc" ]["cpu" ],
140
135
resources :
141
136
time = config ["resources" ]["fastqc" ]["time" ],
@@ -162,7 +157,6 @@ rule bowtie2_build_index:
162
157
".rev.1.bt2" ,
163
158
".rev.2.bt2" ,
164
159
),
165
- #cache: True
166
160
log :
167
161
f"logs/bowtie2_build_index/{ resources .genome } _{ resources .build } .log" ,
168
162
params :
@@ -175,9 +169,6 @@ rule bowtie2_build_index:
175
169
176
170
177
171
if config ["plasmid_fasta" ] != "none" :
178
- # Check plasmid fasta
179
- #check_plasmid_fasta(config["plasmid_fasta"])
180
-
181
172
rule bowtie2_build_index_plasmid :
182
173
input :
183
174
ref = config ["plasmid_fasta" ],
@@ -191,7 +182,6 @@ if config["plasmid_fasta"] != "none":
191
182
".rev.1.bt2" ,
192
183
".rev.2.bt2" ,
193
184
),
194
- #cache: True
195
185
log :
196
186
f"logs/bowtie2_build_index/{ plasmid_name } .log" ,
197
187
params :
@@ -200,6 +190,4 @@ if config["plasmid_fasta"] != "none":
200
190
resources :
201
191
runtime = config ["resources" ]["index" ]["time" ],
202
192
wrapper :
203
- f"{ wrapper_version } /bio/bowtie2/build"
204
-
205
-
193
+ f"{ wrapper_version } /bio/bowtie2/build"
0 commit comments