sushi_fabric 0.3.6 → 0.3.7
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 +7 -0
- data/lib/sushi_fabric/sushiApp.rb +2 -2
- data/lib/sushi_fabric/version.rb +1 -1
- metadata +13 -19
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: c8c102a0b68424fd2a48c68dadc125cb974cfee7
|
|
4
|
+
data.tar.gz: c00fc2d05a093b1b04dcd6f806a4df5a871dd8cb
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 5dff7114bd0db81ed8e7a0f766dc0228fdf5393787ff0a24a1ea14a2e829647a65de04604b6c86903a54b0ce91939ae8d548513de7eaa19c05c92717fc4cb5df
|
|
7
|
+
data.tar.gz: 14f3e79e04e5eb87e5340b3252753148a4ce585822e816b084e18f00d5b8ab0fa323cca05e7138055eea561520b870eeab7351f3027d914d8c8f04474ba942a9
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# encoding: utf-8
|
|
3
|
-
# Version = '
|
|
3
|
+
# Version = '20150402-160852'
|
|
4
4
|
|
|
5
5
|
require 'csv'
|
|
6
6
|
require 'fileutils'
|
|
@@ -620,8 +620,8 @@ rm -rf #{@scratch_dir} || exit 1
|
|
|
620
620
|
# end
|
|
621
621
|
end
|
|
622
622
|
def test_run
|
|
623
|
-
set_dir_paths
|
|
624
623
|
set_input_dataset
|
|
624
|
+
set_dir_paths
|
|
625
625
|
preprocess
|
|
626
626
|
set_output_files
|
|
627
627
|
set_user_parameters
|
data/lib/sushi_fabric/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,46 +1,41 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sushi_fabric
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.3.7
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Functional Genomics Center Zurich
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: bundler
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
|
-
- - ~>
|
|
17
|
+
- - "~>"
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
19
|
version: '1.3'
|
|
22
20
|
type: :development
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
|
-
- - ~>
|
|
24
|
+
- - "~>"
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
26
|
version: '1.3'
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: rake
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
|
-
- -
|
|
31
|
+
- - ">="
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
37
33
|
version: '0'
|
|
38
34
|
type: :development
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
|
-
- -
|
|
38
|
+
- - ">="
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
45
40
|
version: '0'
|
|
46
41
|
description: This library provides us with the methods to submit a job cooperating
|
|
@@ -52,17 +47,17 @@ executables:
|
|
|
52
47
|
extensions: []
|
|
53
48
|
extra_rdoc_files: []
|
|
54
49
|
files:
|
|
55
|
-
- .bzrignore
|
|
50
|
+
- ".bzrignore"
|
|
56
51
|
- Gemfile
|
|
57
52
|
- LICENSE.txt
|
|
58
53
|
- README.md
|
|
59
54
|
- Rakefile
|
|
60
55
|
- bin/sushi_fabric
|
|
61
56
|
- config/environments/development.rb
|
|
57
|
+
- lib/sushi_fabric.rb
|
|
62
58
|
- lib/sushi_fabric/optparse_ex.rb
|
|
63
59
|
- lib/sushi_fabric/sushiApp.rb
|
|
64
60
|
- lib/sushi_fabric/version.rb
|
|
65
|
-
- lib/sushi_fabric.rb
|
|
66
61
|
- sample/WordCountApp.rb
|
|
67
62
|
- sample/sample_dataset.tsv
|
|
68
63
|
- sample/sample_parameterset.tsv
|
|
@@ -70,26 +65,25 @@ files:
|
|
|
70
65
|
homepage: ''
|
|
71
66
|
licenses:
|
|
72
67
|
- MIT
|
|
68
|
+
metadata: {}
|
|
73
69
|
post_install_message:
|
|
74
70
|
rdoc_options: []
|
|
75
71
|
require_paths:
|
|
76
72
|
- lib
|
|
77
73
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
|
-
none: false
|
|
79
74
|
requirements:
|
|
80
|
-
- -
|
|
75
|
+
- - ">="
|
|
81
76
|
- !ruby/object:Gem::Version
|
|
82
77
|
version: '0'
|
|
83
78
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
|
-
none: false
|
|
85
79
|
requirements:
|
|
86
|
-
- -
|
|
80
|
+
- - ">="
|
|
87
81
|
- !ruby/object:Gem::Version
|
|
88
82
|
version: '0'
|
|
89
83
|
requirements: []
|
|
90
84
|
rubyforge_project:
|
|
91
|
-
rubygems_version:
|
|
85
|
+
rubygems_version: 2.4.5
|
|
92
86
|
signing_key:
|
|
93
|
-
specification_version:
|
|
87
|
+
specification_version: 4
|
|
94
88
|
summary: workflow manager client.
|
|
95
89
|
test_files: []
|