rbbt-util 5.44.1 → 6.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/rbbt +67 -90
- data/etc/app.d/base.rb +2 -2
- data/etc/app.d/semaphores.rb +3 -3
- data/lib/rbbt/annotations/annotated_array.rb +207 -207
- data/lib/rbbt/annotations/refactor.rb +27 -0
- data/lib/rbbt/annotations/util.rb +282 -282
- data/lib/rbbt/annotations.rb +343 -320
- data/lib/rbbt/association/database.rb +200 -225
- data/lib/rbbt/association/index.rb +294 -291
- data/lib/rbbt/association/item.rb +227 -227
- data/lib/rbbt/association/open.rb +35 -34
- data/lib/rbbt/association/util.rb +0 -169
- data/lib/rbbt/association.rb +2 -4
- data/lib/rbbt/entity/identifiers.rb +119 -118
- data/lib/rbbt/entity/refactor.rb +12 -0
- data/lib/rbbt/entity.rb +319 -315
- data/lib/rbbt/hpc/batch.rb +72 -53
- data/lib/rbbt/hpc/lsf.rb +2 -2
- data/lib/rbbt/hpc/orchestrate/batches.rb +2 -2
- data/lib/rbbt/hpc/orchestrate/chains.rb +25 -5
- data/lib/rbbt/hpc/orchestrate/rules.rb +2 -2
- data/lib/rbbt/hpc/orchestrate.rb +19 -13
- data/lib/rbbt/hpc/slurm.rb +18 -18
- data/lib/rbbt/knowledge_base/entity.rb +13 -5
- data/lib/rbbt/knowledge_base/query.rb +2 -2
- data/lib/rbbt/knowledge_base/registry.rb +32 -31
- data/lib/rbbt/knowledge_base/traverse.rb +1 -1
- data/lib/rbbt/knowledge_base.rb +1 -1
- data/lib/rbbt/monitor.rb +36 -25
- data/lib/rbbt/persist/refactor.rb +166 -0
- data/lib/rbbt/persist/tsv/tokyocabinet.rb +105 -105
- data/lib/rbbt/persist/tsv.rb +187 -185
- data/lib/rbbt/persist.rb +556 -551
- data/lib/rbbt/refactor.rb +20 -0
- data/lib/rbbt/resource/path/refactor.rb +178 -0
- data/lib/rbbt/resource/path.rb +317 -497
- data/lib/rbbt/resource/util.rb +0 -48
- data/lib/rbbt/resource.rb +3 -390
- data/lib/rbbt/tsv/accessor.rb +2 -838
- data/lib/rbbt/tsv/attach.rb +303 -299
- data/lib/rbbt/tsv/change_id.rb +244 -245
- data/lib/rbbt/tsv/csv.rb +87 -85
- data/lib/rbbt/tsv/dumper.rb +2 -100
- data/lib/rbbt/tsv/excel.rb +26 -24
- data/lib/rbbt/tsv/field_index.rb +4 -1
- data/lib/rbbt/tsv/filter.rb +3 -2
- data/lib/rbbt/tsv/index.rb +2 -284
- data/lib/rbbt/tsv/manipulate.rb +750 -747
- data/lib/rbbt/tsv/marshal.rb +3 -3
- data/lib/rbbt/tsv/matrix.rb +2 -2
- data/lib/rbbt/tsv/parallel/through.rb +2 -1
- data/lib/rbbt/tsv/parallel/traverse.rb +783 -781
- data/lib/rbbt/tsv/parser.rb +678 -678
- data/lib/rbbt/tsv/refactor.rb +195 -0
- data/lib/rbbt/tsv/stream.rb +253 -251
- data/lib/rbbt/tsv/util.rb +420 -420
- data/lib/rbbt/tsv.rb +210 -208
- data/lib/rbbt/util/R/eval.rb +4 -4
- data/lib/rbbt/util/R/plot.rb +62 -166
- data/lib/rbbt/util/R.rb +21 -18
- data/lib/rbbt/util/cmd.rb +2 -318
- data/lib/rbbt/util/color.rb +269 -269
- data/lib/rbbt/util/colorize.rb +89 -89
- data/lib/rbbt/util/concurrency/processes/refactor.rb +22 -0
- data/lib/rbbt/util/concurrency/processes/worker.rb +2 -2
- data/lib/rbbt/util/concurrency/processes.rb +389 -386
- data/lib/rbbt/util/config.rb +169 -167
- data/lib/rbbt/util/iruby.rb +20 -0
- data/lib/rbbt/util/log/progress/report.rb +241 -241
- data/lib/rbbt/util/log/progress/util.rb +99 -99
- data/lib/rbbt/util/log/progress.rb +102 -102
- data/lib/rbbt/util/log/refactor.rb +49 -0
- data/lib/rbbt/util/log.rb +486 -532
- data/lib/rbbt/util/migrate.rb +1 -1
- data/lib/rbbt/util/misc/concurrent_stream.rb +248 -246
- data/lib/rbbt/util/misc/development.rb +12 -11
- data/lib/rbbt/util/misc/exceptions.rb +117 -112
- data/lib/rbbt/util/misc/format.rb +2 -230
- data/lib/rbbt/util/misc/indiferent_hash.rb +2 -107
- data/lib/rbbt/util/misc/inspect.rb +2 -476
- data/lib/rbbt/util/misc/lock.rb +109 -106
- data/lib/rbbt/util/misc/omics.rb +9 -1
- data/lib/rbbt/util/misc/pipes.rb +765 -793
- data/lib/rbbt/util/misc/refactor.rb +20 -0
- data/lib/rbbt/util/misc/ssw.rb +27 -17
- data/lib/rbbt/util/misc/system.rb +0 -15
- data/lib/rbbt/util/misc.rb +39 -20
- data/lib/rbbt/util/named_array/refactor.rb +4 -0
- data/lib/rbbt/util/named_array.rb +3 -220
- data/lib/rbbt/util/open/refactor.rb +7 -0
- data/lib/rbbt/util/open.rb +3 -857
- data/lib/rbbt/util/procpath.rb +6 -6
- data/lib/rbbt/util/python/paths.rb +27 -0
- data/lib/rbbt/util/python/run.rb +115 -0
- data/lib/rbbt/util/python/script.rb +110 -0
- data/lib/rbbt/util/python/util.rb +3 -3
- data/lib/rbbt/util/python.rb +22 -81
- data/lib/rbbt/util/semaphore.rb +152 -148
- data/lib/rbbt/util/simpleopt.rb +9 -8
- data/lib/rbbt/util/ssh/refactor.rb +19 -0
- data/lib/rbbt/util/ssh.rb +122 -118
- data/lib/rbbt/util/tar.rb +117 -115
- data/lib/rbbt/util/tmpfile.rb +69 -67
- data/lib/rbbt/util/version.rb +2 -0
- data/lib/rbbt/workflow/refactor/entity.rb +11 -0
- data/lib/rbbt/workflow/refactor/export.rb +66 -0
- data/lib/rbbt/workflow/refactor/inputs.rb +24 -0
- data/lib/rbbt/workflow/refactor/recursive.rb +64 -0
- data/lib/rbbt/workflow/refactor/task_info.rb +65 -0
- data/lib/rbbt/workflow/refactor.rb +153 -0
- data/lib/rbbt/workflow/remote_workflow/driver/ssh.rb +55 -32
- data/lib/rbbt/workflow/remote_workflow/remote_step/rest.rb +3 -1
- data/lib/rbbt/workflow/remote_workflow/remote_step/ssh.rb +14 -5
- data/lib/rbbt/workflow/remote_workflow/remote_step.rb +19 -7
- data/lib/rbbt/workflow/remote_workflow.rb +6 -1
- data/lib/rbbt/workflow/step/run.rb +766 -766
- data/lib/rbbt/workflow/step/save_load_inputs.rb +254 -254
- data/lib/rbbt/workflow/step.rb +2 -362
- data/lib/rbbt/workflow/task.rb +118 -118
- data/lib/rbbt/workflow/usage.rb +289 -287
- data/lib/rbbt/workflow/util/archive.rb +6 -5
- data/lib/rbbt/workflow/util/data.rb +1 -1
- data/lib/rbbt/workflow/util/orchestrator.rb +249 -246
- data/lib/rbbt/workflow/util/trace.rb +79 -44
- data/lib/rbbt/workflow.rb +4 -882
- data/lib/rbbt-util.rb +21 -13
- data/lib/rbbt.rb +16 -3
- data/python/rbbt/__init__.py +19 -1
- data/share/Rlib/plot.R +37 -37
- data/share/Rlib/svg.R +22 -5
- data/share/install/software/lib/install_helpers +1 -1
- data/share/rbbt_commands/hpc/list +2 -3
- data/share/rbbt_commands/hpc/orchestrate +4 -4
- data/share/rbbt_commands/hpc/tail +2 -0
- data/share/rbbt_commands/hpc/task +10 -7
- data/share/rbbt_commands/lsf/list +2 -3
- data/share/rbbt_commands/lsf/orchestrate +4 -4
- data/share/rbbt_commands/lsf/tail +2 -0
- data/share/rbbt_commands/lsf/task +10 -7
- data/share/rbbt_commands/migrate +1 -1
- data/share/rbbt_commands/pbs/list +2 -3
- data/share/rbbt_commands/pbs/orchestrate +4 -4
- data/share/rbbt_commands/pbs/tail +2 -0
- data/share/rbbt_commands/pbs/task +10 -7
- data/share/rbbt_commands/resource/produce +8 -1
- data/share/rbbt_commands/slurm/list +2 -3
- data/share/rbbt_commands/slurm/orchestrate +4 -4
- data/share/rbbt_commands/slurm/tail +2 -0
- data/share/rbbt_commands/slurm/task +10 -7
- data/share/rbbt_commands/system/clean +5 -5
- data/share/rbbt_commands/system/status +5 -5
- data/share/rbbt_commands/tsv/get +2 -3
- data/share/rbbt_commands/tsv/info +10 -13
- data/share/rbbt_commands/tsv/keys +18 -14
- data/share/rbbt_commands/tsv/slice +2 -2
- data/share/rbbt_commands/tsv/transpose +6 -2
- data/share/rbbt_commands/workflow/info +20 -24
- data/share/rbbt_commands/workflow/list +1 -1
- data/share/rbbt_commands/workflow/prov +20 -13
- data/share/rbbt_commands/workflow/server +11 -1
- data/share/rbbt_commands/workflow/task +76 -71
- data/share/rbbt_commands/workflow/write_info +26 -9
- data/share/software/opt/ssw/ssw.c +861 -0
- data/share/software/opt/ssw/ssw.h +130 -0
- data/share/workflow_config.ru +3 -3
- metadata +40 -2
@@ -0,0 +1,130 @@
|
|
1
|
+
/*
|
2
|
+
* ssw.h
|
3
|
+
*
|
4
|
+
* Created by Mengyao Zhao on 6/22/10.
|
5
|
+
* Copyright 2010 Boston College. All rights reserved.
|
6
|
+
* Version 0.1.4
|
7
|
+
* Last revision by Mengyao Zhao on 01/30/13.
|
8
|
+
*
|
9
|
+
*/
|
10
|
+
|
11
|
+
#ifndef SSW_H
|
12
|
+
#define SSW_H
|
13
|
+
|
14
|
+
#include <stdio.h>
|
15
|
+
#include <stdint.h>
|
16
|
+
#include <string.h>
|
17
|
+
#include <emmintrin.h>
|
18
|
+
|
19
|
+
/*! @typedef structure of the query profile */
|
20
|
+
struct _profile;
|
21
|
+
typedef struct _profile s_profile;
|
22
|
+
|
23
|
+
/*! @typedef structure of the alignment result
|
24
|
+
@field score1 the best alignment score
|
25
|
+
@field score2 sub-optimal alignment score
|
26
|
+
@field ref_begin1 0-based best alignment beginning position on reference; ref_begin1 = -1 when the best alignment beginning
|
27
|
+
position is not available
|
28
|
+
@field ref_end1 0-based best alignment ending position on reference
|
29
|
+
@field read_begin1 0-based best alignment beginning position on read; read_begin1 = -1 when the best alignment beginning
|
30
|
+
position is not available
|
31
|
+
@field read_end1 0-based best alignment ending position on read
|
32
|
+
@field read_end2 0-based sub-optimal alignment ending position on read
|
33
|
+
@field cigar best alignment cigar; stored the same as that in BAM format, high 28 bits: length, low 4 bits: M/I/D (0/1/2);
|
34
|
+
cigar = 0 when the best alignment path is not available
|
35
|
+
@field cigarLen length of the cigar string; cigarLen = 0 when the best alignment path is not available
|
36
|
+
*/
|
37
|
+
typedef struct {
|
38
|
+
uint16_t score1;
|
39
|
+
uint16_t score2;
|
40
|
+
int32_t ref_begin1;
|
41
|
+
int32_t ref_end1;
|
42
|
+
int32_t read_begin1;
|
43
|
+
int32_t read_end1;
|
44
|
+
int32_t ref_end2;
|
45
|
+
uint32_t* cigar;
|
46
|
+
int32_t cigarLen;
|
47
|
+
} s_align;
|
48
|
+
|
49
|
+
#ifdef __cplusplus
|
50
|
+
extern "C" {
|
51
|
+
#endif // __cplusplus
|
52
|
+
|
53
|
+
/*! @function Create the query profile using the query sequence.
|
54
|
+
@param read pointer to the query sequence; the query sequence needs to be numbers
|
55
|
+
@param readLen length of the query sequence
|
56
|
+
@param mat pointer to the substitution matrix; mat needs to be corresponding to the read sequence
|
57
|
+
@param n the square root of the number of elements in mat (mat has n*n elements)
|
58
|
+
@param score_size estimated Smith-Waterman score; if your estimated best alignment score is surely < 255 please set 0; if
|
59
|
+
your estimated best alignment score >= 255, please set 1; if you don't know, please set 2
|
60
|
+
@return pointer to the query profile structure
|
61
|
+
@note example for parameter read and mat:
|
62
|
+
If the query sequence is: ACGTATC, the sequence that read points to can be: 1234142
|
63
|
+
Then if the penalty for match is 2 and for mismatch is -2, the substitution matrix of parameter mat will be:
|
64
|
+
//A C G T
|
65
|
+
2 -2 -2 -2 //A
|
66
|
+
-2 2 -2 -2 //C
|
67
|
+
-2 -2 2 -2 //G
|
68
|
+
-2 -2 -2 2 //T
|
69
|
+
mat is the pointer to the array {2, -2, -2, -2, -2, 2, -2, -2, -2, -2, 2, -2, -2, -2, -2, 2}
|
70
|
+
*/
|
71
|
+
s_profile* ssw_init (const int8_t* read, const int32_t readLen, const int8_t* mat, const int32_t n, const int8_t score_size);
|
72
|
+
|
73
|
+
/*! @function Release the memory allocated by function ssw_init.
|
74
|
+
@param p pointer to the query profile structure
|
75
|
+
*/
|
76
|
+
void init_destroy (s_profile* p);
|
77
|
+
|
78
|
+
// @function ssw alignment.
|
79
|
+
/*! @function Do Striped Smith-Waterman alignment.
|
80
|
+
@param prof pointer to the query profile structure
|
81
|
+
@param ref pointer to the target sequence; the target sequence needs to be numbers and corresponding to the mat parameter of
|
82
|
+
function ssw_init
|
83
|
+
@param refLen length of the target sequence
|
84
|
+
@param weight_gapO the absolute value of gap open penalty
|
85
|
+
@param weight_gapE the absolute value of gap extension penalty
|
86
|
+
@param flag bitwise FLAG; (from high to low) bit 5: when setted as 1, function ssw_align will return the best alignment
|
87
|
+
beginning position; bit 6: when setted as 1, if (ref_end1 - ref_begin1 < filterd && read_end1 - read_begin1
|
88
|
+
< filterd), (whatever bit 5 is setted) the function will return the best alignment beginning position and
|
89
|
+
cigar; bit 7: when setted as 1, if the best alignment score >= filters, (whatever bit 5 is setted) the function
|
90
|
+
will return the best alignment beginning position and cigar; bit 8: when setted as 1, (whatever bit 5, 6 or 7 is
|
91
|
+
setted) the function will always return the best alignment beginning position and cigar. When flag == 0, only
|
92
|
+
the optimal and sub-optimal scores and the optimal alignment ending position will be returned.
|
93
|
+
@param filters score filter: when bit 7 of flag is setted as 1 and bit 8 is setted as 0, filters will be used (Please check the
|
94
|
+
decription of the flag parameter for detailed usage.)
|
95
|
+
@param filterd distance filter: when bit 6 of flag is setted as 1 and bit 8 is setted as 0, filterd will be used (Please check
|
96
|
+
the decription of the flag parameter for detailed usage.)
|
97
|
+
@param maskLen The distance between the optimal and suboptimal alignment ending position >= maskLen. We suggest to use
|
98
|
+
readLen/2, if you don't have special concerns. Note: maskLen has to be >= 15, otherwise this function will NOT
|
99
|
+
return the suboptimal alignment information. Detailed description of maskLen: After locating the optimal
|
100
|
+
alignment ending position, the suboptimal alignment score can be heuristically found by checking the second
|
101
|
+
largest score in the array that contains the maximal score of each column of the SW matrix. In order to avoid
|
102
|
+
picking the scores that belong to the alignments sharing the partial best alignment, SSW C library masks the
|
103
|
+
reference loci nearby (mask length = maskLen) the best alignment ending position and locates the second largest
|
104
|
+
score from the unmasked elements.
|
105
|
+
@return pointer to the alignment result structure
|
106
|
+
@note Whatever the parameter flag is setted, this function will at least return the optimal and sub-optimal alignment score,
|
107
|
+
and the optimal alignment ending positions on target and query sequences. If both bit 6 and 7 of the flag are setted
|
108
|
+
while bit 8 is not, the function will return cigar only when both criteria are fulfilled. All returned positions are
|
109
|
+
0-based coordinate.
|
110
|
+
*/
|
111
|
+
s_align* ssw_align (const s_profile* prof,
|
112
|
+
const int8_t* ref,
|
113
|
+
int32_t refLen,
|
114
|
+
const uint8_t weight_gapO,
|
115
|
+
const uint8_t weight_gapE,
|
116
|
+
const uint8_t flag,
|
117
|
+
const uint16_t filters,
|
118
|
+
const int32_t filterd,
|
119
|
+
const int32_t maskLen);
|
120
|
+
|
121
|
+
/*! @function Release the memory allocated by function ssw_align.
|
122
|
+
@param a pointer to the alignment result structure
|
123
|
+
*/
|
124
|
+
void align_destroy (s_align* a);
|
125
|
+
|
126
|
+
#ifdef __cplusplus
|
127
|
+
}
|
128
|
+
#endif // __cplusplus
|
129
|
+
|
130
|
+
#endif // SSW_H
|
data/share/workflow_config.ru
CHANGED
@@ -28,14 +28,14 @@ require Rbbt.etc['app.d/init.rb'].find
|
|
28
28
|
|
29
29
|
#{{{ Workflow
|
30
30
|
workflow = Rbbt.etc['target_workflow'].read
|
31
|
-
wf = Workflow.require_workflow workflow
|
31
|
+
wf = Workflow.require_workflow workflow
|
32
32
|
|
33
33
|
|
34
34
|
$title = wf.to_s
|
35
35
|
$app_name = app_name = wf.to_s + "REST"
|
36
36
|
$app = app = eval "class #{app_name} < Sinatra::Base; self end"
|
37
37
|
|
38
|
-
Rbbt.search_paths = Path::
|
38
|
+
Rbbt.search_paths = Path::path_maps.merge(:workflow => File.join(wf.libdir, '{TOPLEVEL}','{SUBPATH}'))
|
39
39
|
|
40
40
|
etc_dir = Rbbt.etc
|
41
41
|
|
@@ -143,7 +143,7 @@ app.get '/reload_workflow' do
|
|
143
143
|
end
|
144
144
|
load wf_file
|
145
145
|
rescue Exception
|
146
|
-
if File.
|
146
|
+
if File.exist?(Rbbt.etc['target_workflow'].read.strip)
|
147
147
|
load Rbbt.etc['target_workflow'].read.strip
|
148
148
|
else
|
149
149
|
raise $!
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbbt-util
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miguel Vazquez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: scout-gear
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: rake
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -174,6 +188,7 @@ files:
|
|
174
188
|
- lib/rbbt.rb
|
175
189
|
- lib/rbbt/annotations.rb
|
176
190
|
- lib/rbbt/annotations/annotated_array.rb
|
191
|
+
- lib/rbbt/annotations/refactor.rb
|
177
192
|
- lib/rbbt/annotations/util.rb
|
178
193
|
- lib/rbbt/association.rb
|
179
194
|
- lib/rbbt/association/database.rb
|
@@ -183,6 +198,7 @@ files:
|
|
183
198
|
- lib/rbbt/association/util.rb
|
184
199
|
- lib/rbbt/entity.rb
|
185
200
|
- lib/rbbt/entity/identifiers.rb
|
201
|
+
- lib/rbbt/entity/refactor.rb
|
186
202
|
- lib/rbbt/fix_width_table.rb
|
187
203
|
- lib/rbbt/hpc.rb
|
188
204
|
- lib/rbbt/hpc/batch.rb
|
@@ -204,6 +220,7 @@ files:
|
|
204
220
|
- lib/rbbt/monitor.rb
|
205
221
|
- lib/rbbt/packed_index.rb
|
206
222
|
- lib/rbbt/persist.rb
|
223
|
+
- lib/rbbt/persist/refactor.rb
|
207
224
|
- lib/rbbt/persist/tsv.rb
|
208
225
|
- lib/rbbt/persist/tsv/adapter.rb
|
209
226
|
- lib/rbbt/persist/tsv/cdb.rb
|
@@ -215,8 +232,10 @@ files:
|
|
215
232
|
- lib/rbbt/persist/tsv/sharder.rb
|
216
233
|
- lib/rbbt/persist/tsv/tokyocabinet.rb
|
217
234
|
- lib/rbbt/persist/tsv/tokyocabinet/marshal.rb
|
235
|
+
- lib/rbbt/refactor.rb
|
218
236
|
- lib/rbbt/resource.rb
|
219
237
|
- lib/rbbt/resource/path.rb
|
238
|
+
- lib/rbbt/resource/path/refactor.rb
|
220
239
|
- lib/rbbt/resource/rake.rb
|
221
240
|
- lib/rbbt/resource/util.rb
|
222
241
|
- lib/rbbt/resource/with_key.rb
|
@@ -239,6 +258,7 @@ files:
|
|
239
258
|
- lib/rbbt/tsv/parallel/through.rb
|
240
259
|
- lib/rbbt/tsv/parallel/traverse.rb
|
241
260
|
- lib/rbbt/tsv/parser.rb
|
261
|
+
- lib/rbbt/tsv/refactor.rb
|
242
262
|
- lib/rbbt/tsv/serializers.rb
|
243
263
|
- lib/rbbt/tsv/stream.rb
|
244
264
|
- lib/rbbt/tsv/util.rb
|
@@ -252,6 +272,7 @@ files:
|
|
252
272
|
- lib/rbbt/util/colorize.rb
|
253
273
|
- lib/rbbt/util/concurrency.rb
|
254
274
|
- lib/rbbt/util/concurrency/processes.rb
|
275
|
+
- lib/rbbt/util/concurrency/processes/refactor.rb
|
255
276
|
- lib/rbbt/util/concurrency/processes/socket.rb
|
256
277
|
- lib/rbbt/util/concurrency/processes/worker.rb
|
257
278
|
- lib/rbbt/util/concurrency/threads.rb
|
@@ -259,10 +280,12 @@ files:
|
|
259
280
|
- lib/rbbt/util/docker.rb
|
260
281
|
- lib/rbbt/util/excel2tsv.rb
|
261
282
|
- lib/rbbt/util/filecache.rb
|
283
|
+
- lib/rbbt/util/iruby.rb
|
262
284
|
- lib/rbbt/util/log.rb
|
263
285
|
- lib/rbbt/util/log/progress.rb
|
264
286
|
- lib/rbbt/util/log/progress/report.rb
|
265
287
|
- lib/rbbt/util/log/progress/util.rb
|
288
|
+
- lib/rbbt/util/log/refactor.rb
|
266
289
|
- lib/rbbt/util/migrate.rb
|
267
290
|
- lib/rbbt/util/misc.rb
|
268
291
|
- lib/rbbt/util/misc/annotated_module.rb
|
@@ -282,13 +305,19 @@ files:
|
|
282
305
|
- lib/rbbt/util/misc/omics.rb
|
283
306
|
- lib/rbbt/util/misc/options.rb
|
284
307
|
- lib/rbbt/util/misc/pipes.rb
|
308
|
+
- lib/rbbt/util/misc/refactor.rb
|
285
309
|
- lib/rbbt/util/misc/serialize.rb
|
286
310
|
- lib/rbbt/util/misc/ssw.rb
|
287
311
|
- lib/rbbt/util/misc/system.rb
|
288
312
|
- lib/rbbt/util/named_array.rb
|
313
|
+
- lib/rbbt/util/named_array/refactor.rb
|
289
314
|
- lib/rbbt/util/open.rb
|
315
|
+
- lib/rbbt/util/open/refactor.rb
|
290
316
|
- lib/rbbt/util/procpath.rb
|
291
317
|
- lib/rbbt/util/python.rb
|
318
|
+
- lib/rbbt/util/python/paths.rb
|
319
|
+
- lib/rbbt/util/python/run.rb
|
320
|
+
- lib/rbbt/util/python/script.rb
|
292
321
|
- lib/rbbt/util/python/step.rb
|
293
322
|
- lib/rbbt/util/python/util.rb
|
294
323
|
- lib/rbbt/util/semaphore.rb
|
@@ -300,6 +329,7 @@ files:
|
|
300
329
|
- lib/rbbt/util/simpleopt/parse.rb
|
301
330
|
- lib/rbbt/util/simpleopt/setup.rb
|
302
331
|
- lib/rbbt/util/ssh.rb
|
332
|
+
- lib/rbbt/util/ssh/refactor.rb
|
303
333
|
- lib/rbbt/util/tar.rb
|
304
334
|
- lib/rbbt/util/task/job.rb
|
305
335
|
- lib/rbbt/util/tc_cache.rb
|
@@ -316,6 +346,12 @@ files:
|
|
316
346
|
- lib/rbbt/workflow/integration/ansible/workflow.rb
|
317
347
|
- lib/rbbt/workflow/integration/cromwell.rb
|
318
348
|
- lib/rbbt/workflow/integration/nextflow.rb
|
349
|
+
- lib/rbbt/workflow/refactor.rb
|
350
|
+
- lib/rbbt/workflow/refactor/entity.rb
|
351
|
+
- lib/rbbt/workflow/refactor/export.rb
|
352
|
+
- lib/rbbt/workflow/refactor/inputs.rb
|
353
|
+
- lib/rbbt/workflow/refactor/recursive.rb
|
354
|
+
- lib/rbbt/workflow/refactor/task_info.rb
|
319
355
|
- lib/rbbt/workflow/remote_workflow.rb
|
320
356
|
- lib/rbbt/workflow/remote_workflow/driver.rb
|
321
357
|
- lib/rbbt/workflow/remote_workflow/driver/rest.rb
|
@@ -456,6 +492,8 @@ files:
|
|
456
492
|
- share/rbbt_commands/workflow/task
|
457
493
|
- share/rbbt_commands/workflow/trace
|
458
494
|
- share/rbbt_commands/workflow/write_info
|
495
|
+
- share/software/opt/ssw/ssw.c
|
496
|
+
- share/software/opt/ssw/ssw.h
|
459
497
|
- share/unicorn.rb
|
460
498
|
- share/workflow_config.ru
|
461
499
|
homepage: http://github.com/mikisvaz/rbbt-util
|