bio-pipengine 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/bio/pipengine.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d2869af147bec6a8aaf5072ecda70f70db62aa3
|
4
|
+
data.tar.gz: 09f5a3b2d09db2abd793486f5c3ddd48156cae19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e431f8421d5946a8a7c0b0ea049c7f95b2f83fc2c1bfbd57cfb45d06c714453917ba84f8746dc8541158c46834c6c6de565236fb9e4f69df1630eea60582af7
|
7
|
+
data.tar.gz: 2335be0113846f1c9f9ab4f66edba92c8a49e32cb3bc7e10f8e749293ab7245aaf10ba9aea1e334d887bb7d49a96e07f71743184273f50bcabab573fa2eda019
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.1
|
data/lib/bio/pipengine.rb
CHANGED
@@ -44,7 +44,7 @@ module Bio
|
|
44
44
|
|
45
45
|
unless run_multi # there are no multi-samples steps, so iterate on samples and create one job per sample
|
46
46
|
samples_list.each_key do |sample_name|
|
47
|
-
|
47
|
+
sample = Bio::Pipengine::Sample.new(sample_name.to_s,samples_list[sample_name],options[:group])
|
48
48
|
create_job(samples_file,pipeline,samples_list,options,sample)
|
49
49
|
end
|
50
50
|
end
|
@@ -170,10 +170,10 @@ module Bio
|
|
170
170
|
puts "\n"
|
171
171
|
end
|
172
172
|
|
173
|
-
# create the samples.yml file
|
173
|
+
# create the samples.yml file
|
174
174
|
def self.create_samples(dir)
|
175
175
|
File.open("samples.yml","w") do |file|
|
176
|
-
|
176
|
+
file.write "resources:\n\soutput: #{`pwd -L`}\n\nsamples:\n"
|
177
177
|
samples = Hash.new {|hash,key| hash[key] = []}
|
178
178
|
dir.each do |path|
|
179
179
|
projects = Dir.glob(path+"/*").sort.select {|folders| folders.split("/")[-1] =~/Project_/}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bio-pipengine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Francesco Strozzi
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-04-
|
12
|
+
date: 2016-04-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: trollop
|