We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a7d8c4 commit 0f93946Copy full SHA for 0f93946
lib/BioX/Workflow/Command/run/Utils/Directives.pm
@@ -264,6 +264,13 @@ has 'HPC' => (
264
##This is useful for features where we want to do things like
265
##split a file into parts
266
##count by kmers, etc
267
+=head2 Iterables
268
+
269
+Lists to iterate by
270
271
+Chunks and chroms are included by default
272
273
+=cut
274
275
has 'chunks' => (
276
is => 'rw',
@@ -283,6 +290,15 @@ has 'use_chunks' => (
283
290
}
284
291
);
285
292
293
294
+has 'chroms' => (
295
+is => 'rw',
296
+isa => 'ArrayRef',
297
+default => sub {
298
+ return [1 .. 22, 'X', 'Y', 'MT'];
299
+},
300
+)
301
286
302
=head2 stash
287
303
288
304
This isn't ever used in the code. Its just there incase you want to persist objects across rules
0 commit comments