nugen_barcode_splitter 0.0.13 → 0.0.14
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.
data/bin/nugen_barcode_splitter
CHANGED
|
@@ -5,7 +5,7 @@ require "nugen_barcode_splitter"
|
|
|
5
5
|
require "fileutils"
|
|
6
6
|
|
|
7
7
|
usage =<<EOF
|
|
8
|
-
V E R S I O N - 0 . 0 .
|
|
8
|
+
V E R S I O N - 0 . 0 . 14 - BETA
|
|
9
9
|
#{$0} [options] -p project_dir -o out_dir -c sample_sheet_nugen
|
|
10
10
|
_____________________________________________________________________________
|
|
11
11
|
|
|
@@ -114,7 +114,6 @@ sample_sheet.create_barcode_txt("#{options[:out_dir]}/barcode")
|
|
|
114
114
|
multx_opts = "#{options[:keep_barcode]} #{options[:eol_only]} #{options[:bol_only]} #{options[:mismatches]}"
|
|
115
115
|
nugen_temp = NugenTemplate.new(options[:fastq_multx],multx_opts)
|
|
116
116
|
|
|
117
|
-
statistics = Statistics.new()
|
|
118
117
|
|
|
119
118
|
Dir.glob(options[:project_dir]+"/*").each do |p|
|
|
120
119
|
next unless File.directory? p
|
|
@@ -13,7 +13,7 @@ class NugenTemplate
|
|
|
13
13
|
#{fastq_multx} #{options} <%= @barcodes %> \\
|
|
14
14
|
<(gunzip -c <%= @read %>) \\
|
|
15
15
|
-o <%= @lane_dir %>/<%= @direction %>.%.fq \\
|
|
16
|
-
>> <%= @lane_dir %>/
|
|
16
|
+
>> <%= @lane_dir %>/nugen_demultiplexing_fastq_multx.log
|
|
17
17
|
EOF
|
|
18
18
|
end
|
|
19
19
|
|