rbbt-util 5.6.15 → 5.6.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/rbbt +5 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24c17a9f2dd891d8f1921bfc2b0b2df3c32bffa1
|
4
|
+
data.tar.gz: 2fec2a54a9f0f343efd5baf1a400ce884cb25fe2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34feb9cc1d573271d7228a53683574eb036d4cb8f2067f5e9b316ba8b76243a45d0289788b47bbd497e58e3cd2fccbe1424444a3fbfea75312a6eb1cd56aa101
|
7
|
+
data.tar.gz: 2083c933319a679c82b25c00033423283d81f3bde77eff41d6162b3e8e6590c81762b31270ed390ce987e9654a356f6f9ba53d8212b61eebb70834862c93e2e2
|
data/bin/rbbt
CHANGED
@@ -4,16 +4,16 @@ require 'rbbt'
|
|
4
4
|
require 'rbbt/util/simpleopt'
|
5
5
|
|
6
6
|
options = SOPT.setup <<EOF
|
7
|
-
|
7
|
+
Ruby bioinformatics toolkit
|
8
8
|
|
9
9
|
$ rbbt <command> <subcommand> ... -a --arg1 --arg2='value' --arg3 'another-value'"
|
10
10
|
|
11
11
|
|
12
12
|
--log* #{Log.color :yellow, "Log level from 0 (debug) 6 (errors)"}
|
13
|
-
-cd--command_dir* #{Log.color :yellow, "Directory from where to load
|
13
|
+
-cd--command_dir* #{Log.color :yellow, "Directory from where to load command scripts"}
|
14
14
|
--profile #{Log.color :yellow, "Profile execution"}
|
15
15
|
--nocolor #{Log.color :yellow, "Disable colored output"}
|
16
|
-
--locate_file #{Log.color :yellow, "
|
16
|
+
--locate_file #{Log.color :yellow, "Report the location of the script instead of executing it"}
|
17
17
|
EOF
|
18
18
|
|
19
19
|
Log.nocolor = true if options[:nocolor]
|
@@ -30,6 +30,8 @@ else
|
|
30
30
|
end
|
31
31
|
|
32
32
|
SOPT.description =<<EOF
|
33
|
+
This command controls many aspects of the Rbbt framework, from configuration tasks to running applications.
|
34
|
+
|
33
35
|
Commands are implemented in separate files under the Rbbt path '#{$rbbt_command_dir}'.
|
34
36
|
Known locations are: #{([$rbbt_command_dir] + $rbbt_command_dir.find_all) * ", " }.
|
35
37
|
You can place your own commads at #{$rbbt_command_dir.find(:user)}.
|