lederhosen 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,7 +6,7 @@ module Lederhosen
6
6
  class CLI
7
7
 
8
8
  desc "add_names",
9
- "--blat=blat_output.txt --table=cluster_table.csv --level=taxonomic level (i.e 6 genus)"
9
+ "add names to otu abundance matrix using blat output and the out file"
10
10
 
11
11
  method_option :blat, :type => :string, :required => true
12
12
  method_option :table, :type => :string, :required => true
@@ -6,7 +6,7 @@ module Lederhosen
6
6
  class CLI
7
7
 
8
8
  desc "cluster",
9
- "--input=sorted.fasta --identity=0.80 --output=clusters.uc"
9
+ "cluster a fasta file using UCLUST"
10
10
 
11
11
  method_option :input, :type => :string, :required => true
12
12
  method_option :output, :type => :string, :required => true
@@ -27,4 +27,4 @@ module Lederhosen
27
27
  end
28
28
 
29
29
  end
30
- end
30
+ end
@@ -5,7 +5,7 @@ module Lederhosen
5
5
  # PAIRED-END READ WORK-AROUND (JOIN THEM)
6
6
  #
7
7
  desc "join",
8
- "--trimmed=trimmed/*.fasta --output=joined.fasta"
8
+ "join trimmed reads into a single file"
9
9
 
10
10
  method_option :trimmed, :type => :string, :required => true
11
11
  method_option :output, :type => :string, :required => true
@@ -39,4 +39,4 @@ module Lederhosen
39
39
  end
40
40
 
41
41
  end
42
- end
42
+ end
@@ -6,7 +6,7 @@ module Lederhosen
6
6
  class CLI
7
7
 
8
8
  desc "k_filter",
9
- "--input=joined.fasta --output=filtered.fasta --k=10 --cutoff=50"
9
+ "filter novel reads likely to form small/singleton clusters (experimental)"
10
10
 
11
11
  method_option :input, :type => :string, :required => true
12
12
  method_option :output, :type => :string, :required => true
@@ -76,4 +76,4 @@ module Lederhosen
76
76
  end
77
77
  end
78
78
 
79
- end
79
+ end
@@ -6,7 +6,7 @@ module Lederhosen
6
6
  class CLI
7
7
 
8
8
  desc "name",
9
- "--reps --reps=representative_reads.fasta --database taxcollector.fa --output blast_like_output.txt"
9
+ "identify representative reads in a TaxCollector database using BLAT"
10
10
 
11
11
  method_option :reps, :type => :string, :required => true
12
12
  method_option :database, :type => :string, :required => true
@@ -33,4 +33,4 @@ module Lederhosen
33
33
  end
34
34
 
35
35
  end
36
- end
36
+ end
@@ -8,7 +8,7 @@ module Lederhosen
8
8
  class CLI
9
9
 
10
10
  desc "otu_table",
11
- "--clusters=clusters.uc --output=otu_prefix"
11
+ "create an OTU abundance matrix from UCLUST output"
12
12
 
13
13
  method_option :clusters, :type => :string, :required => true
14
14
  method_option :output, :type => :string, :required => true
@@ -48,4 +48,4 @@ module Lederhosen
48
48
  end
49
49
 
50
50
  end
51
- end
51
+ end
@@ -6,7 +6,7 @@ module Lederhosen
6
6
  class CLI
7
7
 
8
8
  desc "rep_reads",
9
- "--clusters=clusters.uc --joined=joined.fasta --output=representative_reads.fasta"
9
+ "output a fasta file containing representative reads for each cluster given a UCLUST output file and the joined reads file"
10
10
 
11
11
  method_option :clusters, :type => :string, :required => true
12
12
  method_option :output, :type => :string, :required => true
@@ -41,4 +41,4 @@ module Lederhosen
41
41
  end
42
42
 
43
43
  end
44
- end
44
+ end
@@ -6,7 +6,7 @@ module Lederhosen
6
6
  class CLI
7
7
 
8
8
  desc "sort",
9
- "--input=joined.fasta --output=sorted.fasta"
9
+ "sort reads by length in descending order (pre-requisite for UCLUST)"
10
10
 
11
11
  method_option :input, :type => :string, :required => true
12
12
  method_option :output, :type => :string, :required => true
@@ -18,4 +18,4 @@ module Lederhosen
18
18
  end
19
19
 
20
20
  end
21
- end
21
+ end
@@ -6,7 +6,7 @@ module Lederhosen
6
6
  class CLI
7
7
 
8
8
  desc "split",
9
- "--clusters=clusters.uc --reads=joined.fasta --min-clst-size=1 --out-dir=output_directory"
9
+ "create fasta files containing reads from each cluster"
10
10
 
11
11
  method_option :clusters, :type => :string, :required => true
12
12
  method_option :reads, :type => :string, :required => true
@@ -78,4 +78,4 @@ module Lederhosen
78
78
  puts "done"
79
79
  end
80
80
  end
81
- end
81
+ end
@@ -6,7 +6,7 @@ module Lederhosen
6
6
  class CLI
7
7
 
8
8
  desc "trim",
9
- "--reads_dir=reads/* --out_dir=trimmed.fasta"
9
+ "trim reads based on quality scores"
10
10
 
11
11
  method_option :reads_dir, :type => :string, :required => true
12
12
  method_option :out_dir, :type => :string, :required => true
@@ -33,4 +33,4 @@ module Lederhosen
33
33
  pbar.finish
34
34
  end
35
35
  end
36
- end
36
+ end
@@ -6,7 +6,7 @@ module Lederhosen
6
6
  class CLI
7
7
 
8
8
  desc "uc_filter",
9
- "--input=clusters.uc --output=clusters.uc.filtered --reads=50 --samples=10"
9
+ "filter UCLUST output to remove small, infrequent clusters"
10
10
 
11
11
  method_option :input, :type => :string, :required => true
12
12
  method_option :output, :type => :string, :required => true
@@ -55,4 +55,4 @@ module Lederhosen
55
55
  end
56
56
  end
57
57
 
58
- end
58
+ end
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lederhosen
2
- VERSION = '0.1.4'
2
+ VERSION = '0.1.5'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lederhosen
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 4
10
- version: 0.1.4
9
+ - 5
10
+ version: 0.1.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Austin G. Davis-Richardson