unipept 0.2.5 → 0.2.6
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 +4 -4
- data/VERSION +1 -1
- data/bin/unipept +7 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0a1871129de9864d8a0f3d94f69801bf0c47818
|
4
|
+
data.tar.gz: bb4d0a48cedfa093a7f5db110f4aef1b95dd3875
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fc83d3c1cb5aad538c023bce61ad1a98aec39a8a1773dda7487fd68e9cd4f7d420cddcdaa9141649198a5a6e225b3886d30b8fee1b574da41a2e5e935b92a0c
|
7
|
+
data.tar.gz: 9b206f1e7b2e7cc9e1cac27192290e4961dae998425b1eb59acbf6c675994dbe48ca8757ece33198ec2de05bbc457c83b72033353abe68edf2ba8f279ef44b9c
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.6
|
data/bin/unipept
CHANGED
@@ -159,10 +159,10 @@ class Taxa2lca < ApiRunner
|
|
159
159
|
|
160
160
|
end
|
161
161
|
|
162
|
-
class
|
162
|
+
class Pept2prot < ApiRunner
|
163
163
|
|
164
164
|
def mapping
|
165
|
-
{"
|
165
|
+
{"pept2prot" => "pept2pro"}
|
166
166
|
end
|
167
167
|
|
168
168
|
def url_options(sub_part)
|
@@ -206,7 +206,7 @@ root_cmd.define_command('config') do
|
|
206
206
|
end
|
207
207
|
|
208
208
|
root_cmd.define_command('pept2taxa') do
|
209
|
-
usage '
|
209
|
+
usage 'pept2taxa [options]'
|
210
210
|
aliases :s
|
211
211
|
summary 'Single Peptide Search'
|
212
212
|
description 'Search Unipept for the given peptide and return taxons'
|
@@ -220,7 +220,7 @@ root_cmd.define_command('pept2taxa') do
|
|
220
220
|
end
|
221
221
|
|
222
222
|
root_cmd.define_command('pept2lca') do
|
223
|
-
usage '
|
223
|
+
usage 'pept2lca [options]'
|
224
224
|
aliases :l
|
225
225
|
summary 'Give lowest common ancestor for given peptide'
|
226
226
|
description 'Search Unipept for the given peptide and return the lowest common ancestor'
|
@@ -244,8 +244,8 @@ root_cmd.define_command('taxa2lca') do
|
|
244
244
|
runner Taxa2lca
|
245
245
|
end
|
246
246
|
|
247
|
-
root_cmd.define_command('
|
248
|
-
usage '
|
247
|
+
root_cmd.define_command('pept2prot') do
|
248
|
+
usage 'pept2prot [options]'
|
249
249
|
aliases :p
|
250
250
|
summary 'Give protein information for given peptides'
|
251
251
|
description 'Search Unipept for the given peptides and return the lowest common ancestor'
|
@@ -254,7 +254,7 @@ root_cmd.define_command('pept2pro') do
|
|
254
254
|
option :s, :select, "select the attributes", :argument => :required, :multiple => true
|
255
255
|
option :x, :xml, "download uniprot record in specified directory", :argument => :required
|
256
256
|
|
257
|
-
runner
|
257
|
+
runner Pept2prot
|
258
258
|
end
|
259
259
|
|
260
260
|
root_cmd.run(ARGV)
|