sushi_fabric 0.9.9 → 1.0.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 +4 -4
- data/lib/sushi_fabric/sushiApp.rb +8 -1
- data/lib/sushi_fabric/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 795af5bedd1d25f2f6c41bcab16b699b015df28615ff1ef5a975f330ba8f7255
|
4
|
+
data.tar.gz: ebc667d556828450ae331a4e63ed07bde0b4871b97d18747bc71ff6e407f185a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ae60c4d4acef1444c9b1bfdb11f2dc6455add3414cfc63412603051d992c402c67037c45ff136b905ac2166100e36fa3f1e3c8d313cea80bc24c31a3b7f2577
|
7
|
+
data.tar.gz: 8a046912e3b798e662b9e1131d5a0151f36cbb83e4eb986c9827dff6e410e1910c2965d383daba7a1dc9a5798f08c566feb72bb3c812cbdcbf1f7fe9d4cf575d
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# encoding: utf-8
|
3
|
-
# Version = '20200724-
|
3
|
+
# Version = '20200724-120813'
|
4
4
|
|
5
5
|
require 'csv'
|
6
6
|
require 'fileutils'
|
@@ -448,6 +448,13 @@ cd $SCRATCH_DIR || exit 1
|
|
448
448
|
end
|
449
449
|
def job_footer
|
450
450
|
@out.print "#### JOB IS DONE WE PUT THINGS IN PLACE AND CLEAN AUP\n"
|
451
|
+
if File.exist?("/usr/local/ngseq/miniconda3/etc/profile.d/conda.sh")
|
452
|
+
@out.print <<-EOS
|
453
|
+
. "/usr/local/ngseq/miniconda3/etc/profile.d/conda.sh"
|
454
|
+
conda activate sushi
|
455
|
+
EOS
|
456
|
+
end
|
457
|
+
|
451
458
|
if @output_files
|
452
459
|
@output_files.map{|header| next_dataset[header]}.each do |file|
|
453
460
|
# in actual case, to save under /srv/gstore/
|
data/lib/sushi_fabric/version.rb
CHANGED