sushi_fabric 0.5.9 → 0.6.0
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/README.md +19 -2
- data/lib/sushi_fabric/sushiApp.rb +2 -2
- data/lib/sushi_fabric/version.rb +1 -1
- metadata +51 -51
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 06c6576ae298fa353b6a918ff6eebee9219f1504
|
4
|
+
data.tar.gz: 17f3cd19091ea588353bb169da52b03ed6c2268a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bdae024ed9454f93b5b5a600d81c435bddf2acabe8eaf704a55b62ecee0228a31b9d70d7181e02c3c3e50d1e794b871c3686eb9f4ee151271c62d5f096274879
|
7
|
+
data.tar.gz: 14f415001c6aaa4ad16b82ebf116b5a3c62b92c238f7d03a7f6ba6427b81838d88d0c64c11d430905da4ecc148ae2a17beb17553c823e6d59094c14f14afd00f
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# SushiFabric
|
2
2
|
|
3
|
-
|
3
|
+
This library includes a core process called from [SUSHI](https://github.com/uzh/sushi). sushi_fabric command becomes available after installation. It requires [WorkflowManager](https://github.com/uzh/workflow_manager) to execute sushi_fabric command. SUSHI application must inherit the SushiFabric:SushiApp class and overwrite #next_dataset and #commands methods. Please refer to [SUSHI](https://github.com/uzh/sushi) for more details about how to make SUSHI application.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -18,7 +18,24 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
~~~~
|
22
|
+
$ sushi_fabric -h 16-05-10 15:37
|
23
|
+
Usage:
|
24
|
+
sushi_fabric --class [SushiApp class] [options]
|
25
|
+
(Either --dataset_id or --dataset_tsv is required)
|
26
|
+
-c, --class class_name SushiApp class name (required)
|
27
|
+
-i, --dataset_id dataset_id DataSet ID in Sushi DB
|
28
|
+
-d, --dataset dataset_tsv DataSet file (.tsv) (This option is prior to dataset_id option)
|
29
|
+
-s, --dataset_name dataset_name DataSet name in Sushi (This will be used with --dataset option, default: tsv file base name)
|
30
|
+
-m parameterset_tsv, Parameterset file (.tsv)
|
31
|
+
--parameterset
|
32
|
+
-r, --run Real run mode. without this option, it runs with test run mode which checks only DataSet and Parameters and no submittion
|
33
|
+
-p, --project project Project Number (default: 1001)
|
34
|
+
-u, --user user Submit user (default: sushi_lover)
|
35
|
+
-I, --load_path load_path Add path where SushiApp class is located (default: ./lib)
|
36
|
+
-n next_dataset_name, Next DataSet Name (default: Analysis_Category+ID+Date )
|
37
|
+
--next_dataset_name
|
38
|
+
~~~~
|
22
39
|
|
23
40
|
## Contributing
|
24
41
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# encoding: utf-8
|
3
|
-
# Version = '
|
3
|
+
# Version = '20160715-153019'
|
4
4
|
|
5
5
|
require 'csv'
|
6
6
|
require 'fileutils'
|
7
7
|
require 'yaml'
|
8
8
|
require 'drb/drb'
|
9
|
-
gem 'rails'
|
9
|
+
gem 'rails'
|
10
10
|
require 'rails/all'
|
11
11
|
|
12
12
|
module SushiFabric
|
data/lib/sushi_fabric/version.rb
CHANGED
metadata
CHANGED
@@ -1,51 +1,54 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: sushi_fabric
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
version: 0.5.9
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.6.0
|
6
5
|
platform: ruby
|
7
|
-
authors:
|
6
|
+
authors:
|
8
7
|
- Functional Genomics Center Zurich
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2016-07-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
16
14
|
name: bundler
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: "1.3"
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
24
20
|
type: :development
|
25
|
-
version_requirements: *id001
|
26
|
-
- !ruby/object:Gem::Dependency
|
27
|
-
name: rake
|
28
21
|
prerelease: false
|
29
|
-
|
30
|
-
|
31
|
-
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
32
31
|
- - ">="
|
33
|
-
- !ruby/object:Gem::Version
|
34
|
-
version:
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
35
34
|
type: :development
|
36
|
-
|
37
|
-
|
38
|
-
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: This library provides us with the methods to submit a job cooperating
|
42
|
+
with workflow manager.
|
43
|
+
email:
|
39
44
|
- masaomi.hatakeyama@fgcz.uzh.ch
|
40
|
-
executables:
|
45
|
+
executables:
|
41
46
|
- sushi_fabric
|
42
47
|
extensions: []
|
43
|
-
|
44
48
|
extra_rdoc_files: []
|
45
|
-
|
46
|
-
|
47
|
-
- .
|
48
|
-
- .rspec
|
49
|
+
files:
|
50
|
+
- ".gitignore"
|
51
|
+
- ".rspec"
|
49
52
|
- Gemfile
|
50
53
|
- LICENSE.txt
|
51
54
|
- README.md
|
@@ -62,33 +65,30 @@ files:
|
|
62
65
|
- spec/spec_helper.rb
|
63
66
|
- spec/sushi_app_spec.rb
|
64
67
|
- sushi_fabric.gemspec
|
65
|
-
homepage:
|
66
|
-
licenses:
|
68
|
+
homepage: ''
|
69
|
+
licenses:
|
67
70
|
- MIT
|
71
|
+
metadata: {}
|
68
72
|
post_install_message:
|
69
73
|
rdoc_options: []
|
70
|
-
|
71
|
-
require_paths:
|
74
|
+
require_paths:
|
72
75
|
- lib
|
73
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
-
|
75
|
-
requirements:
|
76
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
76
78
|
- - ">="
|
77
|
-
- !ruby/object:Gem::Version
|
78
|
-
version:
|
79
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
-
|
81
|
-
requirements:
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
82
83
|
- - ">="
|
83
|
-
- !ruby/object:Gem::Version
|
84
|
-
version:
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
85
86
|
requirements: []
|
86
|
-
|
87
87
|
rubyforge_project:
|
88
|
-
rubygems_version:
|
88
|
+
rubygems_version: 2.4.5.1
|
89
89
|
signing_key:
|
90
|
-
specification_version:
|
90
|
+
specification_version: 4
|
91
91
|
summary: workflow manager client.
|
92
|
-
test_files:
|
92
|
+
test_files:
|
93
93
|
- spec/spec_helper.rb
|
94
94
|
- spec/sushi_app_spec.rb
|