-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbio-blastxmlparser.gemspec
73 lines (68 loc) · 2.22 KB
/
bio-blastxmlparser.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "bio-blastxmlparser"
s.version = "2.0.4"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Pjotr Prins"]
s.date = "2015-05-07"
s.description = "Fast big data BLAST XML parser and library; this libxml2 based version is 50x faster than BioRuby and comes with a nice CLI"
s.email = "[email protected]"
s.executables = ["blastxmlparser"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
".document",
".rspec",
".travis.yml",
"Gemfile",
"LICENSE.txt",
"README.md",
"Rakefile",
"VERSION",
"bin/blastxmlparser",
"bio-blastxmlparser.gemspec",
"lib/bio-blastxmlparser.rb",
"lib/bio/db/blast/parser/nokogiri.rb",
"lib/bio/db/blast/xmliterator.rb",
"lib/bio/db/blast/xmlsplitter.rb",
"lib/bio/writers/rdf.rb",
"lib/bio/writers/template.rb",
"sample/bioruby.rb",
"sample/blastxmlparserdemo.rb",
"sample/libxml_sax.rb",
"sample/nokogiri_dom.rb",
"sample/nokogiri_sax.rb",
"sample/nokogiri_split_dom.rb",
"spec/bio-blastxmlparser_spec.rb",
"spec/spec_helper.rb",
"template/blast2json.erb",
"template/blast2json2.erb",
"template/blast2rdf-minimal.erb",
"template/blast2rdf.erb",
"test/data/aa_example.fasta",
"test/data/aa_example_blastp.m7",
"test/data/nt_example.fasta",
"test/data/nt_example_blastn.m7",
"timings.sh"
]
s.homepage = "http://github.com/pjotrp/blastxmlparser"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
s.summary = "Very fast parallel BLAST XML to RDF/HTML/JSON/YAML/csv transformer"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<bio-logger>, [">= 0"])
s.add_runtime_dependency(%q<nokogiri>, [">= 0"])
else
s.add_dependency(%q<bio-logger>, [">= 0"])
s.add_dependency(%q<nokogiri>, [">= 0"])
end
else
s.add_dependency(%q<bio-logger>, [">= 0"])
s.add_dependency(%q<nokogiri>, [">= 0"])
end
end