BioDSL 1.0.0
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 +7 -0
- data/.gitignore +10 -0
- data/BioDSL.gemspec +64 -0
- data/LICENSE +339 -0
- data/README.md +205 -0
- data/Rakefile +94 -0
- data/examples/fastq_to_fasta.rb +8 -0
- data/lib/BioDSL/cary.rb +242 -0
- data/lib/BioDSL/command.rb +133 -0
- data/lib/BioDSL/commands/add_key.rb +110 -0
- data/lib/BioDSL/commands/align_seq_mothur.rb +194 -0
- data/lib/BioDSL/commands/analyze_residue_distribution.rb +222 -0
- data/lib/BioDSL/commands/assemble_pairs.rb +336 -0
- data/lib/BioDSL/commands/assemble_seq_idba.rb +230 -0
- data/lib/BioDSL/commands/assemble_seq_ray.rb +345 -0
- data/lib/BioDSL/commands/assemble_seq_spades.rb +252 -0
- data/lib/BioDSL/commands/classify_seq.rb +217 -0
- data/lib/BioDSL/commands/classify_seq_mothur.rb +226 -0
- data/lib/BioDSL/commands/clip_primer.rb +318 -0
- data/lib/BioDSL/commands/cluster_otus.rb +181 -0
- data/lib/BioDSL/commands/collapse_otus.rb +170 -0
- data/lib/BioDSL/commands/collect_otus.rb +150 -0
- data/lib/BioDSL/commands/complement_seq.rb +117 -0
- data/lib/BioDSL/commands/count.rb +135 -0
- data/lib/BioDSL/commands/count_values.rb +149 -0
- data/lib/BioDSL/commands/degap_seq.rb +253 -0
- data/lib/BioDSL/commands/dereplicate_seq.rb +168 -0
- data/lib/BioDSL/commands/dump.rb +157 -0
- data/lib/BioDSL/commands/filter_rrna.rb +239 -0
- data/lib/BioDSL/commands/genecall.rb +237 -0
- data/lib/BioDSL/commands/grab.rb +535 -0
- data/lib/BioDSL/commands/index_taxonomy.rb +226 -0
- data/lib/BioDSL/commands/mask_seq.rb +175 -0
- data/lib/BioDSL/commands/mean_scores.rb +168 -0
- data/lib/BioDSL/commands/merge_pair_seq.rb +175 -0
- data/lib/BioDSL/commands/merge_table.rb +225 -0
- data/lib/BioDSL/commands/merge_values.rb +113 -0
- data/lib/BioDSL/commands/plot_heatmap.rb +233 -0
- data/lib/BioDSL/commands/plot_histogram.rb +306 -0
- data/lib/BioDSL/commands/plot_matches.rb +282 -0
- data/lib/BioDSL/commands/plot_residue_distribution.rb +278 -0
- data/lib/BioDSL/commands/plot_scores.rb +285 -0
- data/lib/BioDSL/commands/random.rb +153 -0
- data/lib/BioDSL/commands/read_fasta.rb +222 -0
- data/lib/BioDSL/commands/read_fastq.rb +414 -0
- data/lib/BioDSL/commands/read_table.rb +329 -0
- data/lib/BioDSL/commands/reverse_seq.rb +113 -0
- data/lib/BioDSL/commands/slice_align.rb +400 -0
- data/lib/BioDSL/commands/slice_seq.rb +151 -0
- data/lib/BioDSL/commands/sort.rb +223 -0
- data/lib/BioDSL/commands/split_pair_seq.rb +220 -0
- data/lib/BioDSL/commands/split_values.rb +165 -0
- data/lib/BioDSL/commands/trim_primer.rb +314 -0
- data/lib/BioDSL/commands/trim_seq.rb +192 -0
- data/lib/BioDSL/commands/uchime_ref.rb +170 -0
- data/lib/BioDSL/commands/uclust.rb +286 -0
- data/lib/BioDSL/commands/unique_values.rb +145 -0
- data/lib/BioDSL/commands/usearch_global.rb +171 -0
- data/lib/BioDSL/commands/usearch_local.rb +171 -0
- data/lib/BioDSL/commands/write_fasta.rb +207 -0
- data/lib/BioDSL/commands/write_fastq.rb +191 -0
- data/lib/BioDSL/commands/write_table.rb +419 -0
- data/lib/BioDSL/commands/write_tree.rb +167 -0
- data/lib/BioDSL/commands.rb +31 -0
- data/lib/BioDSL/config.rb +55 -0
- data/lib/BioDSL/csv.rb +307 -0
- data/lib/BioDSL/debug.rb +42 -0
- data/lib/BioDSL/fasta.rb +133 -0
- data/lib/BioDSL/fastq.rb +77 -0
- data/lib/BioDSL/filesys.rb +137 -0
- data/lib/BioDSL/fork.rb +145 -0
- data/lib/BioDSL/hamming.rb +128 -0
- data/lib/BioDSL/helpers/aux_helper.rb +44 -0
- data/lib/BioDSL/helpers/email_helper.rb +66 -0
- data/lib/BioDSL/helpers/history_helper.rb +40 -0
- data/lib/BioDSL/helpers/log_helper.rb +55 -0
- data/lib/BioDSL/helpers/options_helper.rb +405 -0
- data/lib/BioDSL/helpers/status_helper.rb +132 -0
- data/lib/BioDSL/helpers.rb +35 -0
- data/lib/BioDSL/html_report.rb +200 -0
- data/lib/BioDSL/math.rb +55 -0
- data/lib/BioDSL/mummer.rb +216 -0
- data/lib/BioDSL/pipeline.rb +354 -0
- data/lib/BioDSL/seq/ambiguity.rb +66 -0
- data/lib/BioDSL/seq/assemble.rb +240 -0
- data/lib/BioDSL/seq/backtrack.rb +252 -0
- data/lib/BioDSL/seq/digest.rb +99 -0
- data/lib/BioDSL/seq/dynamic.rb +263 -0
- data/lib/BioDSL/seq/homopolymer.rb +59 -0
- data/lib/BioDSL/seq/kmer.rb +293 -0
- data/lib/BioDSL/seq/levenshtein.rb +113 -0
- data/lib/BioDSL/seq/translate.rb +109 -0
- data/lib/BioDSL/seq/trim.rb +188 -0
- data/lib/BioDSL/seq.rb +742 -0
- data/lib/BioDSL/serializer.rb +98 -0
- data/lib/BioDSL/stream.rb +113 -0
- data/lib/BioDSL/taxonomy.rb +691 -0
- data/lib/BioDSL/test.rb +42 -0
- data/lib/BioDSL/tmp_dir.rb +68 -0
- data/lib/BioDSL/usearch.rb +301 -0
- data/lib/BioDSL/verbose.rb +42 -0
- data/lib/BioDSL/version.rb +31 -0
- data/lib/BioDSL.rb +81 -0
- data/test/BioDSL/commands/test_add_key.rb +105 -0
- data/test/BioDSL/commands/test_align_seq_mothur.rb +99 -0
- data/test/BioDSL/commands/test_analyze_residue_distribution.rb +134 -0
- data/test/BioDSL/commands/test_assemble_pairs.rb +459 -0
- data/test/BioDSL/commands/test_assemble_seq_idba.rb +50 -0
- data/test/BioDSL/commands/test_assemble_seq_ray.rb +51 -0
- data/test/BioDSL/commands/test_assemble_seq_spades.rb +50 -0
- data/test/BioDSL/commands/test_classify_seq.rb +50 -0
- data/test/BioDSL/commands/test_classify_seq_mothur.rb +59 -0
- data/test/BioDSL/commands/test_clip_primer.rb +377 -0
- data/test/BioDSL/commands/test_cluster_otus.rb +128 -0
- data/test/BioDSL/commands/test_collapse_otus.rb +81 -0
- data/test/BioDSL/commands/test_collect_otus.rb +82 -0
- data/test/BioDSL/commands/test_complement_seq.rb +78 -0
- data/test/BioDSL/commands/test_count.rb +103 -0
- data/test/BioDSL/commands/test_count_values.rb +85 -0
- data/test/BioDSL/commands/test_degap_seq.rb +96 -0
- data/test/BioDSL/commands/test_dereplicate_seq.rb +92 -0
- data/test/BioDSL/commands/test_dump.rb +109 -0
- data/test/BioDSL/commands/test_filter_rrna.rb +128 -0
- data/test/BioDSL/commands/test_genecall.rb +50 -0
- data/test/BioDSL/commands/test_grab.rb +398 -0
- data/test/BioDSL/commands/test_index_taxonomy.rb +62 -0
- data/test/BioDSL/commands/test_mask_seq.rb +98 -0
- data/test/BioDSL/commands/test_mean_scores.rb +111 -0
- data/test/BioDSL/commands/test_merge_pair_seq.rb +115 -0
- data/test/BioDSL/commands/test_merge_table.rb +131 -0
- data/test/BioDSL/commands/test_merge_values.rb +83 -0
- data/test/BioDSL/commands/test_plot_heatmap.rb +185 -0
- data/test/BioDSL/commands/test_plot_histogram.rb +194 -0
- data/test/BioDSL/commands/test_plot_matches.rb +157 -0
- data/test/BioDSL/commands/test_plot_residue_distribution.rb +309 -0
- data/test/BioDSL/commands/test_plot_scores.rb +308 -0
- data/test/BioDSL/commands/test_random.rb +88 -0
- data/test/BioDSL/commands/test_read_fasta.rb +229 -0
- data/test/BioDSL/commands/test_read_fastq.rb +552 -0
- data/test/BioDSL/commands/test_read_table.rb +327 -0
- data/test/BioDSL/commands/test_reverse_seq.rb +79 -0
- data/test/BioDSL/commands/test_slice_align.rb +218 -0
- data/test/BioDSL/commands/test_slice_seq.rb +131 -0
- data/test/BioDSL/commands/test_sort.rb +128 -0
- data/test/BioDSL/commands/test_split_pair_seq.rb +164 -0
- data/test/BioDSL/commands/test_split_values.rb +95 -0
- data/test/BioDSL/commands/test_trim_primer.rb +329 -0
- data/test/BioDSL/commands/test_trim_seq.rb +150 -0
- data/test/BioDSL/commands/test_uchime_ref.rb +113 -0
- data/test/BioDSL/commands/test_uclust.rb +139 -0
- data/test/BioDSL/commands/test_unique_values.rb +98 -0
- data/test/BioDSL/commands/test_usearch_global.rb +123 -0
- data/test/BioDSL/commands/test_usearch_local.rb +125 -0
- data/test/BioDSL/commands/test_write_fasta.rb +159 -0
- data/test/BioDSL/commands/test_write_fastq.rb +166 -0
- data/test/BioDSL/commands/test_write_table.rb +411 -0
- data/test/BioDSL/commands/test_write_tree.rb +122 -0
- data/test/BioDSL/helpers/test_options_helper.rb +272 -0
- data/test/BioDSL/seq/test_assemble.rb +98 -0
- data/test/BioDSL/seq/test_backtrack.rb +176 -0
- data/test/BioDSL/seq/test_digest.rb +71 -0
- data/test/BioDSL/seq/test_dynamic.rb +133 -0
- data/test/BioDSL/seq/test_homopolymer.rb +58 -0
- data/test/BioDSL/seq/test_kmer.rb +134 -0
- data/test/BioDSL/seq/test_translate.rb +75 -0
- data/test/BioDSL/seq/test_trim.rb +101 -0
- data/test/BioDSL/test_cary.rb +176 -0
- data/test/BioDSL/test_command.rb +45 -0
- data/test/BioDSL/test_csv.rb +514 -0
- data/test/BioDSL/test_debug.rb +42 -0
- data/test/BioDSL/test_fasta.rb +154 -0
- data/test/BioDSL/test_fastq.rb +46 -0
- data/test/BioDSL/test_filesys.rb +145 -0
- data/test/BioDSL/test_fork.rb +85 -0
- data/test/BioDSL/test_math.rb +41 -0
- data/test/BioDSL/test_mummer.rb +79 -0
- data/test/BioDSL/test_pipeline.rb +187 -0
- data/test/BioDSL/test_seq.rb +790 -0
- data/test/BioDSL/test_serializer.rb +72 -0
- data/test/BioDSL/test_stream.rb +55 -0
- data/test/BioDSL/test_taxonomy.rb +336 -0
- data/test/BioDSL/test_test.rb +42 -0
- data/test/BioDSL/test_tmp_dir.rb +58 -0
- data/test/BioDSL/test_usearch.rb +33 -0
- data/test/BioDSL/test_verbose.rb +42 -0
- data/test/helper.rb +82 -0
- data/www/command.html.haml +14 -0
- data/www/css.html.haml +55 -0
- data/www/input_files.html.haml +3 -0
- data/www/layout.html.haml +12 -0
- data/www/output_files.html.haml +3 -0
- data/www/overview.html.haml +15 -0
- data/www/pipeline.html.haml +4 -0
- data/www/png.html.haml +2 -0
- data/www/status.html.haml +9 -0
- data/www/time.html.haml +11 -0
- metadata +503 -0
metadata
ADDED
|
@@ -0,0 +1,503 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: BioDSL
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Martin A. Hansen
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-09-30 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: haml
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 4.0.5
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 4.0.5
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: RubyInline
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 3.12.2
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 3.12.2
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: narray
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 0.6.0
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 0.6.0
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: mail
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 2.5.4
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 2.5.4
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: msgpack
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: 0.5.8
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 0.5.8
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: gnuplotter
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 1.0.2
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 1.0.2
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: parallel
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: 1.0.0
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: 1.0.0
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: pqueue
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - ">="
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: 2.0.2
|
|
118
|
+
type: :runtime
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - ">="
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: 2.0.2
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: terminal-table
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - ">="
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: 1.4.5
|
|
132
|
+
type: :runtime
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - ">="
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: 1.4.5
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: tilt
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - ">="
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: 2.0.1
|
|
146
|
+
type: :runtime
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - ">="
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: 2.0.1
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: bundler
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - ">="
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: 1.7.4
|
|
160
|
+
type: :development
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - ">="
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: 1.7.4
|
|
167
|
+
- !ruby/object:Gem::Dependency
|
|
168
|
+
name: simplecov
|
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
|
170
|
+
requirements:
|
|
171
|
+
- - ">="
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: 0.9.2
|
|
174
|
+
type: :development
|
|
175
|
+
prerelease: false
|
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
+
requirements:
|
|
178
|
+
- - ">="
|
|
179
|
+
- !ruby/object:Gem::Version
|
|
180
|
+
version: 0.9.2
|
|
181
|
+
- !ruby/object:Gem::Dependency
|
|
182
|
+
name: mocha
|
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
|
184
|
+
requirements:
|
|
185
|
+
- - ">="
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: 1.0.0
|
|
188
|
+
type: :development
|
|
189
|
+
prerelease: false
|
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
191
|
+
requirements:
|
|
192
|
+
- - ">="
|
|
193
|
+
- !ruby/object:Gem::Version
|
|
194
|
+
version: 1.0.0
|
|
195
|
+
description: BioDSL is a Bioinformatics Domain Specific Language.
|
|
196
|
+
email: mail@maasha.dk
|
|
197
|
+
executables: []
|
|
198
|
+
extensions: []
|
|
199
|
+
extra_rdoc_files: []
|
|
200
|
+
files:
|
|
201
|
+
- ".gitignore"
|
|
202
|
+
- BioDSL.gemspec
|
|
203
|
+
- LICENSE
|
|
204
|
+
- README.md
|
|
205
|
+
- Rakefile
|
|
206
|
+
- examples/fastq_to_fasta.rb
|
|
207
|
+
- lib/BioDSL.rb
|
|
208
|
+
- lib/BioDSL/cary.rb
|
|
209
|
+
- lib/BioDSL/command.rb
|
|
210
|
+
- lib/BioDSL/commands.rb
|
|
211
|
+
- lib/BioDSL/commands/add_key.rb
|
|
212
|
+
- lib/BioDSL/commands/align_seq_mothur.rb
|
|
213
|
+
- lib/BioDSL/commands/analyze_residue_distribution.rb
|
|
214
|
+
- lib/BioDSL/commands/assemble_pairs.rb
|
|
215
|
+
- lib/BioDSL/commands/assemble_seq_idba.rb
|
|
216
|
+
- lib/BioDSL/commands/assemble_seq_ray.rb
|
|
217
|
+
- lib/BioDSL/commands/assemble_seq_spades.rb
|
|
218
|
+
- lib/BioDSL/commands/classify_seq.rb
|
|
219
|
+
- lib/BioDSL/commands/classify_seq_mothur.rb
|
|
220
|
+
- lib/BioDSL/commands/clip_primer.rb
|
|
221
|
+
- lib/BioDSL/commands/cluster_otus.rb
|
|
222
|
+
- lib/BioDSL/commands/collapse_otus.rb
|
|
223
|
+
- lib/BioDSL/commands/collect_otus.rb
|
|
224
|
+
- lib/BioDSL/commands/complement_seq.rb
|
|
225
|
+
- lib/BioDSL/commands/count.rb
|
|
226
|
+
- lib/BioDSL/commands/count_values.rb
|
|
227
|
+
- lib/BioDSL/commands/degap_seq.rb
|
|
228
|
+
- lib/BioDSL/commands/dereplicate_seq.rb
|
|
229
|
+
- lib/BioDSL/commands/dump.rb
|
|
230
|
+
- lib/BioDSL/commands/filter_rrna.rb
|
|
231
|
+
- lib/BioDSL/commands/genecall.rb
|
|
232
|
+
- lib/BioDSL/commands/grab.rb
|
|
233
|
+
- lib/BioDSL/commands/index_taxonomy.rb
|
|
234
|
+
- lib/BioDSL/commands/mask_seq.rb
|
|
235
|
+
- lib/BioDSL/commands/mean_scores.rb
|
|
236
|
+
- lib/BioDSL/commands/merge_pair_seq.rb
|
|
237
|
+
- lib/BioDSL/commands/merge_table.rb
|
|
238
|
+
- lib/BioDSL/commands/merge_values.rb
|
|
239
|
+
- lib/BioDSL/commands/plot_heatmap.rb
|
|
240
|
+
- lib/BioDSL/commands/plot_histogram.rb
|
|
241
|
+
- lib/BioDSL/commands/plot_matches.rb
|
|
242
|
+
- lib/BioDSL/commands/plot_residue_distribution.rb
|
|
243
|
+
- lib/BioDSL/commands/plot_scores.rb
|
|
244
|
+
- lib/BioDSL/commands/random.rb
|
|
245
|
+
- lib/BioDSL/commands/read_fasta.rb
|
|
246
|
+
- lib/BioDSL/commands/read_fastq.rb
|
|
247
|
+
- lib/BioDSL/commands/read_table.rb
|
|
248
|
+
- lib/BioDSL/commands/reverse_seq.rb
|
|
249
|
+
- lib/BioDSL/commands/slice_align.rb
|
|
250
|
+
- lib/BioDSL/commands/slice_seq.rb
|
|
251
|
+
- lib/BioDSL/commands/sort.rb
|
|
252
|
+
- lib/BioDSL/commands/split_pair_seq.rb
|
|
253
|
+
- lib/BioDSL/commands/split_values.rb
|
|
254
|
+
- lib/BioDSL/commands/trim_primer.rb
|
|
255
|
+
- lib/BioDSL/commands/trim_seq.rb
|
|
256
|
+
- lib/BioDSL/commands/uchime_ref.rb
|
|
257
|
+
- lib/BioDSL/commands/uclust.rb
|
|
258
|
+
- lib/BioDSL/commands/unique_values.rb
|
|
259
|
+
- lib/BioDSL/commands/usearch_global.rb
|
|
260
|
+
- lib/BioDSL/commands/usearch_local.rb
|
|
261
|
+
- lib/BioDSL/commands/write_fasta.rb
|
|
262
|
+
- lib/BioDSL/commands/write_fastq.rb
|
|
263
|
+
- lib/BioDSL/commands/write_table.rb
|
|
264
|
+
- lib/BioDSL/commands/write_tree.rb
|
|
265
|
+
- lib/BioDSL/config.rb
|
|
266
|
+
- lib/BioDSL/csv.rb
|
|
267
|
+
- lib/BioDSL/debug.rb
|
|
268
|
+
- lib/BioDSL/fasta.rb
|
|
269
|
+
- lib/BioDSL/fastq.rb
|
|
270
|
+
- lib/BioDSL/filesys.rb
|
|
271
|
+
- lib/BioDSL/fork.rb
|
|
272
|
+
- lib/BioDSL/hamming.rb
|
|
273
|
+
- lib/BioDSL/helpers.rb
|
|
274
|
+
- lib/BioDSL/helpers/aux_helper.rb
|
|
275
|
+
- lib/BioDSL/helpers/email_helper.rb
|
|
276
|
+
- lib/BioDSL/helpers/history_helper.rb
|
|
277
|
+
- lib/BioDSL/helpers/log_helper.rb
|
|
278
|
+
- lib/BioDSL/helpers/options_helper.rb
|
|
279
|
+
- lib/BioDSL/helpers/status_helper.rb
|
|
280
|
+
- lib/BioDSL/html_report.rb
|
|
281
|
+
- lib/BioDSL/math.rb
|
|
282
|
+
- lib/BioDSL/mummer.rb
|
|
283
|
+
- lib/BioDSL/pipeline.rb
|
|
284
|
+
- lib/BioDSL/seq.rb
|
|
285
|
+
- lib/BioDSL/seq/ambiguity.rb
|
|
286
|
+
- lib/BioDSL/seq/assemble.rb
|
|
287
|
+
- lib/BioDSL/seq/backtrack.rb
|
|
288
|
+
- lib/BioDSL/seq/digest.rb
|
|
289
|
+
- lib/BioDSL/seq/dynamic.rb
|
|
290
|
+
- lib/BioDSL/seq/homopolymer.rb
|
|
291
|
+
- lib/BioDSL/seq/kmer.rb
|
|
292
|
+
- lib/BioDSL/seq/levenshtein.rb
|
|
293
|
+
- lib/BioDSL/seq/translate.rb
|
|
294
|
+
- lib/BioDSL/seq/trim.rb
|
|
295
|
+
- lib/BioDSL/serializer.rb
|
|
296
|
+
- lib/BioDSL/stream.rb
|
|
297
|
+
- lib/BioDSL/taxonomy.rb
|
|
298
|
+
- lib/BioDSL/test.rb
|
|
299
|
+
- lib/BioDSL/tmp_dir.rb
|
|
300
|
+
- lib/BioDSL/usearch.rb
|
|
301
|
+
- lib/BioDSL/verbose.rb
|
|
302
|
+
- lib/BioDSL/version.rb
|
|
303
|
+
- test/BioDSL/commands/test_add_key.rb
|
|
304
|
+
- test/BioDSL/commands/test_align_seq_mothur.rb
|
|
305
|
+
- test/BioDSL/commands/test_analyze_residue_distribution.rb
|
|
306
|
+
- test/BioDSL/commands/test_assemble_pairs.rb
|
|
307
|
+
- test/BioDSL/commands/test_assemble_seq_idba.rb
|
|
308
|
+
- test/BioDSL/commands/test_assemble_seq_ray.rb
|
|
309
|
+
- test/BioDSL/commands/test_assemble_seq_spades.rb
|
|
310
|
+
- test/BioDSL/commands/test_classify_seq.rb
|
|
311
|
+
- test/BioDSL/commands/test_classify_seq_mothur.rb
|
|
312
|
+
- test/BioDSL/commands/test_clip_primer.rb
|
|
313
|
+
- test/BioDSL/commands/test_cluster_otus.rb
|
|
314
|
+
- test/BioDSL/commands/test_collapse_otus.rb
|
|
315
|
+
- test/BioDSL/commands/test_collect_otus.rb
|
|
316
|
+
- test/BioDSL/commands/test_complement_seq.rb
|
|
317
|
+
- test/BioDSL/commands/test_count.rb
|
|
318
|
+
- test/BioDSL/commands/test_count_values.rb
|
|
319
|
+
- test/BioDSL/commands/test_degap_seq.rb
|
|
320
|
+
- test/BioDSL/commands/test_dereplicate_seq.rb
|
|
321
|
+
- test/BioDSL/commands/test_dump.rb
|
|
322
|
+
- test/BioDSL/commands/test_filter_rrna.rb
|
|
323
|
+
- test/BioDSL/commands/test_genecall.rb
|
|
324
|
+
- test/BioDSL/commands/test_grab.rb
|
|
325
|
+
- test/BioDSL/commands/test_index_taxonomy.rb
|
|
326
|
+
- test/BioDSL/commands/test_mask_seq.rb
|
|
327
|
+
- test/BioDSL/commands/test_mean_scores.rb
|
|
328
|
+
- test/BioDSL/commands/test_merge_pair_seq.rb
|
|
329
|
+
- test/BioDSL/commands/test_merge_table.rb
|
|
330
|
+
- test/BioDSL/commands/test_merge_values.rb
|
|
331
|
+
- test/BioDSL/commands/test_plot_heatmap.rb
|
|
332
|
+
- test/BioDSL/commands/test_plot_histogram.rb
|
|
333
|
+
- test/BioDSL/commands/test_plot_matches.rb
|
|
334
|
+
- test/BioDSL/commands/test_plot_residue_distribution.rb
|
|
335
|
+
- test/BioDSL/commands/test_plot_scores.rb
|
|
336
|
+
- test/BioDSL/commands/test_random.rb
|
|
337
|
+
- test/BioDSL/commands/test_read_fasta.rb
|
|
338
|
+
- test/BioDSL/commands/test_read_fastq.rb
|
|
339
|
+
- test/BioDSL/commands/test_read_table.rb
|
|
340
|
+
- test/BioDSL/commands/test_reverse_seq.rb
|
|
341
|
+
- test/BioDSL/commands/test_slice_align.rb
|
|
342
|
+
- test/BioDSL/commands/test_slice_seq.rb
|
|
343
|
+
- test/BioDSL/commands/test_sort.rb
|
|
344
|
+
- test/BioDSL/commands/test_split_pair_seq.rb
|
|
345
|
+
- test/BioDSL/commands/test_split_values.rb
|
|
346
|
+
- test/BioDSL/commands/test_trim_primer.rb
|
|
347
|
+
- test/BioDSL/commands/test_trim_seq.rb
|
|
348
|
+
- test/BioDSL/commands/test_uchime_ref.rb
|
|
349
|
+
- test/BioDSL/commands/test_uclust.rb
|
|
350
|
+
- test/BioDSL/commands/test_unique_values.rb
|
|
351
|
+
- test/BioDSL/commands/test_usearch_global.rb
|
|
352
|
+
- test/BioDSL/commands/test_usearch_local.rb
|
|
353
|
+
- test/BioDSL/commands/test_write_fasta.rb
|
|
354
|
+
- test/BioDSL/commands/test_write_fastq.rb
|
|
355
|
+
- test/BioDSL/commands/test_write_table.rb
|
|
356
|
+
- test/BioDSL/commands/test_write_tree.rb
|
|
357
|
+
- test/BioDSL/helpers/test_options_helper.rb
|
|
358
|
+
- test/BioDSL/seq/test_assemble.rb
|
|
359
|
+
- test/BioDSL/seq/test_backtrack.rb
|
|
360
|
+
- test/BioDSL/seq/test_digest.rb
|
|
361
|
+
- test/BioDSL/seq/test_dynamic.rb
|
|
362
|
+
- test/BioDSL/seq/test_homopolymer.rb
|
|
363
|
+
- test/BioDSL/seq/test_kmer.rb
|
|
364
|
+
- test/BioDSL/seq/test_translate.rb
|
|
365
|
+
- test/BioDSL/seq/test_trim.rb
|
|
366
|
+
- test/BioDSL/test_cary.rb
|
|
367
|
+
- test/BioDSL/test_command.rb
|
|
368
|
+
- test/BioDSL/test_csv.rb
|
|
369
|
+
- test/BioDSL/test_debug.rb
|
|
370
|
+
- test/BioDSL/test_fasta.rb
|
|
371
|
+
- test/BioDSL/test_fastq.rb
|
|
372
|
+
- test/BioDSL/test_filesys.rb
|
|
373
|
+
- test/BioDSL/test_fork.rb
|
|
374
|
+
- test/BioDSL/test_math.rb
|
|
375
|
+
- test/BioDSL/test_mummer.rb
|
|
376
|
+
- test/BioDSL/test_pipeline.rb
|
|
377
|
+
- test/BioDSL/test_seq.rb
|
|
378
|
+
- test/BioDSL/test_serializer.rb
|
|
379
|
+
- test/BioDSL/test_stream.rb
|
|
380
|
+
- test/BioDSL/test_taxonomy.rb
|
|
381
|
+
- test/BioDSL/test_test.rb
|
|
382
|
+
- test/BioDSL/test_tmp_dir.rb
|
|
383
|
+
- test/BioDSL/test_usearch.rb
|
|
384
|
+
- test/BioDSL/test_verbose.rb
|
|
385
|
+
- test/helper.rb
|
|
386
|
+
- www/command.html.haml
|
|
387
|
+
- www/css.html.haml
|
|
388
|
+
- www/input_files.html.haml
|
|
389
|
+
- www/layout.html.haml
|
|
390
|
+
- www/output_files.html.haml
|
|
391
|
+
- www/overview.html.haml
|
|
392
|
+
- www/pipeline.html.haml
|
|
393
|
+
- www/png.html.haml
|
|
394
|
+
- www/status.html.haml
|
|
395
|
+
- www/time.html.haml
|
|
396
|
+
homepage: http://www.github.com/maasha/BioDSL
|
|
397
|
+
licenses:
|
|
398
|
+
- GPL2
|
|
399
|
+
metadata: {}
|
|
400
|
+
post_install_message:
|
|
401
|
+
rdoc_options: []
|
|
402
|
+
require_paths:
|
|
403
|
+
- lib
|
|
404
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
405
|
+
requirements:
|
|
406
|
+
- - ">="
|
|
407
|
+
- !ruby/object:Gem::Version
|
|
408
|
+
version: '0'
|
|
409
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
410
|
+
requirements:
|
|
411
|
+
- - ">="
|
|
412
|
+
- !ruby/object:Gem::Version
|
|
413
|
+
version: '0'
|
|
414
|
+
requirements: []
|
|
415
|
+
rubyforge_project: BioDSL
|
|
416
|
+
rubygems_version: 2.4.5.1
|
|
417
|
+
signing_key:
|
|
418
|
+
specification_version: 4
|
|
419
|
+
summary: BioDSL
|
|
420
|
+
test_files:
|
|
421
|
+
- test/BioDSL/commands/test_add_key.rb
|
|
422
|
+
- test/BioDSL/commands/test_align_seq_mothur.rb
|
|
423
|
+
- test/BioDSL/commands/test_analyze_residue_distribution.rb
|
|
424
|
+
- test/BioDSL/commands/test_assemble_pairs.rb
|
|
425
|
+
- test/BioDSL/commands/test_assemble_seq_idba.rb
|
|
426
|
+
- test/BioDSL/commands/test_assemble_seq_ray.rb
|
|
427
|
+
- test/BioDSL/commands/test_assemble_seq_spades.rb
|
|
428
|
+
- test/BioDSL/commands/test_classify_seq.rb
|
|
429
|
+
- test/BioDSL/commands/test_classify_seq_mothur.rb
|
|
430
|
+
- test/BioDSL/commands/test_clip_primer.rb
|
|
431
|
+
- test/BioDSL/commands/test_cluster_otus.rb
|
|
432
|
+
- test/BioDSL/commands/test_collapse_otus.rb
|
|
433
|
+
- test/BioDSL/commands/test_collect_otus.rb
|
|
434
|
+
- test/BioDSL/commands/test_complement_seq.rb
|
|
435
|
+
- test/BioDSL/commands/test_count.rb
|
|
436
|
+
- test/BioDSL/commands/test_count_values.rb
|
|
437
|
+
- test/BioDSL/commands/test_degap_seq.rb
|
|
438
|
+
- test/BioDSL/commands/test_dereplicate_seq.rb
|
|
439
|
+
- test/BioDSL/commands/test_dump.rb
|
|
440
|
+
- test/BioDSL/commands/test_filter_rrna.rb
|
|
441
|
+
- test/BioDSL/commands/test_genecall.rb
|
|
442
|
+
- test/BioDSL/commands/test_grab.rb
|
|
443
|
+
- test/BioDSL/commands/test_index_taxonomy.rb
|
|
444
|
+
- test/BioDSL/commands/test_mask_seq.rb
|
|
445
|
+
- test/BioDSL/commands/test_mean_scores.rb
|
|
446
|
+
- test/BioDSL/commands/test_merge_pair_seq.rb
|
|
447
|
+
- test/BioDSL/commands/test_merge_table.rb
|
|
448
|
+
- test/BioDSL/commands/test_merge_values.rb
|
|
449
|
+
- test/BioDSL/commands/test_plot_heatmap.rb
|
|
450
|
+
- test/BioDSL/commands/test_plot_histogram.rb
|
|
451
|
+
- test/BioDSL/commands/test_plot_matches.rb
|
|
452
|
+
- test/BioDSL/commands/test_plot_residue_distribution.rb
|
|
453
|
+
- test/BioDSL/commands/test_plot_scores.rb
|
|
454
|
+
- test/BioDSL/commands/test_random.rb
|
|
455
|
+
- test/BioDSL/commands/test_read_fasta.rb
|
|
456
|
+
- test/BioDSL/commands/test_read_fastq.rb
|
|
457
|
+
- test/BioDSL/commands/test_read_table.rb
|
|
458
|
+
- test/BioDSL/commands/test_reverse_seq.rb
|
|
459
|
+
- test/BioDSL/commands/test_slice_align.rb
|
|
460
|
+
- test/BioDSL/commands/test_slice_seq.rb
|
|
461
|
+
- test/BioDSL/commands/test_sort.rb
|
|
462
|
+
- test/BioDSL/commands/test_split_pair_seq.rb
|
|
463
|
+
- test/BioDSL/commands/test_split_values.rb
|
|
464
|
+
- test/BioDSL/commands/test_trim_primer.rb
|
|
465
|
+
- test/BioDSL/commands/test_trim_seq.rb
|
|
466
|
+
- test/BioDSL/commands/test_uchime_ref.rb
|
|
467
|
+
- test/BioDSL/commands/test_uclust.rb
|
|
468
|
+
- test/BioDSL/commands/test_unique_values.rb
|
|
469
|
+
- test/BioDSL/commands/test_usearch_global.rb
|
|
470
|
+
- test/BioDSL/commands/test_usearch_local.rb
|
|
471
|
+
- test/BioDSL/commands/test_write_fasta.rb
|
|
472
|
+
- test/BioDSL/commands/test_write_fastq.rb
|
|
473
|
+
- test/BioDSL/commands/test_write_table.rb
|
|
474
|
+
- test/BioDSL/commands/test_write_tree.rb
|
|
475
|
+
- test/BioDSL/helpers/test_options_helper.rb
|
|
476
|
+
- test/BioDSL/seq/test_assemble.rb
|
|
477
|
+
- test/BioDSL/seq/test_backtrack.rb
|
|
478
|
+
- test/BioDSL/seq/test_digest.rb
|
|
479
|
+
- test/BioDSL/seq/test_dynamic.rb
|
|
480
|
+
- test/BioDSL/seq/test_homopolymer.rb
|
|
481
|
+
- test/BioDSL/seq/test_kmer.rb
|
|
482
|
+
- test/BioDSL/seq/test_translate.rb
|
|
483
|
+
- test/BioDSL/seq/test_trim.rb
|
|
484
|
+
- test/BioDSL/test_cary.rb
|
|
485
|
+
- test/BioDSL/test_command.rb
|
|
486
|
+
- test/BioDSL/test_csv.rb
|
|
487
|
+
- test/BioDSL/test_debug.rb
|
|
488
|
+
- test/BioDSL/test_fasta.rb
|
|
489
|
+
- test/BioDSL/test_fastq.rb
|
|
490
|
+
- test/BioDSL/test_filesys.rb
|
|
491
|
+
- test/BioDSL/test_fork.rb
|
|
492
|
+
- test/BioDSL/test_math.rb
|
|
493
|
+
- test/BioDSL/test_mummer.rb
|
|
494
|
+
- test/BioDSL/test_pipeline.rb
|
|
495
|
+
- test/BioDSL/test_seq.rb
|
|
496
|
+
- test/BioDSL/test_serializer.rb
|
|
497
|
+
- test/BioDSL/test_stream.rb
|
|
498
|
+
- test/BioDSL/test_taxonomy.rb
|
|
499
|
+
- test/BioDSL/test_test.rb
|
|
500
|
+
- test/BioDSL/test_tmp_dir.rb
|
|
501
|
+
- test/BioDSL/test_usearch.rb
|
|
502
|
+
- test/BioDSL/test_verbose.rb
|
|
503
|
+
- test/helper.rb
|