sushi_fabric 1.2.6 → 1.2.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 +4 -4
- data/lib/sushi_fabric/sushiApp.rb +6 -2
- 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: ca91b4760a0702f1033ca5d5a86027457f54efe902db6d2f5f487d18f8c426a4
|
|
4
|
+
data.tar.gz: c7fc11751f3c03bffb2ca5568fe218e7518f2dde19d4d836f53dd949af8e55a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6030fa3cc94828ecc93e67111a20cde20709c61231a6f59765c1046b752048e92dc9a2e64c5f40f93e4c62be1dc67dce293493dddd06484decc6a7a5a8420ea0
|
|
7
|
+
data.tar.gz: 3798ab29d3ae60b3a7d473edffbff6d1aa4dcf523523659bf7e1f1a016c1738336232e5a502787f95363b694fbc2b5f06e748a3596e884af8e41e7956ea6651b
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# encoding: utf-8
|
|
3
|
-
# Version = '20240806-
|
|
3
|
+
# Version = '20240806-113507'
|
|
4
4
|
|
|
5
5
|
require 'csv'
|
|
6
6
|
require 'fileutils'
|
|
@@ -711,7 +711,11 @@ rm -rf #{@scratch_dir} || exit 1
|
|
|
711
711
|
@out.close
|
|
712
712
|
end
|
|
713
713
|
def sample_mode
|
|
714
|
-
selected_samples =
|
|
714
|
+
selected_samples = unless @params['samples'].empty?
|
|
715
|
+
Hash[*@params['samples'].split(',').map{|sample_name| [sample_name, true]}.flatten]
|
|
716
|
+
else
|
|
717
|
+
Hash[*@dataset_hash.map{|row| row['Name']}.map{|sample_name| [sample_name, true]}.flatten]
|
|
718
|
+
end
|
|
715
719
|
@dataset_hash.each_with_index do |row, i|
|
|
716
720
|
@dataset = Hash[*row.map{|key,value| [key.gsub(/\[.+\]/,'').strip, value]}.flatten]
|
|
717
721
|
if selected_samples[@dataset['Name']]
|
data/lib/sushi_fabric/version.rb
CHANGED