bio-rocker 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ecb36031d65a56ae6a7e4144d7102f171d30bebcadfdf5a132622b3a743b901
4
- data.tar.gz: 5f8251402d40ddbba6097014e1f93a1bce0245e4cc2b3fac4a3d849c5a009c18
3
+ metadata.gz: e1d57ddce91458189a74b7d7f104b2b663396f0df6a2ab7077d4bea45028d982
4
+ data.tar.gz: 2625bbba04cec1435ae82518cdee6848d6c1fa3775e8030e6bcd6b754db54409
5
5
  SHA512:
6
- metadata.gz: 5eac28f2473d7b8357d127741c54aab97403872fe9ef3a2185268b049bb4eb32cc3ea0216f56d6d955de66ea7172962a81a76b90a3b229fbad631365c3eb0a40
7
- data.tar.gz: 8c23e1ad05edc88aa364b4f54ca594897cf971a98b3f98332a165d0a268b65985bba84eb020e509b3a5ae414099bcd79878d025ee2cb164f6c25d8e225ace685
6
+ metadata.gz: 5e7f492f6a9c48aebb3a263345567942e0021dc5027d5dafaeac415a10b66fe0670e709ad007e6d607fad9b32c0fb88d8f5b0e9df19b09ebbd92fdc2bf88e6bf
7
+ data.tar.gz: fb260962739d7b8c0e65629786154ff295c1a46b243a7502697cb497bf56f6390147731823a0c390c8e7855e4402c5ce4fdfa3a66ef86d044ed7ba08ed3b3ed0
data/bin/ROCker CHANGED
@@ -236,9 +236,8 @@ opts = OptionParser.new do |opt|
236
236
  opt.on("-x", "--query-blast PATH",
237
237
  "Unfiltered tabular BLAST. By default, this file is not " +
238
238
  "kept."){ |v| o[:qblast]=v }
239
- opt.on('-L', '--length-correction PATH',
240
- 'Path to the query reads, used to apply read-length correction to ' +
241
- 'bit scores.'){ |v| o[:lencorr] = v }
239
+ opt.on('-L', '--length-correction',
240
+ 'Apply read-length correction to bit scores.'){ |v| o[:lencorr] = v }
242
241
 
243
242
  opt.separator ""
244
243
  opt.separator "+ EXTERNAL SOFTWARE OPTIONS"
@@ -9,7 +9,7 @@ require "rocker/rocdata"
9
9
 
10
10
  class ROCker
11
11
  #================================[ Class ]
12
- @@VERSION = "1.3.0"
12
+ @@VERSION = "1.3.1"
13
13
  @@CITATION = [
14
14
  "Orellana, Rodriguez-R & Konstantinidis, 2016. DOI:10.1093/nar/gkw900.",
15
15
  "ROCker: accurate detection and quantification of target genes in",
@@ -15,6 +15,7 @@ class ROCker
15
15
  def search!
16
16
  raise "-k/--rocker is mandatory." if @o[:rocker].nil?
17
17
  raise "-i/--query is mandatory." if @o[:query].nil?
18
+ @o[:lencorr] = @o[:query] unless @o[:lencorr].nil?
18
19
 
19
20
  # Check requirements
20
21
  puts "Testing environment." unless @o[:q]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bio-rocker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luis (Coto) Orellana