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.
Files changed (167) hide show
  1. checksums.yaml +4 -4
  2. data/bin/rbbt +67 -90
  3. data/etc/app.d/base.rb +2 -2
  4. data/etc/app.d/semaphores.rb +3 -3
  5. data/lib/rbbt/annotations/annotated_array.rb +207 -207
  6. data/lib/rbbt/annotations/refactor.rb +27 -0
  7. data/lib/rbbt/annotations/util.rb +282 -282
  8. data/lib/rbbt/annotations.rb +343 -320
  9. data/lib/rbbt/association/database.rb +200 -225
  10. data/lib/rbbt/association/index.rb +294 -291
  11. data/lib/rbbt/association/item.rb +227 -227
  12. data/lib/rbbt/association/open.rb +35 -34
  13. data/lib/rbbt/association/util.rb +0 -169
  14. data/lib/rbbt/association.rb +2 -4
  15. data/lib/rbbt/entity/identifiers.rb +119 -118
  16. data/lib/rbbt/entity/refactor.rb +12 -0
  17. data/lib/rbbt/entity.rb +319 -315
  18. data/lib/rbbt/hpc/batch.rb +72 -53
  19. data/lib/rbbt/hpc/lsf.rb +2 -2
  20. data/lib/rbbt/hpc/orchestrate/batches.rb +2 -2
  21. data/lib/rbbt/hpc/orchestrate/chains.rb +25 -5
  22. data/lib/rbbt/hpc/orchestrate/rules.rb +2 -2
  23. data/lib/rbbt/hpc/orchestrate.rb +19 -13
  24. data/lib/rbbt/hpc/slurm.rb +18 -18
  25. data/lib/rbbt/knowledge_base/entity.rb +13 -5
  26. data/lib/rbbt/knowledge_base/query.rb +2 -2
  27. data/lib/rbbt/knowledge_base/registry.rb +32 -31
  28. data/lib/rbbt/knowledge_base/traverse.rb +1 -1
  29. data/lib/rbbt/knowledge_base.rb +1 -1
  30. data/lib/rbbt/monitor.rb +36 -25
  31. data/lib/rbbt/persist/refactor.rb +166 -0
  32. data/lib/rbbt/persist/tsv/tokyocabinet.rb +105 -105
  33. data/lib/rbbt/persist/tsv.rb +187 -185
  34. data/lib/rbbt/persist.rb +556 -551
  35. data/lib/rbbt/refactor.rb +20 -0
  36. data/lib/rbbt/resource/path/refactor.rb +178 -0
  37. data/lib/rbbt/resource/path.rb +317 -497
  38. data/lib/rbbt/resource/util.rb +0 -48
  39. data/lib/rbbt/resource.rb +3 -390
  40. data/lib/rbbt/tsv/accessor.rb +2 -838
  41. data/lib/rbbt/tsv/attach.rb +303 -299
  42. data/lib/rbbt/tsv/change_id.rb +244 -245
  43. data/lib/rbbt/tsv/csv.rb +87 -85
  44. data/lib/rbbt/tsv/dumper.rb +2 -100
  45. data/lib/rbbt/tsv/excel.rb +26 -24
  46. data/lib/rbbt/tsv/field_index.rb +4 -1
  47. data/lib/rbbt/tsv/filter.rb +3 -2
  48. data/lib/rbbt/tsv/index.rb +2 -284
  49. data/lib/rbbt/tsv/manipulate.rb +750 -747
  50. data/lib/rbbt/tsv/marshal.rb +3 -3
  51. data/lib/rbbt/tsv/matrix.rb +2 -2
  52. data/lib/rbbt/tsv/parallel/through.rb +2 -1
  53. data/lib/rbbt/tsv/parallel/traverse.rb +783 -781
  54. data/lib/rbbt/tsv/parser.rb +678 -678
  55. data/lib/rbbt/tsv/refactor.rb +195 -0
  56. data/lib/rbbt/tsv/stream.rb +253 -251
  57. data/lib/rbbt/tsv/util.rb +420 -420
  58. data/lib/rbbt/tsv.rb +210 -208
  59. data/lib/rbbt/util/R/eval.rb +4 -4
  60. data/lib/rbbt/util/R/plot.rb +62 -166
  61. data/lib/rbbt/util/R.rb +21 -18
  62. data/lib/rbbt/util/cmd.rb +2 -318
  63. data/lib/rbbt/util/color.rb +269 -269
  64. data/lib/rbbt/util/colorize.rb +89 -89
  65. data/lib/rbbt/util/concurrency/processes/refactor.rb +22 -0
  66. data/lib/rbbt/util/concurrency/processes/worker.rb +2 -2
  67. data/lib/rbbt/util/concurrency/processes.rb +389 -386
  68. data/lib/rbbt/util/config.rb +169 -167
  69. data/lib/rbbt/util/iruby.rb +20 -0
  70. data/lib/rbbt/util/log/progress/report.rb +241 -241
  71. data/lib/rbbt/util/log/progress/util.rb +99 -99
  72. data/lib/rbbt/util/log/progress.rb +102 -102
  73. data/lib/rbbt/util/log/refactor.rb +49 -0
  74. data/lib/rbbt/util/log.rb +486 -532
  75. data/lib/rbbt/util/migrate.rb +1 -1
  76. data/lib/rbbt/util/misc/concurrent_stream.rb +248 -246
  77. data/lib/rbbt/util/misc/development.rb +12 -11
  78. data/lib/rbbt/util/misc/exceptions.rb +117 -112
  79. data/lib/rbbt/util/misc/format.rb +2 -230
  80. data/lib/rbbt/util/misc/indiferent_hash.rb +2 -107
  81. data/lib/rbbt/util/misc/inspect.rb +2 -476
  82. data/lib/rbbt/util/misc/lock.rb +109 -106
  83. data/lib/rbbt/util/misc/omics.rb +9 -1
  84. data/lib/rbbt/util/misc/pipes.rb +765 -793
  85. data/lib/rbbt/util/misc/refactor.rb +20 -0
  86. data/lib/rbbt/util/misc/ssw.rb +27 -17
  87. data/lib/rbbt/util/misc/system.rb +0 -15
  88. data/lib/rbbt/util/misc.rb +39 -20
  89. data/lib/rbbt/util/named_array/refactor.rb +4 -0
  90. data/lib/rbbt/util/named_array.rb +3 -220
  91. data/lib/rbbt/util/open/refactor.rb +7 -0
  92. data/lib/rbbt/util/open.rb +3 -857
  93. data/lib/rbbt/util/procpath.rb +6 -6
  94. data/lib/rbbt/util/python/paths.rb +27 -0
  95. data/lib/rbbt/util/python/run.rb +115 -0
  96. data/lib/rbbt/util/python/script.rb +110 -0
  97. data/lib/rbbt/util/python/util.rb +3 -3
  98. data/lib/rbbt/util/python.rb +22 -81
  99. data/lib/rbbt/util/semaphore.rb +152 -148
  100. data/lib/rbbt/util/simpleopt.rb +9 -8
  101. data/lib/rbbt/util/ssh/refactor.rb +19 -0
  102. data/lib/rbbt/util/ssh.rb +122 -118
  103. data/lib/rbbt/util/tar.rb +117 -115
  104. data/lib/rbbt/util/tmpfile.rb +69 -67
  105. data/lib/rbbt/util/version.rb +2 -0
  106. data/lib/rbbt/workflow/refactor/entity.rb +11 -0
  107. data/lib/rbbt/workflow/refactor/export.rb +66 -0
  108. data/lib/rbbt/workflow/refactor/inputs.rb +24 -0
  109. data/lib/rbbt/workflow/refactor/recursive.rb +64 -0
  110. data/lib/rbbt/workflow/refactor/task_info.rb +65 -0
  111. data/lib/rbbt/workflow/refactor.rb +153 -0
  112. data/lib/rbbt/workflow/remote_workflow/driver/ssh.rb +55 -32
  113. data/lib/rbbt/workflow/remote_workflow/remote_step/rest.rb +3 -1
  114. data/lib/rbbt/workflow/remote_workflow/remote_step/ssh.rb +14 -5
  115. data/lib/rbbt/workflow/remote_workflow/remote_step.rb +19 -7
  116. data/lib/rbbt/workflow/remote_workflow.rb +6 -1
  117. data/lib/rbbt/workflow/step/run.rb +766 -766
  118. data/lib/rbbt/workflow/step/save_load_inputs.rb +254 -254
  119. data/lib/rbbt/workflow/step.rb +2 -362
  120. data/lib/rbbt/workflow/task.rb +118 -118
  121. data/lib/rbbt/workflow/usage.rb +289 -287
  122. data/lib/rbbt/workflow/util/archive.rb +6 -5
  123. data/lib/rbbt/workflow/util/data.rb +1 -1
  124. data/lib/rbbt/workflow/util/orchestrator.rb +249 -246
  125. data/lib/rbbt/workflow/util/trace.rb +79 -44
  126. data/lib/rbbt/workflow.rb +4 -882
  127. data/lib/rbbt-util.rb +21 -13
  128. data/lib/rbbt.rb +16 -3
  129. data/python/rbbt/__init__.py +19 -1
  130. data/share/Rlib/plot.R +37 -37
  131. data/share/Rlib/svg.R +22 -5
  132. data/share/install/software/lib/install_helpers +1 -1
  133. data/share/rbbt_commands/hpc/list +2 -3
  134. data/share/rbbt_commands/hpc/orchestrate +4 -4
  135. data/share/rbbt_commands/hpc/tail +2 -0
  136. data/share/rbbt_commands/hpc/task +10 -7
  137. data/share/rbbt_commands/lsf/list +2 -3
  138. data/share/rbbt_commands/lsf/orchestrate +4 -4
  139. data/share/rbbt_commands/lsf/tail +2 -0
  140. data/share/rbbt_commands/lsf/task +10 -7
  141. data/share/rbbt_commands/migrate +1 -1
  142. data/share/rbbt_commands/pbs/list +2 -3
  143. data/share/rbbt_commands/pbs/orchestrate +4 -4
  144. data/share/rbbt_commands/pbs/tail +2 -0
  145. data/share/rbbt_commands/pbs/task +10 -7
  146. data/share/rbbt_commands/resource/produce +8 -1
  147. data/share/rbbt_commands/slurm/list +2 -3
  148. data/share/rbbt_commands/slurm/orchestrate +4 -4
  149. data/share/rbbt_commands/slurm/tail +2 -0
  150. data/share/rbbt_commands/slurm/task +10 -7
  151. data/share/rbbt_commands/system/clean +5 -5
  152. data/share/rbbt_commands/system/status +5 -5
  153. data/share/rbbt_commands/tsv/get +2 -3
  154. data/share/rbbt_commands/tsv/info +10 -13
  155. data/share/rbbt_commands/tsv/keys +18 -14
  156. data/share/rbbt_commands/tsv/slice +2 -2
  157. data/share/rbbt_commands/tsv/transpose +6 -2
  158. data/share/rbbt_commands/workflow/info +20 -24
  159. data/share/rbbt_commands/workflow/list +1 -1
  160. data/share/rbbt_commands/workflow/prov +20 -13
  161. data/share/rbbt_commands/workflow/server +11 -1
  162. data/share/rbbt_commands/workflow/task +76 -71
  163. data/share/rbbt_commands/workflow/write_info +26 -9
  164. data/share/software/opt/ssw/ssw.c +861 -0
  165. data/share/software/opt/ssw/ssw.h +130 -0
  166. data/share/workflow_config.ru +3 -3
  167. 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
@@ -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, true
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::SEARCH_PATHS.merge(:workflow => File.join(wf.libdir, '{TOPLEVEL}','{SUBPATH}'))
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.exists?(Rbbt.etc['target_workflow'].read.strip)
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: 5.44.1
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: 2024-12-10 00:00:00.000000000 Z
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