lederhosen 0.1.4 → 0.1.5
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/lib/lederhosen/tasks/add_names.rb +1 -1
- data/lib/lederhosen/tasks/cluster.rb +2 -2
- data/lib/lederhosen/tasks/join.rb +2 -2
- data/lib/lederhosen/tasks/k_filter.rb +2 -2
- data/lib/lederhosen/tasks/name.rb +2 -2
- data/lib/lederhosen/tasks/otu_table.rb +2 -2
- data/lib/lederhosen/tasks/rep_reads.rb +2 -2
- data/lib/lederhosen/tasks/sort.rb +2 -2
- data/lib/lederhosen/tasks/split.rb +2 -2
- data/lib/lederhosen/tasks/trim.rb +2 -2
- data/lib/lederhosen/tasks/uc_filter.rb +2 -2
- data/lib/version.rb +1 -1
- metadata +3 -3
@@ -6,7 +6,7 @@ module Lederhosen
|
|
6
6
|
class CLI
|
7
7
|
|
8
8
|
desc "add_names",
|
9
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
|
-
"
|
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
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:
|
4
|
+
hash: 17
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 5
|
10
|
+
version: 0.1.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Austin G. Davis-Richardson
|