bio 1.3.1 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +2105 -3728
- data/KNOWN_ISSUES.rdoc +35 -3
- data/README.rdoc +8 -2
- data/RELEASE_NOTES.rdoc +166 -0
- data/bin/bioruby +4 -1
- data/bioruby.gemspec +146 -1
- data/bioruby.gemspec.erb +3 -1
- data/doc/ChangeLog-before-1.3.1 +3961 -0
- data/doc/Tutorial.rd +154 -22
- data/doc/Tutorial.rd.html +125 -68
- data/lib/bio.rb +21 -6
- data/lib/bio/appl/bl2seq/report.rb +11 -202
- data/lib/bio/appl/blast/format0.rb +0 -193
- data/lib/bio/appl/blast/report.rb +2 -147
- data/lib/bio/appl/blast/wublast.rb +0 -208
- data/lib/bio/appl/fasta.rb +4 -19
- data/lib/bio/appl/fasta/format10.rb +0 -14
- data/lib/bio/appl/genscan/report.rb +0 -176
- data/lib/bio/appl/hmmer.rb +1 -15
- data/lib/bio/appl/hmmer/report.rb +0 -100
- data/lib/bio/appl/meme/mast.rb +156 -0
- data/lib/bio/appl/meme/mast/report.rb +91 -0
- data/lib/bio/appl/meme/motif.rb +48 -0
- data/lib/bio/appl/psort.rb +0 -111
- data/lib/bio/appl/psort/report.rb +1 -45
- data/lib/bio/appl/pts1.rb +2 -4
- data/lib/bio/appl/sosui/report.rb +5 -54
- data/lib/bio/appl/targetp/report.rb +1 -104
- data/lib/bio/appl/tmhmm/report.rb +0 -36
- data/lib/bio/command.rb +94 -10
- data/lib/bio/data/aa.rb +1 -77
- data/lib/bio/data/codontable.rb +1 -95
- data/lib/bio/data/na.rb +1 -26
- data/lib/bio/db/aaindex.rb +1 -38
- data/lib/bio/db/fasta.rb +1 -134
- data/lib/bio/db/fasta/format_qual.rb +204 -0
- data/lib/bio/db/fasta/qual.rb +102 -0
- data/lib/bio/db/fastq.rb +645 -0
- data/lib/bio/db/fastq/fastq_to_biosequence.rb +40 -0
- data/lib/bio/db/fastq/format_fastq.rb +175 -0
- data/lib/bio/db/genbank/genbank.rb +1 -86
- data/lib/bio/db/gff.rb +0 -17
- data/lib/bio/db/go.rb +4 -72
- data/lib/bio/db/kegg/common.rb +112 -0
- data/lib/bio/db/kegg/compound.rb +29 -20
- data/lib/bio/db/kegg/drug.rb +74 -34
- data/lib/bio/db/kegg/enzyme.rb +26 -5
- data/lib/bio/db/kegg/genes.rb +128 -15
- data/lib/bio/db/kegg/genome.rb +3 -41
- data/lib/bio/db/kegg/glycan.rb +19 -24
- data/lib/bio/db/kegg/orthology.rb +16 -56
- data/lib/bio/db/kegg/reaction.rb +81 -28
- data/lib/bio/db/kegg/taxonomy.rb +1 -52
- data/lib/bio/db/litdb.rb +1 -16
- data/lib/bio/db/phyloxml/phyloxml.xsd +582 -0
- data/lib/bio/db/phyloxml/phyloxml_elements.rb +1174 -0
- data/lib/bio/db/phyloxml/phyloxml_parser.rb +954 -0
- data/lib/bio/db/phyloxml/phyloxml_writer.rb +228 -0
- data/lib/bio/db/prosite.rb +2 -95
- data/lib/bio/db/rebase.rb +5 -6
- data/lib/bio/db/sanger_chromatogram/abif.rb +120 -0
- data/lib/bio/db/sanger_chromatogram/chromatogram.rb +133 -0
- data/lib/bio/db/sanger_chromatogram/chromatogram_to_biosequence.rb +32 -0
- data/lib/bio/db/sanger_chromatogram/scf.rb +210 -0
- data/lib/bio/io/das.rb +0 -44
- data/lib/bio/io/ddbjxml.rb +1 -181
- data/lib/bio/io/flatfile.rb +1 -7
- data/lib/bio/io/flatfile/autodetection.rb +6 -0
- data/lib/bio/io/keggapi.rb +0 -442
- data/lib/bio/io/ncbirest.rb +130 -132
- data/lib/bio/io/ncbisoap.rb +2 -1
- data/lib/bio/io/pubmed.rb +0 -88
- data/lib/bio/location.rb +0 -73
- data/lib/bio/pathway.rb +0 -171
- data/lib/bio/sequence.rb +18 -1
- data/lib/bio/sequence/adapter.rb +3 -0
- data/lib/bio/sequence/format.rb +16 -0
- data/lib/bio/sequence/quality_score.rb +205 -0
- data/lib/bio/tree.rb +70 -5
- data/lib/bio/util/restriction_enzyme/single_strand.rb +3 -2
- data/lib/bio/util/sirna.rb +1 -23
- data/lib/bio/version.rb +1 -1
- data/sample/demo_aaindex.rb +67 -0
- data/sample/demo_aminoacid.rb +101 -0
- data/sample/demo_bl2seq_report.rb +220 -0
- data/sample/demo_blast_report.rb +285 -0
- data/sample/demo_codontable.rb +119 -0
- data/sample/demo_das.rb +105 -0
- data/sample/demo_ddbjxml.rb +212 -0
- data/sample/demo_fasta_remote.rb +51 -0
- data/sample/demo_fastaformat.rb +105 -0
- data/sample/demo_genbank.rb +132 -0
- data/sample/demo_genscan_report.rb +202 -0
- data/sample/demo_gff1.rb +49 -0
- data/sample/demo_go.rb +98 -0
- data/sample/demo_hmmer_report.rb +149 -0
- data/sample/demo_kegg_compound.rb +57 -0
- data/sample/demo_kegg_drug.rb +65 -0
- data/sample/demo_kegg_genome.rb +74 -0
- data/sample/demo_kegg_glycan.rb +72 -0
- data/sample/demo_kegg_orthology.rb +62 -0
- data/sample/demo_kegg_reaction.rb +66 -0
- data/sample/demo_kegg_taxonomy.rb +92 -0
- data/sample/demo_keggapi.rb +502 -0
- data/sample/demo_litdb.rb +42 -0
- data/sample/demo_locations.rb +99 -0
- data/sample/demo_ncbi_rest.rb +130 -0
- data/sample/demo_nucleicacid.rb +49 -0
- data/sample/demo_pathway.rb +196 -0
- data/sample/demo_prosite.rb +120 -0
- data/sample/demo_psort.rb +138 -0
- data/sample/demo_psort_report.rb +70 -0
- data/sample/demo_pubmed.rb +118 -0
- data/sample/demo_sirna.rb +63 -0
- data/sample/demo_sosui_report.rb +89 -0
- data/sample/demo_targetp_report.rb +135 -0
- data/sample/demo_tmhmm_report.rb +68 -0
- data/sample/pmfetch.rb +13 -4
- data/sample/pmsearch.rb +15 -4
- data/sample/test_phyloxml_big.rb +205 -0
- data/test/bioruby_test_helper.rb +61 -0
- data/test/data/KEGG/1.1.1.1.enzyme +935 -0
- data/test/data/KEGG/C00025.compound +102 -0
- data/test/data/KEGG/D00063.drug +104 -0
- data/test/data/KEGG/G00024.glycan +47 -0
- data/test/data/KEGG/G01366.glycan +18 -0
- data/test/data/KEGG/K02338.orthology +902 -0
- data/test/data/KEGG/R00006.reaction +14 -0
- data/test/data/fastq/README.txt +109 -0
- data/test/data/fastq/error_diff_ids.fastq +20 -0
- data/test/data/fastq/error_double_qual.fastq +22 -0
- data/test/data/fastq/error_double_seq.fastq +22 -0
- data/test/data/fastq/error_long_qual.fastq +20 -0
- data/test/data/fastq/error_no_qual.fastq +20 -0
- data/test/data/fastq/error_qual_del.fastq +20 -0
- data/test/data/fastq/error_qual_escape.fastq +20 -0
- data/test/data/fastq/error_qual_null.fastq +0 -0
- data/test/data/fastq/error_qual_space.fastq +21 -0
- data/test/data/fastq/error_qual_tab.fastq +21 -0
- data/test/data/fastq/error_qual_unit_sep.fastq +20 -0
- data/test/data/fastq/error_qual_vtab.fastq +20 -0
- data/test/data/fastq/error_short_qual.fastq +20 -0
- data/test/data/fastq/error_spaces.fastq +20 -0
- data/test/data/fastq/error_tabs.fastq +21 -0
- data/test/data/fastq/error_trunc_at_plus.fastq +19 -0
- data/test/data/fastq/error_trunc_at_qual.fastq +19 -0
- data/test/data/fastq/error_trunc_at_seq.fastq +18 -0
- data/test/data/fastq/error_trunc_in_plus.fastq +19 -0
- data/test/data/fastq/error_trunc_in_qual.fastq +20 -0
- data/test/data/fastq/error_trunc_in_seq.fastq +18 -0
- data/test/data/fastq/error_trunc_in_title.fastq +17 -0
- data/test/data/fastq/illumina_full_range_as_illumina.fastq +8 -0
- data/test/data/fastq/illumina_full_range_as_sanger.fastq +8 -0
- data/test/data/fastq/illumina_full_range_as_solexa.fastq +8 -0
- data/test/data/fastq/illumina_full_range_original_illumina.fastq +8 -0
- data/test/data/fastq/longreads_as_illumina.fastq +40 -0
- data/test/data/fastq/longreads_as_sanger.fastq +40 -0
- data/test/data/fastq/longreads_as_solexa.fastq +40 -0
- data/test/data/fastq/longreads_original_sanger.fastq +120 -0
- data/test/data/fastq/misc_dna_as_illumina.fastq +16 -0
- data/test/data/fastq/misc_dna_as_sanger.fastq +16 -0
- data/test/data/fastq/misc_dna_as_solexa.fastq +16 -0
- data/test/data/fastq/misc_dna_original_sanger.fastq +16 -0
- data/test/data/fastq/misc_rna_as_illumina.fastq +16 -0
- data/test/data/fastq/misc_rna_as_sanger.fastq +16 -0
- data/test/data/fastq/misc_rna_as_solexa.fastq +16 -0
- data/test/data/fastq/misc_rna_original_sanger.fastq +16 -0
- data/test/data/fastq/sanger_full_range_as_illumina.fastq +8 -0
- data/test/data/fastq/sanger_full_range_as_sanger.fastq +8 -0
- data/test/data/fastq/sanger_full_range_as_solexa.fastq +8 -0
- data/test/data/fastq/sanger_full_range_original_sanger.fastq +8 -0
- data/test/data/fastq/solexa_full_range_as_illumina.fastq +8 -0
- data/test/data/fastq/solexa_full_range_as_sanger.fastq +8 -0
- data/test/data/fastq/solexa_full_range_as_solexa.fastq +8 -0
- data/test/data/fastq/solexa_full_range_original_solexa.fastq +8 -0
- data/test/data/fastq/wrapping_as_illumina.fastq +12 -0
- data/test/data/fastq/wrapping_as_sanger.fastq +12 -0
- data/test/data/fastq/wrapping_as_solexa.fastq +12 -0
- data/test/data/fastq/wrapping_original_sanger.fastq +24 -0
- data/test/data/meme/db +0 -0
- data/test/data/meme/mast +0 -0
- data/test/data/meme/mast.out +13 -0
- data/test/data/meme/meme.out +3 -0
- data/test/data/phyloxml/apaf.xml +666 -0
- data/test/data/phyloxml/bcl_2.xml +2097 -0
- data/test/data/phyloxml/made_up.xml +144 -0
- data/test/data/phyloxml/ncbi_taxonomy_mollusca_short.xml +65 -0
- data/test/data/phyloxml/phyloxml_examples.xml +415 -0
- data/test/data/sanger_chromatogram/test_chromatogram_abif.ab1 +0 -0
- data/test/data/sanger_chromatogram/test_chromatogram_scf_v2.scf +0 -0
- data/test/data/sanger_chromatogram/test_chromatogram_scf_v3.scf +0 -0
- data/test/functional/bio/appl/test_pts1.rb +7 -5
- data/test/functional/bio/io/test_ensembl.rb +4 -3
- data/test/functional/bio/io/test_pubmed.rb +9 -3
- data/test/functional/bio/io/test_soapwsdl.rb +5 -4
- data/test/functional/bio/io/test_togows.rb +5 -4
- data/test/functional/bio/sequence/test_output_embl.rb +6 -4
- data/test/functional/bio/test_command.rb +54 -5
- data/test/runner.rb +5 -3
- data/test/unit/bio/appl/bl2seq/test_report.rb +5 -4
- data/test/unit/bio/appl/blast/test_ncbioptions.rb +4 -2
- data/test/unit/bio/appl/blast/test_report.rb +5 -4
- data/test/unit/bio/appl/blast/test_rpsblast.rb +5 -4
- data/test/unit/bio/appl/gcg/test_msf.rb +5 -5
- data/test/unit/bio/appl/genscan/test_report.rb +8 -9
- data/test/unit/bio/appl/hmmer/test_report.rb +5 -4
- data/test/unit/bio/appl/iprscan/test_report.rb +6 -5
- data/test/unit/bio/appl/mafft/test_report.rb +6 -5
- data/test/unit/bio/appl/meme/mast/test_report.rb +46 -0
- data/test/unit/bio/appl/meme/test_mast.rb +103 -0
- data/test/unit/bio/appl/meme/test_motif.rb +38 -0
- data/test/unit/bio/appl/paml/codeml/test_rates.rb +5 -4
- data/test/unit/bio/appl/paml/codeml/test_report.rb +5 -4
- data/test/unit/bio/appl/paml/test_codeml.rb +5 -4
- data/test/unit/bio/appl/sim4/test_report.rb +5 -4
- data/test/unit/bio/appl/sosui/test_report.rb +6 -5
- data/test/unit/bio/appl/targetp/test_report.rb +5 -3
- data/test/unit/bio/appl/test_blast.rb +5 -4
- data/test/unit/bio/appl/test_fasta.rb +4 -2
- data/test/unit/bio/appl/test_pts1.rb +4 -2
- data/test/unit/bio/appl/tmhmm/test_report.rb +6 -5
- data/test/unit/bio/data/test_aa.rb +5 -3
- data/test/unit/bio/data/test_codontable.rb +5 -4
- data/test/unit/bio/data/test_na.rb +5 -3
- data/test/unit/bio/db/biosql/tc_biosql.rb +5 -1
- data/test/unit/bio/db/embl/test_common.rb +4 -2
- data/test/unit/bio/db/embl/test_embl.rb +6 -6
- data/test/unit/bio/db/embl/test_embl_rel89.rb +6 -6
- data/test/unit/bio/db/embl/test_embl_to_bioseq.rb +7 -8
- data/test/unit/bio/db/embl/test_sptr.rb +6 -8
- data/test/unit/bio/db/embl/test_uniprot.rb +6 -5
- data/test/unit/bio/db/fasta/test_format_qual.rb +346 -0
- data/test/unit/bio/db/kegg/test_compound.rb +146 -0
- data/test/unit/bio/db/kegg/test_drug.rb +194 -0
- data/test/unit/bio/db/kegg/test_enzyme.rb +241 -0
- data/test/unit/bio/db/kegg/test_genes.rb +32 -4
- data/test/unit/bio/db/kegg/test_glycan.rb +260 -0
- data/test/unit/bio/db/kegg/test_orthology.rb +50 -0
- data/test/unit/bio/db/kegg/test_reaction.rb +96 -0
- data/test/unit/bio/db/pdb/test_pdb.rb +4 -2
- data/test/unit/bio/db/sanger_chromatogram/test_abif.rb +76 -0
- data/test/unit/bio/db/sanger_chromatogram/test_scf.rb +98 -0
- data/test/unit/bio/db/test_aaindex.rb +6 -6
- data/test/unit/bio/db/test_fasta.rb +5 -46
- data/test/unit/bio/db/test_fastq.rb +829 -0
- data/test/unit/bio/db/test_gff.rb +4 -2
- data/test/unit/bio/db/test_lasergene.rb +7 -5
- data/test/unit/bio/db/test_medline.rb +4 -2
- data/test/unit/bio/db/test_newick.rb +6 -6
- data/test/unit/bio/db/test_nexus.rb +4 -2
- data/test/unit/bio/db/test_phyloxml.rb +769 -0
- data/test/unit/bio/db/test_phyloxml_writer.rb +328 -0
- data/test/unit/bio/db/test_prosite.rb +6 -5
- data/test/unit/bio/db/test_qual.rb +63 -0
- data/test/unit/bio/db/test_rebase.rb +5 -3
- data/test/unit/bio/db/test_soft.rb +7 -6
- data/test/unit/bio/io/flatfile/test_autodetection.rb +6 -7
- data/test/unit/bio/io/flatfile/test_buffer.rb +6 -5
- data/test/unit/bio/io/flatfile/test_splitter.rb +4 -4
- data/test/unit/bio/io/test_ddbjxml.rb +4 -3
- data/test/unit/bio/io/test_ensembl.rb +5 -3
- data/test/unit/bio/io/test_fastacmd.rb +4 -3
- data/test/unit/bio/io/test_flatfile.rb +6 -5
- data/test/unit/bio/io/test_soapwsdl.rb +4 -3
- data/test/unit/bio/io/test_togows.rb +4 -2
- data/test/unit/bio/sequence/test_aa.rb +5 -3
- data/test/unit/bio/sequence/test_common.rb +4 -2
- data/test/unit/bio/sequence/test_compat.rb +4 -2
- data/test/unit/bio/sequence/test_dblink.rb +5 -3
- data/test/unit/bio/sequence/test_na.rb +4 -2
- data/test/unit/bio/sequence/test_quality_score.rb +330 -0
- data/test/unit/bio/shell/plugin/test_seq.rb +5 -3
- data/test/unit/bio/test_alignment.rb +5 -3
- data/test/unit/bio/test_command.rb +4 -3
- data/test/unit/bio/test_db.rb +5 -3
- data/test/unit/bio/test_feature.rb +4 -2
- data/test/unit/bio/test_location.rb +4 -2
- data/test/unit/bio/test_map.rb +5 -3
- data/test/unit/bio/test_pathway.rb +4 -2
- data/test/unit/bio/test_reference.rb +4 -2
- data/test/unit/bio/test_sequence.rb +5 -3
- data/test/unit/bio/test_shell.rb +5 -3
- data/test/unit/bio/test_tree.rb +6 -6
- data/test/unit/bio/util/restriction_enzyme/analysis/test_calculated_cuts.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/analysis/test_cut_ranges.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/analysis/test_sequence_range.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/test_analysis.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/test_cut_symbol.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/test_double_stranded.rb +4 -2
- data/test/unit/bio/util/restriction_enzyme/test_single_strand.rb +17 -13
- data/test/unit/bio/util/restriction_enzyme/test_single_strand_complement.rb +17 -13
- data/test/unit/bio/util/restriction_enzyme/test_string_formatting.rb +4 -2
- data/test/unit/bio/util/test_color_scheme.rb +5 -3
- data/test/unit/bio/util/test_contingency_table.rb +5 -3
- data/test/unit/bio/util/test_restriction_enzyme.rb +4 -2
- data/test/unit/bio/util/test_sirna.rb +6 -4
- metadata +147 -2
data/KNOWN_ISSUES.rdoc
CHANGED
@@ -4,8 +4,11 @@ License:: The Ruby License
|
|
4
4
|
|
5
5
|
= Known issues and bugs in BioRuby
|
6
6
|
|
7
|
-
Below are known issues and bugs in BioRuby.
|
8
|
-
|
7
|
+
Below are known issues and bugs in BioRuby. Pathes to fix them are welcomed.
|
8
|
+
We hope they will be fixed in the future.
|
9
|
+
|
10
|
+
Items marked with (WONT_FIX) tags would not be fixed within BioRuby because
|
11
|
+
they are not BioRuby's issues and/or it is very difficult to fix them.
|
9
12
|
|
10
13
|
== 1. Ruby version specific issues
|
11
14
|
|
@@ -17,7 +20,8 @@ results in Ruby 1.9.1, especially those not covered by the unit tests.
|
|
17
20
|
==== String encodings
|
18
21
|
|
19
22
|
Currently, BioRuby do not care string encodings. In some cases,
|
20
|
-
Encoding::CompatibilityError
|
23
|
+
Encoding::CompatibilityError or "ArgumentError: invalid byte sequence in
|
24
|
+
(encoding name)" may be raised.
|
21
25
|
|
22
26
|
=== Ruby 1.9.0
|
23
27
|
|
@@ -86,3 +90,31 @@ the latest Ensembl. For a workaround, use an archive server. For example,
|
|
86
90
|
Alternatively, consider using Ruby Ensembl API.
|
87
91
|
* http://github.com/jandot/ruby-ensembl-api
|
88
92
|
|
93
|
+
=== Bio::DBGET and sample/dbget
|
94
|
+
|
95
|
+
(WONT_FIX) Because the DBGET service have not been publically available for
|
96
|
+
a long time, we give up support for Bio::DBGET and sample/dbget. Instead,
|
97
|
+
using Bio::TogoWS or Bio::KEGG::API is recommended.
|
98
|
+
|
99
|
+
=== Bio::NCBI::SOAP
|
100
|
+
|
101
|
+
It seems that Bio::NCBI::SOAP (in lib/bio/io/ncbisoap.rb) does not work
|
102
|
+
correctly, even running on Ruby 1.8.x. Instead, use Bio::NCBI::REST.
|
103
|
+
|
104
|
+
=== Bio::KEGG::Taxonomy and sample/demo_kegg_taxonomy.rb
|
105
|
+
|
106
|
+
Bio::KEGG::Taxonomy fails to parse current KEGG taxonomy data file probably
|
107
|
+
because of the growth of the data size.
|
108
|
+
|
109
|
+
== 4. Compatibility issues with other libraries/extensions
|
110
|
+
|
111
|
+
=== ActiveRecord
|
112
|
+
|
113
|
+
BioSQL support uses ActiveRecord, but the author of the document does not
|
114
|
+
know which version is suitable.
|
115
|
+
|
116
|
+
=== Ruby on Rails
|
117
|
+
|
118
|
+
BioRuby Shell on Web uses Ruby on Rails, but the author of the document does
|
119
|
+
not know which version is suitable.
|
120
|
+
|
data/README.rdoc
CHANGED
@@ -40,6 +40,7 @@ services including KEGG API can be easily utilized by BioRuby.
|
|
40
40
|
==== General information
|
41
41
|
|
42
42
|
README.rdoc:: This file. General information and installation procedure.
|
43
|
+
RELEASE_NOTES.rdoc:: News and important changes in this release.
|
43
44
|
KNOWN_ISSUES.rdoc:: Known issues and bugs in BioRuby.
|
44
45
|
doc/Changes-1.3.rdoc:: News and incompatible changes from 1.2.1 to 1.3.0.
|
45
46
|
doc/Changes-0.7.rd:: News and incompatible changes from 0.6.4 to 1.2.1.
|
@@ -112,8 +113,8 @@ and could be obtained by the following procedure.
|
|
112
113
|
|
113
114
|
== REQUIREMENTS
|
114
115
|
|
115
|
-
* Ruby 1.8.2 or later -- http://www.ruby-lang.org/
|
116
|
-
* Ruby 1.8.
|
116
|
+
* Ruby 1.8.2 or later (except Ruby 1.9.0) -- http://www.ruby-lang.org/
|
117
|
+
* Ruby 1.8.7-p174 or later, or Ruby 1.8.6-p383 or later is recommended.
|
117
118
|
* Not yet fully ready with Ruby 1.9, although many components can now work
|
118
119
|
in Ruby 1.9.1.
|
119
120
|
|
@@ -145,6 +146,11 @@ Accessing BioSQL database created by other Open Bio* libraries:
|
|
145
146
|
{RubyForge:ruby-oci8}[http://ruby-oci8.rubyforge.org/]
|
146
147
|
(note that ruby-oci8 can only work with ruby-dbi 0.2.2).
|
147
148
|
|
149
|
+
For parsing PhyloXML format files:
|
150
|
+
|
151
|
+
* {RubyForge:libxml-ruby}[http://libxml.rubyforge.org/] (Ruby language
|
152
|
+
bindings for the {GNOME Libxml2 XML toolkit}[http://xmlsoft.org/])
|
153
|
+
|
148
154
|
|
149
155
|
== INSTALL
|
150
156
|
|
data/RELEASE_NOTES.rdoc
ADDED
@@ -0,0 +1,166 @@
|
|
1
|
+
= BioRuby 1.4.0 RELEASE NOTES
|
2
|
+
|
3
|
+
A lot of changes have been made to the BioRuby 1.4.0 after the version 1.3.1
|
4
|
+
is released. This document describes important and/or incompatible changes
|
5
|
+
since the BioRuby 1.3.1 release.
|
6
|
+
|
7
|
+
== New features
|
8
|
+
|
9
|
+
=== PhyloXML support
|
10
|
+
|
11
|
+
Support for reading and writing PhyloXML file format is added. New classes
|
12
|
+
Bio::PhyloXML::Parser and Bio::PhyloXML::Writer are used to read and write
|
13
|
+
a PhyloXML file, respectively.
|
14
|
+
|
15
|
+
The code is developed by Diana Jaunzeikare, mentored by Christian M Zmasek
|
16
|
+
and co-mentors, supported by Google Summer of Code 2009 in collaboration
|
17
|
+
with the National Evolutionary Synthesis Center (NESCent).
|
18
|
+
|
19
|
+
=== FASTQ file format support
|
20
|
+
|
21
|
+
Support for reading and writing FASTQ file format is added. All of the
|
22
|
+
three FASTQ format variants are supported.
|
23
|
+
|
24
|
+
To read a FASTQ file, Bio::FlatFile can be used. File format auto-detection
|
25
|
+
of the FASTQ format is supported (although the three format variants should
|
26
|
+
be specified later by users if quality scores are needed).
|
27
|
+
|
28
|
+
New class Bio::Fastq is the parser class for the FASTQ format. An object
|
29
|
+
of the Bio::Fastq class can be converted to a Bio::Sequence object with the
|
30
|
+
"to_biosequnece" method. Bio::Sequence#output now supports output of the
|
31
|
+
FASTQ format.
|
32
|
+
|
33
|
+
The code is written by Naohisa Goto, with the help of discussions in the
|
34
|
+
open-bio-l mailing list. The prototype of Bio::Fastq class was first
|
35
|
+
developed during the BioHackathon 2009 held in Okinawa.
|
36
|
+
|
37
|
+
=== DNA chromatogram support
|
38
|
+
|
39
|
+
Support for reading DNA chromatogram files are added. SCF and and ABIF file
|
40
|
+
formats are supported. The code is developed by Anthony Underwood.
|
41
|
+
|
42
|
+
=== MEME (motif-based sequence analysis tools) support
|
43
|
+
|
44
|
+
Support for running MAST (Motif Aliginment & Search Tool, part of the MEME
|
45
|
+
Suite, motif-based sequence analysis tools) and parsing its results are
|
46
|
+
added. The code is developed by Adam Kraut.
|
47
|
+
|
48
|
+
=== Improvement of KEGG parser classes
|
49
|
+
|
50
|
+
Some new methods are added to parse new fields added to some KEGG file
|
51
|
+
formats. Unit tests for KEGG parsers are also added and improved. In
|
52
|
+
addition, return value types of some methods are also changed for unifying
|
53
|
+
APIs among KEGG parser classes. See incompatible changes below for details.
|
54
|
+
|
55
|
+
=== Many sample scripts are added
|
56
|
+
|
57
|
+
Many sample scripts showing demonstrations of usages of classes are added.
|
58
|
+
They are moved from primitive test codes for the classes described in the
|
59
|
+
"if __FILE__ == $0" convention in the library files.
|
60
|
+
|
61
|
+
=== Unit tests can test installed BioRuby
|
62
|
+
|
63
|
+
Mechanism to load library and to find test data in the unit tests are changed,
|
64
|
+
and the library path and test data path can be specified with environment
|
65
|
+
variables. BIORUBY_TEST_LIB is the path to be added to the Ruby's $LOAD_PATH.
|
66
|
+
For example, to test BioRuby installed in
|
67
|
+
/usr/local/lib/site_ruby/1.8, run
|
68
|
+
env BIORUBY_TEST_LIB=/usr/local/lib/site_ruby/1.8 ruby test/runner.rb
|
69
|
+
|
70
|
+
BIORUBY_TEST_DATA is the path of the test data, and BIORUBY_TEST_DEBUG is a
|
71
|
+
flag to turn on debug of the tests.
|
72
|
+
|
73
|
+
== Deprecated features
|
74
|
+
|
75
|
+
=== ChangeLog is replaced by git log
|
76
|
+
|
77
|
+
ChangeLog is replaced by the output of git-log command, and ChangeLog before
|
78
|
+
the 1.3.1 release is moved to doc/ChangeLog-before-1.3.1.
|
79
|
+
|
80
|
+
=== "if __FILE__ == $0" convention
|
81
|
+
|
82
|
+
Primitive test codes in the "if __FILE__ == $0" convention are removed and
|
83
|
+
the codes are moved to the sample scripts named sample/demo_*.rb (except
|
84
|
+
some older or deprecated files).
|
85
|
+
|
86
|
+
== Incompatible changes
|
87
|
+
|
88
|
+
=== Bio::NCBI::REST
|
89
|
+
|
90
|
+
NCBI announces that all Entrez E-utility requests must contain email and
|
91
|
+
tool parameters, and requests without them will return error after June
|
92
|
+
2010.
|
93
|
+
|
94
|
+
To set default email address and tool name, following methods are added.
|
95
|
+
* Bio::NCBI.default_email=(email)
|
96
|
+
* Bio::NCBI.default_tool=(tool_name)
|
97
|
+
|
98
|
+
For every query, Bio::NCBI::REST checks the email and tool parameters and
|
99
|
+
raises error if they are empty.
|
100
|
+
|
101
|
+
IMPORTANT NOTE: No default email address is preset in BioRuby. Programmers
|
102
|
+
using BioRuby must set their own email address or implement to get user's
|
103
|
+
email address in some way (from input form, configuration file, etc).
|
104
|
+
|
105
|
+
Default tool name is set as "#{$0} (bioruby/#{Bio::BIORUBY_VERSION_ID})".
|
106
|
+
For example, if you run "ruby my_script.rb" with BioRuby 1.4.0, the value is
|
107
|
+
"my_script.rb (bioruby/1.4.0)".
|
108
|
+
|
109
|
+
=== Bio::KEGG
|
110
|
+
|
111
|
+
==== dblinks method
|
112
|
+
|
113
|
+
In Bio::KEGG::COMPOUND, DRUG, ENZYME, GLYCAN and ORTHOLOGY, the method
|
114
|
+
dblinks is changed to return a Hash. Each key of the hash is a database name
|
115
|
+
and its value is an array of entry IDs in the database. If old behavior
|
116
|
+
(returns raw entry lines as an array of strings) is needed, use
|
117
|
+
dblinks_as_strings.
|
118
|
+
|
119
|
+
==== pathways method
|
120
|
+
|
121
|
+
In Bio::KEGG::COMPOUND, DRUG, ENZYME, GENES, GLYCAN and REACTION, the
|
122
|
+
method pathways is changed to return a Hash. Each key of the hash is a
|
123
|
+
pathway ID and its value is the description of the pathway.
|
124
|
+
|
125
|
+
In Bio::KEGG::GENES, if old behavior (returns pathway IDs as an Array) is
|
126
|
+
needed, use pathways.keys.
|
127
|
+
|
128
|
+
In Bio::KEGG::COMPOUND, DRUG, ENZYME, GLYCAN, and REACTION, if old behavior
|
129
|
+
(returns raw entry lines as an array of strings) is needed, use
|
130
|
+
pathways_as_strings.
|
131
|
+
|
132
|
+
Note that Bio::KEGG::ORTHOLOGY#pathways is not changed (returns an array
|
133
|
+
containing pathway IDs).
|
134
|
+
|
135
|
+
==== orthologs method
|
136
|
+
|
137
|
+
In Bio::KEGG::ENZYME, GENES, GLYCAN and REACTION, the method orthologs is
|
138
|
+
changed to return a Hash. Each key of the hash is a ortholog ID and its
|
139
|
+
value is the name of the ortholog. If old behavior (returns raw entry lines
|
140
|
+
as an array of strings) is needed, use orthologs_as_strings.
|
141
|
+
|
142
|
+
==== genes method
|
143
|
+
|
144
|
+
In Bio::KEGG::ENZYME#genes and Bio::KEGG::ORTHOLOGY#genes is changed to
|
145
|
+
return a Hash that is the same as Bio::KEGG::ORTHOLOGY#genes_as_hash.
|
146
|
+
If old behavior (returns raw entry lines as an array of strings) is needed,
|
147
|
+
use genes_as_strings.
|
148
|
+
|
149
|
+
==== Bio::KEGG:REACTION#rpairs
|
150
|
+
|
151
|
+
Bio::KEGG::REACTION#rpairs is changed to return a Hash. Each key of the
|
152
|
+
hash is a KEGG Rpair ID and its value is an array containing name and type.
|
153
|
+
If old behavior (returns as tokens) is needed, use rpairs_as_tokens.
|
154
|
+
|
155
|
+
==== Bio::KEGG::ORTHOLOGY
|
156
|
+
|
157
|
+
Bio::KEGG:ORTHOLOGY#dblinks_as_hash does not lower-case database names.
|
158
|
+
|
159
|
+
=== Bio::RestrictionEnzyme
|
160
|
+
|
161
|
+
Format validation when creating an object is turned off because of efficiency.
|
162
|
+
|
163
|
+
== Known problems
|
164
|
+
|
165
|
+
See KNOWN_ISSUES.rdoc for details.
|
166
|
+
|
data/bin/bioruby
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
# Toshiaki Katayama <k@bioruby.org>
|
7
7
|
# License:: The Ruby License
|
8
8
|
#
|
9
|
-
# $Id
|
9
|
+
# $Id:$
|
10
10
|
#
|
11
11
|
|
12
12
|
begin
|
@@ -26,6 +26,9 @@ Bio::Shell::Setup.new
|
|
26
26
|
# loading workspace and command history
|
27
27
|
Bio::Shell.load_session
|
28
28
|
|
29
|
+
# sets default email address for Entrez eUtils.
|
30
|
+
Bio::NCBI.default_email ||= 'staff@bioruby.org'
|
31
|
+
|
29
32
|
# main loop
|
30
33
|
if Bio::Shell.cache[:rails]
|
31
34
|
Bio::Shell.cache[:rails].join
|
data/bioruby.gemspec
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
#
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'bio'
|
6
|
-
s.version = "1.
|
6
|
+
s.version = "1.4.0"
|
7
7
|
|
8
8
|
s.author = "BioRuby project"
|
9
9
|
s.email = "staff@bioruby.org"
|
@@ -23,6 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
"LGPL",
|
24
24
|
"README.rdoc",
|
25
25
|
"README_DEV.rdoc",
|
26
|
+
"RELEASE_NOTES.rdoc",
|
26
27
|
"Rakefile",
|
27
28
|
"bin/bioruby",
|
28
29
|
"bin/br_biofetch.rb",
|
@@ -31,6 +32,7 @@ Gem::Specification.new do |s|
|
|
31
32
|
"bin/br_pmfetch.rb",
|
32
33
|
"bioruby.gemspec",
|
33
34
|
"bioruby.gemspec.erb",
|
35
|
+
"doc/ChangeLog-before-1.3.1",
|
34
36
|
"doc/Changes-0.7.rd",
|
35
37
|
"doc/Changes-1.3.rdoc",
|
36
38
|
"doc/KEGG_API.rd",
|
@@ -71,6 +73,9 @@ Gem::Specification.new do |s|
|
|
71
73
|
"lib/bio/appl/iprscan/report.rb",
|
72
74
|
"lib/bio/appl/mafft.rb",
|
73
75
|
"lib/bio/appl/mafft/report.rb",
|
76
|
+
"lib/bio/appl/meme/mast.rb",
|
77
|
+
"lib/bio/appl/meme/mast/report.rb",
|
78
|
+
"lib/bio/appl/meme/motif.rb",
|
74
79
|
"lib/bio/appl/muscle.rb",
|
75
80
|
"lib/bio/appl/paml/baseml.rb",
|
76
81
|
"lib/bio/appl/paml/baseml/report.rb",
|
@@ -117,6 +122,11 @@ Gem::Specification.new do |s|
|
|
117
122
|
"lib/bio/db/fasta/defline.rb",
|
118
123
|
"lib/bio/db/fasta/fasta_to_biosequence.rb",
|
119
124
|
"lib/bio/db/fasta/format_fasta.rb",
|
125
|
+
"lib/bio/db/fasta/format_qual.rb",
|
126
|
+
"lib/bio/db/fasta/qual.rb",
|
127
|
+
"lib/bio/db/fastq.rb",
|
128
|
+
"lib/bio/db/fastq/fastq_to_biosequence.rb",
|
129
|
+
"lib/bio/db/fastq/format_fastq.rb",
|
120
130
|
"lib/bio/db/genbank/common.rb",
|
121
131
|
"lib/bio/db/genbank/ddbj.rb",
|
122
132
|
"lib/bio/db/genbank/format_genbank.rb",
|
@@ -127,6 +137,7 @@ Gem::Specification.new do |s|
|
|
127
137
|
"lib/bio/db/gff.rb",
|
128
138
|
"lib/bio/db/go.rb",
|
129
139
|
"lib/bio/db/kegg/brite.rb",
|
140
|
+
"lib/bio/db/kegg/common.rb",
|
130
141
|
"lib/bio/db/kegg/compound.rb",
|
131
142
|
"lib/bio/db/kegg/drug.rb",
|
132
143
|
"lib/bio/db/kegg/enzyme.rb",
|
@@ -153,8 +164,16 @@ Gem::Specification.new do |s|
|
|
153
164
|
"lib/bio/db/pdb/pdb.rb",
|
154
165
|
"lib/bio/db/pdb/residue.rb",
|
155
166
|
"lib/bio/db/pdb/utils.rb",
|
167
|
+
"lib/bio/db/phyloxml/phyloxml.xsd",
|
168
|
+
"lib/bio/db/phyloxml/phyloxml_elements.rb",
|
169
|
+
"lib/bio/db/phyloxml/phyloxml_parser.rb",
|
170
|
+
"lib/bio/db/phyloxml/phyloxml_writer.rb",
|
156
171
|
"lib/bio/db/prosite.rb",
|
157
172
|
"lib/bio/db/rebase.rb",
|
173
|
+
"lib/bio/db/sanger_chromatogram/abif.rb",
|
174
|
+
"lib/bio/db/sanger_chromatogram/chromatogram.rb",
|
175
|
+
"lib/bio/db/sanger_chromatogram/chromatogram_to_biosequence.rb",
|
176
|
+
"lib/bio/db/sanger_chromatogram/scf.rb",
|
158
177
|
"lib/bio/db/soft.rb",
|
159
178
|
"lib/bio/db/transfac.rb",
|
160
179
|
"lib/bio/feature.rb",
|
@@ -199,6 +218,7 @@ Gem::Specification.new do |s|
|
|
199
218
|
"lib/bio/sequence/format_raw.rb",
|
200
219
|
"lib/bio/sequence/generic.rb",
|
201
220
|
"lib/bio/sequence/na.rb",
|
221
|
+
"lib/bio/sequence/quality_score.rb",
|
202
222
|
"lib/bio/shell.rb",
|
203
223
|
"lib/bio/shell/core.rb",
|
204
224
|
"lib/bio/shell/demo.rb",
|
@@ -280,7 +300,42 @@ Gem::Specification.new do |s|
|
|
280
300
|
"sample/biofetch.rb",
|
281
301
|
"sample/color_scheme_na.rb",
|
282
302
|
"sample/dbget",
|
303
|
+
"sample/demo_aaindex.rb",
|
304
|
+
"sample/demo_aminoacid.rb",
|
305
|
+
"sample/demo_bl2seq_report.rb",
|
306
|
+
"sample/demo_blast_report.rb",
|
307
|
+
"sample/demo_codontable.rb",
|
308
|
+
"sample/demo_das.rb",
|
309
|
+
"sample/demo_ddbjxml.rb",
|
310
|
+
"sample/demo_fasta_remote.rb",
|
311
|
+
"sample/demo_fastaformat.rb",
|
312
|
+
"sample/demo_genbank.rb",
|
313
|
+
"sample/demo_genscan_report.rb",
|
314
|
+
"sample/demo_gff1.rb",
|
315
|
+
"sample/demo_go.rb",
|
316
|
+
"sample/demo_hmmer_report.rb",
|
317
|
+
"sample/demo_kegg_compound.rb",
|
318
|
+
"sample/demo_kegg_drug.rb",
|
319
|
+
"sample/demo_kegg_genome.rb",
|
320
|
+
"sample/demo_kegg_glycan.rb",
|
321
|
+
"sample/demo_kegg_orthology.rb",
|
322
|
+
"sample/demo_kegg_reaction.rb",
|
323
|
+
"sample/demo_kegg_taxonomy.rb",
|
324
|
+
"sample/demo_keggapi.rb",
|
325
|
+
"sample/demo_litdb.rb",
|
326
|
+
"sample/demo_locations.rb",
|
327
|
+
"sample/demo_ncbi_rest.rb",
|
328
|
+
"sample/demo_nucleicacid.rb",
|
329
|
+
"sample/demo_pathway.rb",
|
330
|
+
"sample/demo_prosite.rb",
|
331
|
+
"sample/demo_psort.rb",
|
332
|
+
"sample/demo_psort_report.rb",
|
333
|
+
"sample/demo_pubmed.rb",
|
283
334
|
"sample/demo_sequence.rb",
|
335
|
+
"sample/demo_sirna.rb",
|
336
|
+
"sample/demo_sosui_report.rb",
|
337
|
+
"sample/demo_targetp_report.rb",
|
338
|
+
"sample/demo_tmhmm_report.rb",
|
284
339
|
"sample/enzymes.rb",
|
285
340
|
"sample/fasta2tab.rb",
|
286
341
|
"sample/fastagrep.rb",
|
@@ -302,11 +357,20 @@ Gem::Specification.new do |s|
|
|
302
357
|
"sample/psortplot_html.rb",
|
303
358
|
"sample/ssearch2tab.rb",
|
304
359
|
"sample/tdiary.rb",
|
360
|
+
"sample/test_phyloxml_big.rb",
|
305
361
|
"sample/tfastx2tab.rb",
|
306
362
|
"sample/vs-genes.rb",
|
307
363
|
"setup.rb",
|
364
|
+
"test/bioruby_test_helper.rb",
|
308
365
|
"test/data/HMMER/hmmpfam.out",
|
309
366
|
"test/data/HMMER/hmmsearch.out",
|
367
|
+
"test/data/KEGG/1.1.1.1.enzyme",
|
368
|
+
"test/data/KEGG/C00025.compound",
|
369
|
+
"test/data/KEGG/D00063.drug",
|
370
|
+
"test/data/KEGG/G00024.glycan",
|
371
|
+
"test/data/KEGG/G01366.glycan",
|
372
|
+
"test/data/KEGG/K02338.orthology",
|
373
|
+
"test/data/KEGG/R00006.reaction",
|
310
374
|
"test/data/SOSUI/sample.report",
|
311
375
|
"test/data/TMHMM/sample.report",
|
312
376
|
"test/data/aaindex/DAYM780301",
|
@@ -324,16 +388,79 @@ Gem::Specification.new do |s|
|
|
324
388
|
"test/data/embl/AB090716.embl.rel89",
|
325
389
|
"test/data/fasta/example1.txt",
|
326
390
|
"test/data/fasta/example2.txt",
|
391
|
+
"test/data/fastq/README.txt",
|
392
|
+
"test/data/fastq/error_diff_ids.fastq",
|
393
|
+
"test/data/fastq/error_double_qual.fastq",
|
394
|
+
"test/data/fastq/error_double_seq.fastq",
|
395
|
+
"test/data/fastq/error_long_qual.fastq",
|
396
|
+
"test/data/fastq/error_no_qual.fastq",
|
397
|
+
"test/data/fastq/error_qual_del.fastq",
|
398
|
+
"test/data/fastq/error_qual_escape.fastq",
|
399
|
+
"test/data/fastq/error_qual_null.fastq",
|
400
|
+
"test/data/fastq/error_qual_space.fastq",
|
401
|
+
"test/data/fastq/error_qual_tab.fastq",
|
402
|
+
"test/data/fastq/error_qual_unit_sep.fastq",
|
403
|
+
"test/data/fastq/error_qual_vtab.fastq",
|
404
|
+
"test/data/fastq/error_short_qual.fastq",
|
405
|
+
"test/data/fastq/error_spaces.fastq",
|
406
|
+
"test/data/fastq/error_tabs.fastq",
|
407
|
+
"test/data/fastq/error_trunc_at_plus.fastq",
|
408
|
+
"test/data/fastq/error_trunc_at_qual.fastq",
|
409
|
+
"test/data/fastq/error_trunc_at_seq.fastq",
|
410
|
+
"test/data/fastq/error_trunc_in_plus.fastq",
|
411
|
+
"test/data/fastq/error_trunc_in_qual.fastq",
|
412
|
+
"test/data/fastq/error_trunc_in_seq.fastq",
|
413
|
+
"test/data/fastq/error_trunc_in_title.fastq",
|
414
|
+
"test/data/fastq/illumina_full_range_as_illumina.fastq",
|
415
|
+
"test/data/fastq/illumina_full_range_as_sanger.fastq",
|
416
|
+
"test/data/fastq/illumina_full_range_as_solexa.fastq",
|
417
|
+
"test/data/fastq/illumina_full_range_original_illumina.fastq",
|
418
|
+
"test/data/fastq/longreads_as_illumina.fastq",
|
419
|
+
"test/data/fastq/longreads_as_sanger.fastq",
|
420
|
+
"test/data/fastq/longreads_as_solexa.fastq",
|
421
|
+
"test/data/fastq/longreads_original_sanger.fastq",
|
422
|
+
"test/data/fastq/misc_dna_as_illumina.fastq",
|
423
|
+
"test/data/fastq/misc_dna_as_sanger.fastq",
|
424
|
+
"test/data/fastq/misc_dna_as_solexa.fastq",
|
425
|
+
"test/data/fastq/misc_dna_original_sanger.fastq",
|
426
|
+
"test/data/fastq/misc_rna_as_illumina.fastq",
|
427
|
+
"test/data/fastq/misc_rna_as_sanger.fastq",
|
428
|
+
"test/data/fastq/misc_rna_as_solexa.fastq",
|
429
|
+
"test/data/fastq/misc_rna_original_sanger.fastq",
|
430
|
+
"test/data/fastq/sanger_full_range_as_illumina.fastq",
|
431
|
+
"test/data/fastq/sanger_full_range_as_sanger.fastq",
|
432
|
+
"test/data/fastq/sanger_full_range_as_solexa.fastq",
|
433
|
+
"test/data/fastq/sanger_full_range_original_sanger.fastq",
|
434
|
+
"test/data/fastq/solexa_full_range_as_illumina.fastq",
|
435
|
+
"test/data/fastq/solexa_full_range_as_sanger.fastq",
|
436
|
+
"test/data/fastq/solexa_full_range_as_solexa.fastq",
|
437
|
+
"test/data/fastq/solexa_full_range_original_solexa.fastq",
|
438
|
+
"test/data/fastq/wrapping_as_illumina.fastq",
|
439
|
+
"test/data/fastq/wrapping_as_sanger.fastq",
|
440
|
+
"test/data/fastq/wrapping_as_solexa.fastq",
|
441
|
+
"test/data/fastq/wrapping_original_sanger.fastq",
|
327
442
|
"test/data/gcg/pileup-aa.msf",
|
328
443
|
"test/data/genscan/sample.report",
|
329
444
|
"test/data/iprscan/merged.raw",
|
330
445
|
"test/data/iprscan/merged.txt",
|
446
|
+
"test/data/meme/db",
|
447
|
+
"test/data/meme/mast",
|
448
|
+
"test/data/meme/mast.out",
|
449
|
+
"test/data/meme/meme.out",
|
331
450
|
"test/data/paml/codeml/control_file.txt",
|
332
451
|
"test/data/paml/codeml/output.txt",
|
333
452
|
"test/data/paml/codeml/rates",
|
453
|
+
"test/data/phyloxml/apaf.xml",
|
454
|
+
"test/data/phyloxml/bcl_2.xml",
|
455
|
+
"test/data/phyloxml/made_up.xml",
|
456
|
+
"test/data/phyloxml/ncbi_taxonomy_mollusca_short.xml",
|
457
|
+
"test/data/phyloxml/phyloxml_examples.xml",
|
334
458
|
"test/data/prosite/prosite.dat",
|
335
459
|
"test/data/refseq/nm_126355.entret",
|
336
460
|
"test/data/rpsblast/misc.rpsblast",
|
461
|
+
"test/data/sanger_chromatogram/test_chromatogram_abif.ab1",
|
462
|
+
"test/data/sanger_chromatogram/test_chromatogram_scf_v2.scf",
|
463
|
+
"test/data/sanger_chromatogram/test_chromatogram_scf_v3.scf",
|
337
464
|
"test/data/sim4/complement-A4.sim4",
|
338
465
|
"test/data/sim4/simple-A4.sim4",
|
339
466
|
"test/data/sim4/simple2-A4.sim4",
|
@@ -357,6 +484,9 @@ Gem::Specification.new do |s|
|
|
357
484
|
"test/unit/bio/appl/hmmer/test_report.rb",
|
358
485
|
"test/unit/bio/appl/iprscan/test_report.rb",
|
359
486
|
"test/unit/bio/appl/mafft/test_report.rb",
|
487
|
+
"test/unit/bio/appl/meme/mast/test_report.rb",
|
488
|
+
"test/unit/bio/appl/meme/test_mast.rb",
|
489
|
+
"test/unit/bio/appl/meme/test_motif.rb",
|
360
490
|
"test/unit/bio/appl/paml/codeml/test_rates.rb",
|
361
491
|
"test/unit/bio/appl/paml/codeml/test_report.rb",
|
362
492
|
"test/unit/bio/appl/paml/test_codeml.rb",
|
@@ -378,16 +508,29 @@ Gem::Specification.new do |s|
|
|
378
508
|
"test/unit/bio/db/embl/test_embl_to_bioseq.rb",
|
379
509
|
"test/unit/bio/db/embl/test_sptr.rb",
|
380
510
|
"test/unit/bio/db/embl/test_uniprot.rb",
|
511
|
+
"test/unit/bio/db/fasta/test_format_qual.rb",
|
512
|
+
"test/unit/bio/db/kegg/test_compound.rb",
|
513
|
+
"test/unit/bio/db/kegg/test_drug.rb",
|
514
|
+
"test/unit/bio/db/kegg/test_enzyme.rb",
|
381
515
|
"test/unit/bio/db/kegg/test_genes.rb",
|
516
|
+
"test/unit/bio/db/kegg/test_glycan.rb",
|
517
|
+
"test/unit/bio/db/kegg/test_orthology.rb",
|
518
|
+
"test/unit/bio/db/kegg/test_reaction.rb",
|
382
519
|
"test/unit/bio/db/pdb/test_pdb.rb",
|
520
|
+
"test/unit/bio/db/sanger_chromatogram/test_abif.rb",
|
521
|
+
"test/unit/bio/db/sanger_chromatogram/test_scf.rb",
|
383
522
|
"test/unit/bio/db/test_aaindex.rb",
|
384
523
|
"test/unit/bio/db/test_fasta.rb",
|
524
|
+
"test/unit/bio/db/test_fastq.rb",
|
385
525
|
"test/unit/bio/db/test_gff.rb",
|
386
526
|
"test/unit/bio/db/test_lasergene.rb",
|
387
527
|
"test/unit/bio/db/test_medline.rb",
|
388
528
|
"test/unit/bio/db/test_newick.rb",
|
389
529
|
"test/unit/bio/db/test_nexus.rb",
|
530
|
+
"test/unit/bio/db/test_phyloxml.rb",
|
531
|
+
"test/unit/bio/db/test_phyloxml_writer.rb",
|
390
532
|
"test/unit/bio/db/test_prosite.rb",
|
533
|
+
"test/unit/bio/db/test_qual.rb",
|
391
534
|
"test/unit/bio/db/test_rebase.rb",
|
392
535
|
"test/unit/bio/db/test_soft.rb",
|
393
536
|
"test/unit/bio/io/flatfile/test_autodetection.rb",
|
@@ -404,6 +547,7 @@ Gem::Specification.new do |s|
|
|
404
547
|
"test/unit/bio/sequence/test_compat.rb",
|
405
548
|
"test/unit/bio/sequence/test_dblink.rb",
|
406
549
|
"test/unit/bio/sequence/test_na.rb",
|
550
|
+
"test/unit/bio/sequence/test_quality_score.rb",
|
407
551
|
"test/unit/bio/shell/plugin/test_seq.rb",
|
408
552
|
"test/unit/bio/test_alignment.rb",
|
409
553
|
"test/unit/bio/test_command.rb",
|
@@ -443,6 +587,7 @@ Gem::Specification.new do |s|
|
|
443
587
|
"KNOWN_ISSUES.rdoc",
|
444
588
|
"README.rdoc",
|
445
589
|
"README_DEV.rdoc",
|
590
|
+
"RELEASE_NOTES.rdoc",
|
446
591
|
"doc/Changes-1.3.rdoc"
|
447
592
|
]
|
448
593
|
s.rdoc_options << '--main' << 'README.rdoc'
|