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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/lib/bio/pipengine.rb +3 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 383594042b8a168b00d40d54e32c5a7a65b80d33
4
- data.tar.gz: 4fbe9029f9164019773464d76dce673a9a295cc6
3
+ metadata.gz: 4d2869af147bec6a8aaf5072ecda70f70db62aa3
4
+ data.tar.gz: 09f5a3b2d09db2abd793486f5c3ddd48156cae19
5
5
  SHA512:
6
- metadata.gz: d808b81a9533dfe6ce2d63df335480dacf73b0b11166abcd7984be75f72867f7a842a7b44fc630190da216ed3a57ac32cbdf9080bcf86cd242956b39a1dbbc77
7
- data.tar.gz: d0a27bf16ca3feac1f49c75ac7c9a8b06d08097178d32b9d05bd1a67eff6b549a18035ce3bbfa73e43f8ba8affb2a7a7c13ca9f43173a29567afb0b1e97fc259
6
+ metadata.gz: 1e431f8421d5946a8a7c0b0ea049c7f95b2f83fc2c1bfbd57cfb45d06c714453917ba84f8746dc8541158c46834c6c6de565236fb9e4f69df1630eea60582af7
7
+ data.tar.gz: 2335be0113846f1c9f9ab4f66edba92c8a49e32cb3bc7e10f8e749293ab7245aaf10ba9aea1e334d887bb7d49a96e07f71743184273f50bcabab573fa2eda019
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.0
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
- sample = Bio::Pipengine::Sample.new(sample_name,samples_list[sample_name],options[:group])
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 (CASAVA ONLY!)
173
+ # create the samples.yml file
174
174
  def self.create_samples(dir)
175
175
  File.open("samples.yml","w") do |file|
176
- file.write "resources:\n\soutput: #{FileUtils.pwd}\n\nsamples:\n"
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.0
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-14 00:00:00.000000000 Z
12
+ date: 2016-04-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: trollop