bio 1.3.1 → 1.4.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.
Files changed (303) hide show
  1. data/ChangeLog +2105 -3728
  2. data/KNOWN_ISSUES.rdoc +35 -3
  3. data/README.rdoc +8 -2
  4. data/RELEASE_NOTES.rdoc +166 -0
  5. data/bin/bioruby +4 -1
  6. data/bioruby.gemspec +146 -1
  7. data/bioruby.gemspec.erb +3 -1
  8. data/doc/ChangeLog-before-1.3.1 +3961 -0
  9. data/doc/Tutorial.rd +154 -22
  10. data/doc/Tutorial.rd.html +125 -68
  11. data/lib/bio.rb +21 -6
  12. data/lib/bio/appl/bl2seq/report.rb +11 -202
  13. data/lib/bio/appl/blast/format0.rb +0 -193
  14. data/lib/bio/appl/blast/report.rb +2 -147
  15. data/lib/bio/appl/blast/wublast.rb +0 -208
  16. data/lib/bio/appl/fasta.rb +4 -19
  17. data/lib/bio/appl/fasta/format10.rb +0 -14
  18. data/lib/bio/appl/genscan/report.rb +0 -176
  19. data/lib/bio/appl/hmmer.rb +1 -15
  20. data/lib/bio/appl/hmmer/report.rb +0 -100
  21. data/lib/bio/appl/meme/mast.rb +156 -0
  22. data/lib/bio/appl/meme/mast/report.rb +91 -0
  23. data/lib/bio/appl/meme/motif.rb +48 -0
  24. data/lib/bio/appl/psort.rb +0 -111
  25. data/lib/bio/appl/psort/report.rb +1 -45
  26. data/lib/bio/appl/pts1.rb +2 -4
  27. data/lib/bio/appl/sosui/report.rb +5 -54
  28. data/lib/bio/appl/targetp/report.rb +1 -104
  29. data/lib/bio/appl/tmhmm/report.rb +0 -36
  30. data/lib/bio/command.rb +94 -10
  31. data/lib/bio/data/aa.rb +1 -77
  32. data/lib/bio/data/codontable.rb +1 -95
  33. data/lib/bio/data/na.rb +1 -26
  34. data/lib/bio/db/aaindex.rb +1 -38
  35. data/lib/bio/db/fasta.rb +1 -134
  36. data/lib/bio/db/fasta/format_qual.rb +204 -0
  37. data/lib/bio/db/fasta/qual.rb +102 -0
  38. data/lib/bio/db/fastq.rb +645 -0
  39. data/lib/bio/db/fastq/fastq_to_biosequence.rb +40 -0
  40. data/lib/bio/db/fastq/format_fastq.rb +175 -0
  41. data/lib/bio/db/genbank/genbank.rb +1 -86
  42. data/lib/bio/db/gff.rb +0 -17
  43. data/lib/bio/db/go.rb +4 -72
  44. data/lib/bio/db/kegg/common.rb +112 -0
  45. data/lib/bio/db/kegg/compound.rb +29 -20
  46. data/lib/bio/db/kegg/drug.rb +74 -34
  47. data/lib/bio/db/kegg/enzyme.rb +26 -5
  48. data/lib/bio/db/kegg/genes.rb +128 -15
  49. data/lib/bio/db/kegg/genome.rb +3 -41
  50. data/lib/bio/db/kegg/glycan.rb +19 -24
  51. data/lib/bio/db/kegg/orthology.rb +16 -56
  52. data/lib/bio/db/kegg/reaction.rb +81 -28
  53. data/lib/bio/db/kegg/taxonomy.rb +1 -52
  54. data/lib/bio/db/litdb.rb +1 -16
  55. data/lib/bio/db/phyloxml/phyloxml.xsd +582 -0
  56. data/lib/bio/db/phyloxml/phyloxml_elements.rb +1174 -0
  57. data/lib/bio/db/phyloxml/phyloxml_parser.rb +954 -0
  58. data/lib/bio/db/phyloxml/phyloxml_writer.rb +228 -0
  59. data/lib/bio/db/prosite.rb +2 -95
  60. data/lib/bio/db/rebase.rb +5 -6
  61. data/lib/bio/db/sanger_chromatogram/abif.rb +120 -0
  62. data/lib/bio/db/sanger_chromatogram/chromatogram.rb +133 -0
  63. data/lib/bio/db/sanger_chromatogram/chromatogram_to_biosequence.rb +32 -0
  64. data/lib/bio/db/sanger_chromatogram/scf.rb +210 -0
  65. data/lib/bio/io/das.rb +0 -44
  66. data/lib/bio/io/ddbjxml.rb +1 -181
  67. data/lib/bio/io/flatfile.rb +1 -7
  68. data/lib/bio/io/flatfile/autodetection.rb +6 -0
  69. data/lib/bio/io/keggapi.rb +0 -442
  70. data/lib/bio/io/ncbirest.rb +130 -132
  71. data/lib/bio/io/ncbisoap.rb +2 -1
  72. data/lib/bio/io/pubmed.rb +0 -88
  73. data/lib/bio/location.rb +0 -73
  74. data/lib/bio/pathway.rb +0 -171
  75. data/lib/bio/sequence.rb +18 -1
  76. data/lib/bio/sequence/adapter.rb +3 -0
  77. data/lib/bio/sequence/format.rb +16 -0
  78. data/lib/bio/sequence/quality_score.rb +205 -0
  79. data/lib/bio/tree.rb +70 -5
  80. data/lib/bio/util/restriction_enzyme/single_strand.rb +3 -2
  81. data/lib/bio/util/sirna.rb +1 -23
  82. data/lib/bio/version.rb +1 -1
  83. data/sample/demo_aaindex.rb +67 -0
  84. data/sample/demo_aminoacid.rb +101 -0
  85. data/sample/demo_bl2seq_report.rb +220 -0
  86. data/sample/demo_blast_report.rb +285 -0
  87. data/sample/demo_codontable.rb +119 -0
  88. data/sample/demo_das.rb +105 -0
  89. data/sample/demo_ddbjxml.rb +212 -0
  90. data/sample/demo_fasta_remote.rb +51 -0
  91. data/sample/demo_fastaformat.rb +105 -0
  92. data/sample/demo_genbank.rb +132 -0
  93. data/sample/demo_genscan_report.rb +202 -0
  94. data/sample/demo_gff1.rb +49 -0
  95. data/sample/demo_go.rb +98 -0
  96. data/sample/demo_hmmer_report.rb +149 -0
  97. data/sample/demo_kegg_compound.rb +57 -0
  98. data/sample/demo_kegg_drug.rb +65 -0
  99. data/sample/demo_kegg_genome.rb +74 -0
  100. data/sample/demo_kegg_glycan.rb +72 -0
  101. data/sample/demo_kegg_orthology.rb +62 -0
  102. data/sample/demo_kegg_reaction.rb +66 -0
  103. data/sample/demo_kegg_taxonomy.rb +92 -0
  104. data/sample/demo_keggapi.rb +502 -0
  105. data/sample/demo_litdb.rb +42 -0
  106. data/sample/demo_locations.rb +99 -0
  107. data/sample/demo_ncbi_rest.rb +130 -0
  108. data/sample/demo_nucleicacid.rb +49 -0
  109. data/sample/demo_pathway.rb +196 -0
  110. data/sample/demo_prosite.rb +120 -0
  111. data/sample/demo_psort.rb +138 -0
  112. data/sample/demo_psort_report.rb +70 -0
  113. data/sample/demo_pubmed.rb +118 -0
  114. data/sample/demo_sirna.rb +63 -0
  115. data/sample/demo_sosui_report.rb +89 -0
  116. data/sample/demo_targetp_report.rb +135 -0
  117. data/sample/demo_tmhmm_report.rb +68 -0
  118. data/sample/pmfetch.rb +13 -4
  119. data/sample/pmsearch.rb +15 -4
  120. data/sample/test_phyloxml_big.rb +205 -0
  121. data/test/bioruby_test_helper.rb +61 -0
  122. data/test/data/KEGG/1.1.1.1.enzyme +935 -0
  123. data/test/data/KEGG/C00025.compound +102 -0
  124. data/test/data/KEGG/D00063.drug +104 -0
  125. data/test/data/KEGG/G00024.glycan +47 -0
  126. data/test/data/KEGG/G01366.glycan +18 -0
  127. data/test/data/KEGG/K02338.orthology +902 -0
  128. data/test/data/KEGG/R00006.reaction +14 -0
  129. data/test/data/fastq/README.txt +109 -0
  130. data/test/data/fastq/error_diff_ids.fastq +20 -0
  131. data/test/data/fastq/error_double_qual.fastq +22 -0
  132. data/test/data/fastq/error_double_seq.fastq +22 -0
  133. data/test/data/fastq/error_long_qual.fastq +20 -0
  134. data/test/data/fastq/error_no_qual.fastq +20 -0
  135. data/test/data/fastq/error_qual_del.fastq +20 -0
  136. data/test/data/fastq/error_qual_escape.fastq +20 -0
  137. data/test/data/fastq/error_qual_null.fastq +0 -0
  138. data/test/data/fastq/error_qual_space.fastq +21 -0
  139. data/test/data/fastq/error_qual_tab.fastq +21 -0
  140. data/test/data/fastq/error_qual_unit_sep.fastq +20 -0
  141. data/test/data/fastq/error_qual_vtab.fastq +20 -0
  142. data/test/data/fastq/error_short_qual.fastq +20 -0
  143. data/test/data/fastq/error_spaces.fastq +20 -0
  144. data/test/data/fastq/error_tabs.fastq +21 -0
  145. data/test/data/fastq/error_trunc_at_plus.fastq +19 -0
  146. data/test/data/fastq/error_trunc_at_qual.fastq +19 -0
  147. data/test/data/fastq/error_trunc_at_seq.fastq +18 -0
  148. data/test/data/fastq/error_trunc_in_plus.fastq +19 -0
  149. data/test/data/fastq/error_trunc_in_qual.fastq +20 -0
  150. data/test/data/fastq/error_trunc_in_seq.fastq +18 -0
  151. data/test/data/fastq/error_trunc_in_title.fastq +17 -0
  152. data/test/data/fastq/illumina_full_range_as_illumina.fastq +8 -0
  153. data/test/data/fastq/illumina_full_range_as_sanger.fastq +8 -0
  154. data/test/data/fastq/illumina_full_range_as_solexa.fastq +8 -0
  155. data/test/data/fastq/illumina_full_range_original_illumina.fastq +8 -0
  156. data/test/data/fastq/longreads_as_illumina.fastq +40 -0
  157. data/test/data/fastq/longreads_as_sanger.fastq +40 -0
  158. data/test/data/fastq/longreads_as_solexa.fastq +40 -0
  159. data/test/data/fastq/longreads_original_sanger.fastq +120 -0
  160. data/test/data/fastq/misc_dna_as_illumina.fastq +16 -0
  161. data/test/data/fastq/misc_dna_as_sanger.fastq +16 -0
  162. data/test/data/fastq/misc_dna_as_solexa.fastq +16 -0
  163. data/test/data/fastq/misc_dna_original_sanger.fastq +16 -0
  164. data/test/data/fastq/misc_rna_as_illumina.fastq +16 -0
  165. data/test/data/fastq/misc_rna_as_sanger.fastq +16 -0
  166. data/test/data/fastq/misc_rna_as_solexa.fastq +16 -0
  167. data/test/data/fastq/misc_rna_original_sanger.fastq +16 -0
  168. data/test/data/fastq/sanger_full_range_as_illumina.fastq +8 -0
  169. data/test/data/fastq/sanger_full_range_as_sanger.fastq +8 -0
  170. data/test/data/fastq/sanger_full_range_as_solexa.fastq +8 -0
  171. data/test/data/fastq/sanger_full_range_original_sanger.fastq +8 -0
  172. data/test/data/fastq/solexa_full_range_as_illumina.fastq +8 -0
  173. data/test/data/fastq/solexa_full_range_as_sanger.fastq +8 -0
  174. data/test/data/fastq/solexa_full_range_as_solexa.fastq +8 -0
  175. data/test/data/fastq/solexa_full_range_original_solexa.fastq +8 -0
  176. data/test/data/fastq/wrapping_as_illumina.fastq +12 -0
  177. data/test/data/fastq/wrapping_as_sanger.fastq +12 -0
  178. data/test/data/fastq/wrapping_as_solexa.fastq +12 -0
  179. data/test/data/fastq/wrapping_original_sanger.fastq +24 -0
  180. data/test/data/meme/db +0 -0
  181. data/test/data/meme/mast +0 -0
  182. data/test/data/meme/mast.out +13 -0
  183. data/test/data/meme/meme.out +3 -0
  184. data/test/data/phyloxml/apaf.xml +666 -0
  185. data/test/data/phyloxml/bcl_2.xml +2097 -0
  186. data/test/data/phyloxml/made_up.xml +144 -0
  187. data/test/data/phyloxml/ncbi_taxonomy_mollusca_short.xml +65 -0
  188. data/test/data/phyloxml/phyloxml_examples.xml +415 -0
  189. data/test/data/sanger_chromatogram/test_chromatogram_abif.ab1 +0 -0
  190. data/test/data/sanger_chromatogram/test_chromatogram_scf_v2.scf +0 -0
  191. data/test/data/sanger_chromatogram/test_chromatogram_scf_v3.scf +0 -0
  192. data/test/functional/bio/appl/test_pts1.rb +7 -5
  193. data/test/functional/bio/io/test_ensembl.rb +4 -3
  194. data/test/functional/bio/io/test_pubmed.rb +9 -3
  195. data/test/functional/bio/io/test_soapwsdl.rb +5 -4
  196. data/test/functional/bio/io/test_togows.rb +5 -4
  197. data/test/functional/bio/sequence/test_output_embl.rb +6 -4
  198. data/test/functional/bio/test_command.rb +54 -5
  199. data/test/runner.rb +5 -3
  200. data/test/unit/bio/appl/bl2seq/test_report.rb +5 -4
  201. data/test/unit/bio/appl/blast/test_ncbioptions.rb +4 -2
  202. data/test/unit/bio/appl/blast/test_report.rb +5 -4
  203. data/test/unit/bio/appl/blast/test_rpsblast.rb +5 -4
  204. data/test/unit/bio/appl/gcg/test_msf.rb +5 -5
  205. data/test/unit/bio/appl/genscan/test_report.rb +8 -9
  206. data/test/unit/bio/appl/hmmer/test_report.rb +5 -4
  207. data/test/unit/bio/appl/iprscan/test_report.rb +6 -5
  208. data/test/unit/bio/appl/mafft/test_report.rb +6 -5
  209. data/test/unit/bio/appl/meme/mast/test_report.rb +46 -0
  210. data/test/unit/bio/appl/meme/test_mast.rb +103 -0
  211. data/test/unit/bio/appl/meme/test_motif.rb +38 -0
  212. data/test/unit/bio/appl/paml/codeml/test_rates.rb +5 -4
  213. data/test/unit/bio/appl/paml/codeml/test_report.rb +5 -4
  214. data/test/unit/bio/appl/paml/test_codeml.rb +5 -4
  215. data/test/unit/bio/appl/sim4/test_report.rb +5 -4
  216. data/test/unit/bio/appl/sosui/test_report.rb +6 -5
  217. data/test/unit/bio/appl/targetp/test_report.rb +5 -3
  218. data/test/unit/bio/appl/test_blast.rb +5 -4
  219. data/test/unit/bio/appl/test_fasta.rb +4 -2
  220. data/test/unit/bio/appl/test_pts1.rb +4 -2
  221. data/test/unit/bio/appl/tmhmm/test_report.rb +6 -5
  222. data/test/unit/bio/data/test_aa.rb +5 -3
  223. data/test/unit/bio/data/test_codontable.rb +5 -4
  224. data/test/unit/bio/data/test_na.rb +5 -3
  225. data/test/unit/bio/db/biosql/tc_biosql.rb +5 -1
  226. data/test/unit/bio/db/embl/test_common.rb +4 -2
  227. data/test/unit/bio/db/embl/test_embl.rb +6 -6
  228. data/test/unit/bio/db/embl/test_embl_rel89.rb +6 -6
  229. data/test/unit/bio/db/embl/test_embl_to_bioseq.rb +7 -8
  230. data/test/unit/bio/db/embl/test_sptr.rb +6 -8
  231. data/test/unit/bio/db/embl/test_uniprot.rb +6 -5
  232. data/test/unit/bio/db/fasta/test_format_qual.rb +346 -0
  233. data/test/unit/bio/db/kegg/test_compound.rb +146 -0
  234. data/test/unit/bio/db/kegg/test_drug.rb +194 -0
  235. data/test/unit/bio/db/kegg/test_enzyme.rb +241 -0
  236. data/test/unit/bio/db/kegg/test_genes.rb +32 -4
  237. data/test/unit/bio/db/kegg/test_glycan.rb +260 -0
  238. data/test/unit/bio/db/kegg/test_orthology.rb +50 -0
  239. data/test/unit/bio/db/kegg/test_reaction.rb +96 -0
  240. data/test/unit/bio/db/pdb/test_pdb.rb +4 -2
  241. data/test/unit/bio/db/sanger_chromatogram/test_abif.rb +76 -0
  242. data/test/unit/bio/db/sanger_chromatogram/test_scf.rb +98 -0
  243. data/test/unit/bio/db/test_aaindex.rb +6 -6
  244. data/test/unit/bio/db/test_fasta.rb +5 -46
  245. data/test/unit/bio/db/test_fastq.rb +829 -0
  246. data/test/unit/bio/db/test_gff.rb +4 -2
  247. data/test/unit/bio/db/test_lasergene.rb +7 -5
  248. data/test/unit/bio/db/test_medline.rb +4 -2
  249. data/test/unit/bio/db/test_newick.rb +6 -6
  250. data/test/unit/bio/db/test_nexus.rb +4 -2
  251. data/test/unit/bio/db/test_phyloxml.rb +769 -0
  252. data/test/unit/bio/db/test_phyloxml_writer.rb +328 -0
  253. data/test/unit/bio/db/test_prosite.rb +6 -5
  254. data/test/unit/bio/db/test_qual.rb +63 -0
  255. data/test/unit/bio/db/test_rebase.rb +5 -3
  256. data/test/unit/bio/db/test_soft.rb +7 -6
  257. data/test/unit/bio/io/flatfile/test_autodetection.rb +6 -7
  258. data/test/unit/bio/io/flatfile/test_buffer.rb +6 -5
  259. data/test/unit/bio/io/flatfile/test_splitter.rb +4 -4
  260. data/test/unit/bio/io/test_ddbjxml.rb +4 -3
  261. data/test/unit/bio/io/test_ensembl.rb +5 -3
  262. data/test/unit/bio/io/test_fastacmd.rb +4 -3
  263. data/test/unit/bio/io/test_flatfile.rb +6 -5
  264. data/test/unit/bio/io/test_soapwsdl.rb +4 -3
  265. data/test/unit/bio/io/test_togows.rb +4 -2
  266. data/test/unit/bio/sequence/test_aa.rb +5 -3
  267. data/test/unit/bio/sequence/test_common.rb +4 -2
  268. data/test/unit/bio/sequence/test_compat.rb +4 -2
  269. data/test/unit/bio/sequence/test_dblink.rb +5 -3
  270. data/test/unit/bio/sequence/test_na.rb +4 -2
  271. data/test/unit/bio/sequence/test_quality_score.rb +330 -0
  272. data/test/unit/bio/shell/plugin/test_seq.rb +5 -3
  273. data/test/unit/bio/test_alignment.rb +5 -3
  274. data/test/unit/bio/test_command.rb +4 -3
  275. data/test/unit/bio/test_db.rb +5 -3
  276. data/test/unit/bio/test_feature.rb +4 -2
  277. data/test/unit/bio/test_location.rb +4 -2
  278. data/test/unit/bio/test_map.rb +5 -3
  279. data/test/unit/bio/test_pathway.rb +4 -2
  280. data/test/unit/bio/test_reference.rb +4 -2
  281. data/test/unit/bio/test_sequence.rb +5 -3
  282. data/test/unit/bio/test_shell.rb +5 -3
  283. data/test/unit/bio/test_tree.rb +6 -6
  284. data/test/unit/bio/util/restriction_enzyme/analysis/test_calculated_cuts.rb +4 -2
  285. data/test/unit/bio/util/restriction_enzyme/analysis/test_cut_ranges.rb +4 -2
  286. data/test/unit/bio/util/restriction_enzyme/analysis/test_sequence_range.rb +4 -2
  287. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb +4 -2
  288. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb +4 -2
  289. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb +4 -2
  290. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb +4 -2
  291. data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb +4 -2
  292. data/test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb +4 -2
  293. data/test/unit/bio/util/restriction_enzyme/test_analysis.rb +4 -2
  294. data/test/unit/bio/util/restriction_enzyme/test_cut_symbol.rb +4 -2
  295. data/test/unit/bio/util/restriction_enzyme/test_double_stranded.rb +4 -2
  296. data/test/unit/bio/util/restriction_enzyme/test_single_strand.rb +17 -13
  297. data/test/unit/bio/util/restriction_enzyme/test_single_strand_complement.rb +17 -13
  298. data/test/unit/bio/util/restriction_enzyme/test_string_formatting.rb +4 -2
  299. data/test/unit/bio/util/test_color_scheme.rb +5 -3
  300. data/test/unit/bio/util/test_contingency_table.rb +5 -3
  301. data/test/unit/bio/util/test_restriction_enzyme.rb +4 -2
  302. data/test/unit/bio/util/test_sirna.rb +6 -4
  303. metadata +147 -2
@@ -81,7 +81,9 @@ Gem::Specification.new do |s|
81
81
  # Fail safe settings
82
82
  if rdoc_files.empty? then
83
83
  rdoc_files = [ 'README.rdoc', 'README_DEV.rdoc',
84
- 'doc/Changes-1.3.rdoc' ]
84
+ 'RELEASE_NOTES.rdoc',
85
+ 'doc/Changes-1.3.rdoc',
86
+ ]
85
87
  end
86
88
  rdoc_files.push "ChangeLog" unless rdoc_files.include?("ChangeLog")
87
89
  rdoc_files.sort.collect { |x| x.dump }.join(",\n ")
@@ -0,0 +1,3961 @@
1
+ 2009-09-02 Naohisa Goto <ng@bioruby.org>
2
+
3
+ * BioRuby 1.3.1 is released.
4
+
5
+ 2009-09-02 Naohisa Goto <ng@bioruby.org>
6
+
7
+ * lib/bio/version.rb
8
+
9
+ Preparation for bioruby-1.3.1 release.
10
+ (commit 3d86bc6d519c4c3319e5a1b2ca36f8f5177f127f)
11
+
12
+ 2009-08-31 Naohisa Goto <ng@bioruby.org>
13
+
14
+ * lib/bio/sequence/compat.rb
15
+
16
+ Document bug fix: Bio::Sequence::(NA|AA|Generic)#to_fasta are
17
+ currently not deprecated.
18
+ (commit 0e0f888a73a60c0f0a7b103019aeb82c8f063c4e)
19
+
20
+ 2009-08-28 Naohisa Goto <ng@bioruby.org>
21
+
22
+ * lib/bio/appl/sim4/report.rb
23
+
24
+ Bug fix: parse error when unaligned regions exist. Thanks to
25
+ Tomoaki NISHIYAMA who reports the bug ([BioRuby] SIM4 parser).
26
+
27
+ * test/unit/bio/appl/sim4/test_report.rb,
28
+ test/data/sim4/complement-A4.sim4
29
+
30
+ To confirm the bug fix, tests are added with new test data.
31
+ (commit 02d531e36ecf789f232cf3e05f85391b60279f00)
32
+
33
+ 2009-08-27 Naohisa Goto <ng@bioruby.org>
34
+
35
+ * lib/bio/appl/sim4/report.rb
36
+
37
+ Bug fix: parse errpr when the alignment of an intron is splitted
38
+ into two lines. Thanks to Tomoaki NISHIYAMA who sent the patch
39
+ ([BioRuby] SIM4 parser).
40
+ (commit 137ec4c3099236c89ac4a0157d0c77ba13d1875c)
41
+
42
+ 2009-08-27 Naohisa Goto <ng@bioruby.org>
43
+
44
+ * lib/bio/appl/sim4/report.rb
45
+
46
+ Ruby 1.9 support: String#each_line instead of String#each
47
+ (commit b65f176f3be74c21a8bb8fc2a6f204fb8ab08fd6)
48
+
49
+ 2009-08-27 Naohisa Goto <ng@bioruby.org>
50
+
51
+ * test/unit/bio/appl/sim4/test_report.rb,
52
+ test/data/sim4/simple-A4.sim4, test/data/sim4/simple2-A4.sim4
53
+
54
+ Newly added unit tests for Bio::Sim4::Report with test data.
55
+ The test data is based on the data provided by Tomoaki NISHIYAMA
56
+ ([BioRuby] SIM4 parser), and most of the sequence data is
57
+ replaced by random sequence.
58
+ (commit 0f53916dd728b871f02d1caf0c5105a2e1c58bc4)
59
+
60
+ 2009-08-18 Naohisa Goto <ng@bioruby.org>
61
+
62
+ * COPYING, COPYING.ja, GPL, LGPL, LEGAL
63
+
64
+ License files are added. COPYING, COPYING.ja, GPL, LGPL are taken
65
+ from Ruby's svn repository. LEGAL is written for BioRuby.
66
+ (commit c65531331e840562ac7342f1896f7e2a3aac6c88)
67
+
68
+ * README.rdoc
69
+
70
+ Added descriptions about license to refer COPYING and LEGAL.
71
+ (commit d88015a2e3b2c5f7c2a931261819b908084d0179)
72
+
73
+ * COPYING
74
+
75
+ Modified COPYING for BioRuby, following Matz's recommendation
76
+ in [ruby-list:46293].
77
+ (commit 2c30e7342e33c878bd7132a302974364c54caad9)
78
+
79
+ 2009-05-06 Naohisa Goto <ng@bioruby.org>
80
+
81
+ * lib/bio/appl/fasta.rb, lib/bio/appl/fasta/format10.rb
82
+
83
+ Restored Bio::Fasta.parser for keeping compatibility, and added
84
+ forgotten require.
85
+ (commit 97b9284109c9a4431b92eab208509e1df6069b4b)
86
+
87
+ 2009-05-02 Naohisa Goto <ng@bioruby.org>
88
+
89
+ * lib/bio/appl/fasta.rb
90
+
91
+ * Bug fix: Bio::Fasta::Report should be autoloaded.
92
+ * Removed useless method Bio::Fasta::Report.parser because
93
+ only the "format10" parser is available for a long time
94
+ and dynamic require is a potential security hole.
95
+ * Removed "require" lines in Bio::Fasta#parse_result.
96
+ (commit 3d3edc44127f4fd97abcc17a859e36623facdc7c)
97
+
98
+ 2009-05-02 Naohisa Goto <ng@bioruby.org>
99
+
100
+ * lib/bio/appl/fasta/format10.rb
101
+
102
+ Bug Fix: stack overflow problem, and added support for multiple
103
+ query sequences.
104
+
105
+ * Bug fix: stack overflow problem. Thanks to Fredrik Johansson who
106
+ reports the bug ([BioRuby] Made a change in format10.rb).
107
+ * Changed to set @entry_overrun when a report containing multiple
108
+ query sequences' results is given.
109
+ * New methods Bio::Fasta::Report#query_def and query_len.
110
+ * To support reading a search result with multiple query sequences
111
+ by using Bio::FlatFile, a flatfile splitter class
112
+ Bio::Fasta::Report::FastaFormat10Splitter is newly added.
113
+ (commit e57349594427ad1a51979c9d4e0c3efcffd160c2)
114
+
115
+ 2009-04-27 Naohisa Goto <ng@bioruby.org>
116
+
117
+ * test/unit/bio/test_feature.rb, test/unit/bio/test_reference.rb
118
+
119
+ class name conflict of NullStderr
120
+ (commit 1607b60d905eb8cb5ca289e357cbb2cbb7a118ff)
121
+
122
+ * test/unit/bio/appl/test_blast.rb
123
+
124
+ Bug fix: method redefined: TestBlast#test_self_local
125
+ (commit 9caa4c9d94126b3568c439878876062c84afbdec)
126
+
127
+ * test/unit/bio/appl/hmmer/test_report.rb
128
+ Bug fix: method name conflict:
129
+ TestHMMERReportClassMethods#test_reports_ary
130
+ (commit cc3e1b85cf885736a7b1293c7e0951e099cd7e6b)
131
+
132
+ * test/unit/bio/appl/bl2seq/test_report.rb
133
+
134
+ * Bug fix: method redefined: TestBl2seqReport#test_undefed_methods.
135
+ To fix the bug, the second "test_undefed_methods" is renamed to
136
+ "test_undefed_methods_for_iteration".
137
+ * Assertions are changed in the first "test_undefed_methods".
138
+ * Fixed typo.
139
+ (commit 7e1a550de3dffde3fd8808803e44f35072e4d40b)
140
+
141
+ 2009-04-27 Naohisa Goto <ng@bioruby.org>
142
+
143
+ * lib/bio/util/restriction_enzyme/range/sequence_range/calculated_cuts.rb
144
+ Bug fix: attribute "strands_for_display" is disabled because the
145
+ method definition with the same name overwrites the attribute
146
+ definition.
147
+ (commit af07e2784faacc51366ddfab5bedd45841734f53)
148
+
149
+ * lib/bio/db/embl/embl.rb
150
+
151
+ Bug fix: removed duplicated alias
152
+ (commit 65c360f39580322b5eee64b7c2d8274ff7b8dfff)
153
+
154
+ * lib/bio/appl/pts1.rb
155
+
156
+ Bug fix: removed unused attribute "function" in Bio::PTS1
157
+ because method definition with the same name appeared later
158
+ wipes out the attribute definition.
159
+ (commit 81cbe9da55217d186e6dc9c1bfb56a39fba73590)
160
+
161
+ 2009-04-27 Naohisa Goto <ng@bioruby.org>
162
+
163
+ * lib/bio/appl/blast/format0.rb
164
+
165
+ Bug fix: forgotten "if false #dummy" in the attribute "query_to".
166
+ (commit 7c2e8d0d11baf8cb9e25207ba5b27d4e9d756054)
167
+
168
+ * lib/bio/appl/blast.rb
169
+
170
+ Bug fix: suppressing warning messages when $VERBOSE=true.
171
+
172
+ * To suppress warining message "lib/bio/appl/blast.rb:402: warning:
173
+ useless use of :: in void context", a dummy variable is added.
174
+ * The attribute "server" is changed to attr_reader because "server="
175
+ is defined later.
176
+ (commit f9404276d2ddcf15966cab74c419733ccd748af2)
177
+
178
+ 2009-04-27 Naohisa Goto <ng@bioruby.org>
179
+
180
+ * test/unit/bio/test_sequence.rb
181
+
182
+ Fixed test name overwriting another test name in TestSequence.
183
+ Fixed by Andrew Grimm at git://github.com/agrimm/bioruby.git
184
+ in Thu Feb 19 22:30:26 2009 +1100.
185
+ (commit a6c39a719b284a43fe8c67edc1f2826d2941647f)
186
+
187
+ 2009-04-26 Naohisa Goto <ng@bioruby.org>
188
+
189
+ * test/unit/bio/appl/gcg/test_msf.rb,
190
+ test/data/gcg/pileup-aa.msf
191
+
192
+ Newly added unit tests for Bio::GCG::Msf with test data
193
+ (commit a1819cd3b772300ef5bea2ebb63376e5b9fc64da)
194
+
195
+ 2009-04-23 Naohisa Goto <ng@bioruby.org>
196
+
197
+ * lib/bio/appl/gcg/msf.rb
198
+
199
+ * Bug fix: incorrect parsing of GCG clustalw+ results.
200
+ * Small refactoring of codes
201
+ (commit 2eae8f722aa888c85d54aa958eb117d49ce42f8b)
202
+
203
+ 2009-04-21 Naohisa Goto <ng@bioruby.org>
204
+
205
+ * lib/bio/appl/gcg/msf.rb
206
+
207
+ * Bug fix: Bio::GCG::Msf fails parsing when two dots are appeared
208
+ at the end of a line. Thanks to Fredrik Johansson who reports the
209
+ bug and send the patch ([BioRuby] Parsing MSF alignment file).
210
+ * bug fix: misspelling of "ALIGNMENT".
211
+ (commit 44ca52443e0249f54c43f92d08cf083cdd12c692)
212
+
213
+ 2009-04-21 Naohisa Goto <ng@bioruby.org>
214
+
215
+ * lib/bio/io/pubmed.rb
216
+
217
+ Bug fix: Bio::PubMed#efetch should return an array of string
218
+ objects. Thanks to Masahide Kikkawa and Fredrik Johansson
219
+ who report the bug (in "[BioRuby] Bio::PubMed.efetch, bug?"
220
+ and "[BioRuby] PubMed.efetch error").
221
+ (commit a48a9a35b87dead069fe328ba7086977304af995)
222
+
223
+ * test/functional/bio/io/test_pubmed.rb
224
+
225
+ Newly added functional test for Bio::PubMed.
226
+ (commit bf5ba6d4503f3ddb0ca31673882f5b396a932bbe)
227
+
228
+ 2009-04-21 Naohisa Goto <ng@bioruby.org>
229
+
230
+ * lib/bio/io/ncbirest.rb
231
+
232
+ * Bug fix: Bio::NCBI::REST#esearch ignores hash["retstart"].
233
+ * In Bio::NCBI::REST#esearch, the priority of limit and
234
+ hash["retmax"] is clarified: limit is used unless it is nil.
235
+ In addition, default value of limit is changed to nil. If both
236
+ limit and hash["retmax"] are nil, default value 100 is used.
237
+ * Bio::NCBI::REST::NCBI_INTERVAL is changed to 1.
238
+ (commit fc0339fe8a42cd00199cfdc938590ae9626551bc)
239
+
240
+ 2009-03-19 Naohisa Goto <ng@bioruby.org>
241
+
242
+ * lib/bio/io/ncbirest.rb
243
+
244
+ Bug fix: Bio::PubMed.efetch/esearch ignores retmax after refactoring
245
+ of Bio::PubMed. efetch/esearch methods in Bio::NCBI::REST are also
246
+ affected. Thanks to Craig Knox who reports the bug ([BioRuby]
247
+ efetch/esearch broken). Bug fix by Toshiaki Katayama.
248
+ (commit 51c3223e033b2992a7bd95da282f88164406ff92)
249
+
250
+ 2009-03-19 Naohisa Goto <ng@bioruby.org>
251
+
252
+ * doc/Tutorial.rd
253
+
254
+ GO example using Ensembl API is moved to Appendix.
255
+ (commit d677c3d7cbd2f4ff6193255e0e30366ecd0aa421)
256
+
257
+ fixed RD text formatting issues
258
+ (commit 642577ae70647f8bd0ae3bcc8ddc118cecc886c7)
259
+
260
+ * doc/Tutorial.rd.html
261
+
262
+ doc/Tutorial.rd.html is regenerated
263
+ (commit dd878d3ecd83ad5e61a21bbf90d27d1c89d5f12d)
264
+
265
+ 2009-03-18 Naohisa Goto <ng@bioruby.org>
266
+
267
+ * doc/Tutorial.rd
268
+
269
+ Reverted a Blast example code because it aims to tell usage of
270
+ blocks to explore a Blast report, and getting the "result" is
271
+ only a side effect and not the main purpose.
272
+ (commit db172eb1e5f1cbc17317bff8043cc07bf6597073)
273
+
274
+ 2009-03-18 Pjotr Prins <pjotr.public01@thebird.nl>
275
+
276
+ * doc/Tutorial.rd
277
+
278
+ Updated Tutorial.
279
+ (commit b3363ee94cfb86540a7d286ccac608b74737b30d)
280
+
281
+ Updated tutorial with links and gene ontology example
282
+ by Marc Hoeppner.
283
+ (commit 27a5019ca7a41211055550f9731672aa71a3a4b3)
284
+
285
+ Fixed doctests in documentation.
286
+ (commit 9a21a1750a9584152fae669be132af89086e7d5f)
287
+
288
+ Added working BLAST example.
289
+ (commit 45c27f109f069db3b6208fd59cc2b683a5bca5a9)
290
+
291
+ Added BLAST example. All doctests work again in Tutorial.rd.
292
+ (commit 05edf3092d0322b8f2775e60448700024d8cb343)
293
+
294
+ Slightly improved remarks. Tutorial.rd runs its doctests.
295
+ (commit 541a4cf0d9d0d3904f1570e1258a847a22f9238b)
296
+
297
+ reference to github.com/pjotrp/bioruby-support
298
+ (commit ec5dfb1544e32034457b0dd36a9dc50fef6c0fbe)
299
+
300
+ Added info on how to split large BLAST XML files.
301
+ (commit 6c9a80cde4be6c4c3d02b77c44dfa8bfbf0a41ff)
302
+
303
+ Updated Tutorial
304
+ (commit 07267e2d9c5b774bb0f41b795f6be1f24ff175ba)
305
+
306
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
307
+
308
+ * lib/bio/db/biosql/sequence.rb
309
+
310
+ Fixed: taxonomy, do not report node_rank of type "class".
311
+ GenBanks Tests I/O passed.
312
+ (commit ba5400eaf6de0f38341825cb0fbc24ca1d99eeba)
313
+
314
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
315
+
316
+ * test/unit/bio/db/biosql/tc_biosql.rb
317
+
318
+ Removed last "\n" from reference GenBank string
319
+ (commit 2de87ceef220056a502c5a9a3457abdf1d93fab0)
320
+
321
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
322
+
323
+ * lib/bio/db/biosql/sequence.rb
324
+
325
+ Fix: reference deletion from bioentry deletion, when reference
326
+ is a leaf (no more bioentries connected to it)
327
+ (commit 6f3195a023cab8ee64eb3e3bb9c491534cd80603)
328
+
329
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
330
+
331
+ * lib/bio/io/biosql/ar-biosql.rb
332
+
333
+ Added: relation between bioentry and refernces, also through
334
+ references by bioentry_reference. This is useful to accomplish
335
+ complete bioentry's delete.
336
+ (commit d9e5876231d451c9ab1a2e75702f9fe70b1509b8)
337
+
338
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
339
+
340
+ * test/unit/bio/db/biosql/tc_biosql.rb
341
+
342
+ Fixed: title test
343
+ (commit 45e2d5e21bc1f93240827dee2e46ac02d24cf696)
344
+
345
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
346
+
347
+ * lib/bio/db/genbank/common.rb
348
+
349
+ Fix: Delete added dot at the end of TITLE.
350
+ (commit 2a29c9e7fd41da9d6bf065b3d6dbd473e4d03bbe)
351
+
352
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
353
+
354
+ * lib/bio/db/biosql/sequence.rb
355
+
356
+ Add: bioentry_qualifier_value recognize if it's handling data
357
+ (reader) and format it accordingly with GenBank/EMBL format
358
+ ex: 26-SEP-2006 .
359
+ (commit 05ba3f1647d4cc71747ada95c9bb7f2a5a44b518)
360
+
361
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
362
+
363
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
364
+
365
+ Fixed: date_modified, the code is moved to
366
+ Bio::SQL::Sequence#bioentry_qualifier_anchor#method_reader.
367
+ It's most an exercise of style than good programming.
368
+ date_modifier reader should be a method apart.
369
+ (commit c9a980877c9222e05aa0d9163ba51aa2c77a7146)
370
+
371
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
372
+
373
+ * test/unit/bio/db/biosql/tc_biosql.rb,
374
+ test/unit/bio/db/biosql/test_biosql.rb,
375
+ test/unit/bio/db/biosql/ts_suite_biosql.rb
376
+
377
+ Add: BioSQL's TestSuite, alpha stage
378
+ (commit be1839b3bf3008fe234e8f89d85302caef83398f)
379
+
380
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
381
+
382
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
383
+
384
+ Fix: date_modifier biosequence adapter
385
+ (commit a7c1c717e1684fd9117fc2d096e8d6e7c647b62d)
386
+
387
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
388
+
389
+ * test/unit/bio/db/biosql/test_biosql.rb
390
+
391
+ Added preliminar tests using connection with jdbcmysql.
392
+ Test are focused on input/output coherence.
393
+ (commit 0ada9f8b4bb8553bf076caca76bc76a4d6791c6b)
394
+
395
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
396
+
397
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
398
+
399
+ Fixed: GI:xxxx reference on VERSION's line using
400
+ biosql/to_biosequence.output(:genbank)
401
+ (commit 35e1dce1a75ed967ec707457ed3655ce927f83c3)
402
+
403
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
404
+
405
+ * lib/bio/db/biosql/sequence.rb
406
+
407
+ added other_seqids as alias of identifier, for the adapter.
408
+ Export problem of GI in output(:genbank) from biosql/biosequence.
409
+ (commit 7f69ea73dcd28e76743bd5213c3719cf7d9d44a0)
410
+
411
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
412
+
413
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
414
+
415
+ (Changed comments only) Added TODOs as comments:
416
+ to_biosequence.output(:genbank) some major and minor problems.
417
+ 1) Major. GI: is not exported IN(VERSION X64011.1 GI:44010),
418
+ OUT(VERSION X64011.1)
419
+ 1.1) Db storage is ok, GI is saved into identifier of bioentry
420
+ 2) Moderate. date wrong format IN(26-SEP-2006), OUT(2006-09-26)
421
+ 3) Minor. Organism in output as more terms.
422
+ 4) Minor. Title has a dot at the end, input was without
423
+
424
+ ref for GI in genbank are functions ncbi_gi_number/other_seqids
425
+ (commit 03662955a45e1c3d5d32150b423a92d40c0c33c7)
426
+
427
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
428
+
429
+ * lib/bio/io/sql.rb
430
+
431
+ get and first converted from DataMapper to ActiveRecord
432
+ (commit 78b37c61bbb0a16bbee6c3dd16bff7c292e77695)
433
+
434
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
435
+
436
+ * lib/bio/db/biosql/sequence.rb
437
+
438
+ converted syntax of first function from DataMapper to ActiveRecord
439
+ (commit 822a35794b958906e5d4bfb6d5b9d74efb360ea7)
440
+
441
+ converted .get! method in find with conditions
442
+ (commit 1f3012ba93a9c462e8b1daa762372a55534db29c)
443
+
444
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
445
+
446
+ * lib/bio/io/biosql/biosql.rb
447
+
448
+ establish_connection rewrite and update Class.first call with
449
+ ActiveRecord syntax. Coming from DataMapper.
450
+ (commit 66fb6ff597a2ebf2f2dc1ebe7e505fbcc46c993c)
451
+
452
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
453
+
454
+ * lib/bio/db/biosql/sequence.rb
455
+
456
+ Version developed with DataMapper, need to be tested with
457
+ ActiveRecord -current ORM-.
458
+ (commit 7bf5d24364fce8f3a466697e479af5f28c672265)
459
+
460
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
461
+
462
+ * lib/bio/io/biosql/config/database.yml
463
+
464
+ Configured development database with jdbcmysql adapter.
465
+ (commit 7e143b1d0451bce6865e560febc5c57048210416)
466
+
467
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
468
+
469
+ * lib/bio/io/biosql/ar-biosql.rb
470
+
471
+ Newly added lib/bio/io/biosql/ar-biosql.rb: In one file
472
+ definition of all BioSQL's ActiveRecords classes.
473
+ (commit 87f7bc6ac844583adc07e409c9fac7fa1f275d2b)
474
+
475
+ class Bioentry: added has_many obejct_bioentry_path and
476
+ subject_bioentry_path.
477
+ (commit e969eae59d0de098e094ea21007c34371bab3bdd)
478
+
479
+ class BioentryRelationship: added relation to Term class.
480
+ (commit f77b28045f0631391c6f4ad4e9eed15d296bec95)
481
+
482
+ class Biosequence: changed to composite primary keys,
483
+ :bioentry_id, :version.
484
+ (commit c6683346e4c13d8969bb859e882698b90d0828f1)
485
+
486
+ class SeqfeatureQualifierValue: find function deleted, wrong here.
487
+ (commit 89f64af363d0b204e50ea71924909724d56bccc4)
488
+
489
+ * lib/bio/io/sql.rb
490
+
491
+ Separated connection (see lib/bio/io/biosql.rb) from definition
492
+ of public methods.
493
+ (commit 24b9e6473ce36e3151c560ea26c3b95105656ef4)
494
+
495
+ 2009-03-17 Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>
496
+
497
+ * lib/bio/io/biosql
498
+
499
+ To integrate BioSQL ActiveRecords classes to one file, as the
500
+ first step, following 28 files listed below are deleted. In the
501
+ later commit, they will be integrated into one file,
502
+ lib/bio/io/biosql/ar-biosql.rb.
503
+ (commit 0ea9f08b36e10e50c855d4346194849e8e7a263b)
504
+
505
+ * lib/bio/io/biosql/biodatabase.rb
506
+ * lib/bio/io/biosql/bioentry.rb
507
+ * lib/bio/io/biosql/bioentry_dbxref.rb
508
+ * lib/bio/io/biosql/bioentry_path.rb
509
+ * lib/bio/io/biosql/bioentry_qualifier_value.rb
510
+ * lib/bio/io/biosql/bioentry_reference.rb
511
+ * lib/bio/io/biosql/bioentry_relationship.rb
512
+ * lib/bio/io/biosql/biosequence.rb
513
+ * lib/bio/io/biosql/comment.rb
514
+ * lib/bio/io/biosql/dbxref.rb
515
+ * lib/bio/io/biosql/dbxref_qualifier_value.rb
516
+ * lib/bio/io/biosql/location.rb
517
+ * lib/bio/io/biosql/location_qualifier_value.rb
518
+ * lib/bio/io/biosql/ontology.rb
519
+ * lib/bio/io/biosql/reference.rb
520
+ * lib/bio/io/biosql/seqfeature.rb
521
+ * lib/bio/io/biosql/seqfeature_dbxref.rb
522
+ * lib/bio/io/biosql/seqfeature_path.rb
523
+ * lib/bio/io/biosql/seqfeature_qualifier_value.rb
524
+ * lib/bio/io/biosql/seqfeature_relationship.rb
525
+ * lib/bio/io/biosql/taxon.rb
526
+ * lib/bio/io/biosql/taxon_name.rb
527
+ * lib/bio/io/biosql/term.rb
528
+ * lib/bio/io/biosql/term_dbxref.rb
529
+ * lib/bio/io/biosql/term_path.rb
530
+ * lib/bio/io/biosql/term_relationship.rb
531
+ * lib/bio/io/biosql/term_relationship_term.rb
532
+ * lib/bio/io/biosql/term_synonym.rb
533
+
534
+ 2009-03-17 Naohisa Goto <ng@bioruby.org>
535
+
536
+ * Rakefile
537
+
538
+ Rake::Task#execute now needs to take an argument. Currently,
539
+ nil is given.
540
+
541
+ 2009-02-20 Naohisa Goto <ng@bioruby.org>
542
+
543
+ * BioRuby 1.3.0 is released.
544
+
545
+ 2009-02-19 Naohisa Goto <ng@bioruby.org>
546
+
547
+ * lib/bio/version.rb
548
+
549
+ Preparation for bioruby-1.3.0 release.
550
+ (commit fd7fc9f78bc5f4d9a10b3c0d457d9781c9ec2e49)
551
+
552
+ * bioruby.gemspec.erb
553
+
554
+ Fixed a logic to determine whether in git repository, and file
555
+ lists are changed to be sorted.
556
+ (commit ede0c0d7aeab078b6183c4e0e7c74faec32739f7)
557
+
558
+ 2009-02-18 Naohisa Goto <ng@bioruby.org>
559
+
560
+ * README.rdoc
561
+
562
+ Added list of document files bundled in the BioRuby distribution.
563
+ (commit 92748f848e4708766e44c22b2f02ac662491971f)
564
+
565
+ 2009-02-10 Naohisa Goto <ng@bioruby.org>
566
+
567
+ * KNOWN_ISSUES.rdoc
568
+
569
+ Added details about the text mode issue on mswin32/mingw32/bccwin32
570
+ and about non-UNIX/Windows systems.
571
+ (commit 342a167a23d3b078bd77b3f16f0ceb1aa071df66)
572
+
573
+ 2009-02-09 Naohisa Goto <ng@bioruby.org>
574
+
575
+ * test/unit/bio/db/test_gff.rb
576
+
577
+ Test bug fix: test_gff.rb failed in some environment (e.g. Windows)
578
+ because the default formatting rule of Float#to_s depends on the
579
+ libc implementation.
580
+ (commit f39bf88ed6a41bd328372ee7de7a23902235f833)
581
+
582
+
583
+ 2009-02-06 Naohisa Goto <ng@bioruby.org>
584
+
585
+ * lib/bio/db/gff.rb, test/unit/bio/db/test_gff.rb
586
+
587
+ * Bug fix: Bio::GFF::GFF3::Record#id and #id= should be changed
588
+ to follow the previous incompatible change of @attributes.
589
+ Thanks to Tomoaki NISHIYAMA who reports the bug ([BioRuby]
590
+ GFF3 status (possible bug?)).
591
+ * Unit tests are added.
592
+ (commit 5258d88ef98a12fd7829eb86aa8664a18a672a43)
593
+ (commit c0c7708b3e91b0d2f2d0d50a4a0ba36928057cc8)
594
+
595
+ 2009-02-05 Naohisa Goto <ng@bioruby.org>
596
+
597
+ * Rakefile
598
+
599
+ New task "tutorial2html" to generate html from doc/Tutorial.rd
600
+ and doc/Tutorial.rd.ja.
601
+ (commit 8d66fae59477f01f12b2fa3509ea34c371102725)
602
+
603
+ * doc/Tutorial.rd.html, doc/Tutorial.rd.ja.html
604
+
605
+ Automatically generated tutorial html from RD formatted documents.
606
+ (commit 90c4a23eea08b06dd758aaa0a53bea789602d252)
607
+
608
+ * doc/bioruby.css
609
+
610
+ Newly added stylesheet for the tutorial html files. The bioruby.css
611
+ have been used in http://bioruby.org/ and have been maintained by
612
+ Toshiaki Katayama.
613
+ (commit b69dc243787525de065bdf2e6b7da68d6079ab91)
614
+
615
+ * test/runner.rb
616
+
617
+ Added workaroud for test-unit-2.0.x.
618
+ (commit 475ac6a6b38e8df30de3d9bf4c7e810759ab023d)
619
+
620
+ 2009-02-04 Naohisa Goto <ng@bioruby.org>
621
+
622
+ * lib/bio/appl/blast/format0.rb
623
+
624
+ Bug fix: a null line can be inserted after query name lines.
625
+ (commit bea9ce35b4177f407575ed0752c36bba8a50f502)
626
+
627
+ 2009-02-03 Naohisa Goto <ng@bioruby.org>
628
+
629
+ * Tutorial.rd.ja
630
+
631
+ * Document bug: BioRuby shell commands seq, ent, obj were renamed to
632
+ getseq, getent, getobj, respectively. Thanks to Hiroyuki Mishima
633
+ who reports the issue ([BioRuby-ja]).
634
+ * Changes of returned value of getseq are also reflected to the
635
+ document.
636
+ * Recommended Ruby version and installation procedure are also
637
+ changed.
638
+ (commit 916e96ca549db71a550e7a5d3bd49a3149614313)
639
+
640
+ * doc/Changes-0.7.rd
641
+
642
+ Documentation forgotten in 1.1.0: rename of BioRuby shell commands.
643
+ (commit 64113314caac3453b4cc3b80ece9b5fb5841e069)
644
+
645
+ 2009-01-30 Naohisa Goto <ng@bioruby.org>
646
+
647
+ * lib/bio/appl/blast/format0.rb
648
+
649
+ Bug fix: incorrect parsing of hit sequence's whole length.
650
+ (commit 98e6f57630b2c3394a9403f58e76b102346c56ef)
651
+
652
+ Bug fix: Whole length of a hit sequence is mistakenly parsed when
653
+ it contains ",". WU-BLAST parser is also affected in addition to
654
+ NCBI BLAST parser.
655
+
656
+ * lib/bio/db/lasergene.rb, lib/bio/db/soft.rb,
657
+ lib/bio/util/color_scheme.rb, lib/bio/util/contingency_table.rb,
658
+ lib/bio/util/restriction_enzyme.rb
659
+
660
+ Removed ":nodoc:" in in "module Bio" which prevents RDoc of the
661
+ Bio module.
662
+ (commit 458db79b467d40ed02db0d085218f611e7dd5e04)
663
+
664
+ 2009-01-29 Naohisa Goto <ng@bioruby.org>
665
+
666
+ * doc/Changes-1.3.rdoc
667
+
668
+ Added documents about Bio::TogoWS and Bio::BIORUBY_VERSION.
669
+
670
+ * lib/bio/shell/plugin/entry.rb
671
+
672
+ getent (BioRuby shell command) is changed to use EBI Dbfetch or
673
+ TogoWS in addition to NCBI or KEGG API.
674
+ (commit 0e172590f60dd5a5f27a24ecd230037a7909224c)
675
+
676
+ * lib/bio/shell/plugin/togows.rb, lib/bio/shell.rb
677
+
678
+ Added new shell plugin providing accesses to TogoWS REST services.
679
+ (commit 03f6720b90e90703c23536a11b3f12c8155550ff)
680
+
681
+ * lib/bio.rb
682
+
683
+ Added autoload of Bio::TogoWS.
684
+ (commit f8605e1234164a7aa7f236b4e96a4299229753d7)
685
+
686
+ * test/functional/bio/io/test_togows.rb,
687
+ test/unit/bio/io/test_togows.rb
688
+
689
+ Newly added functional and unit tests for Bio::TogoWS::REST.
690
+ (commit f04152b80d07f44f146fa3fa0729facede865aac)
691
+
692
+ * lib/bio/io/togows.rb
693
+
694
+ New class Bio::TogoWS::REST, a REST client for the TogoWS web
695
+ service (http://togows.dbcls.jp/site/en/rest.html).
696
+ (commit 652d2534163675182b9ce30cbb1dd5efff45cd60)
697
+
698
+ * bin/br_pmfetch.rb
699
+
700
+ Changed to use Bio::BIORUBY_VERSION_ID instead of CVS version ID.
701
+ (commit f69d538ffa9ded00eb68dd306e65505d03b6c656)
702
+
703
+ * lib/bio/shell/core.rb
704
+
705
+ Changed to use BIORUBY_VERSION_ID.
706
+ (commit 4ce11656a205e85cae64eca27cef7cd94eb80930)
707
+
708
+ * bioruby.gemspec.erb
709
+
710
+ Gem version is now determined from lib/bio/version.rb or
711
+ BIORUBY_GEM_VERSION environment variable.
712
+ (commit 1811e845e60bc2847ea5717ef936bad93f9f2c87)
713
+
714
+ * Rakefile
715
+
716
+ * Changed to use lib/bio/version.rb.
717
+ * Environment variable BIORUBY_EXTRAVERSION is renamed to
718
+ BIORUBY_EXTRA_VERSION.
719
+ * Added dependency on lib/bio/version.rb to bioruby.gemspec.
720
+ (commit fb27eaa584cda1bb4cb75e10085996503361c98a)
721
+
722
+ * lib/bio.rb, lib/bio/version.rb
723
+
724
+ Bio::BIORUBY_VERSION is split into lib/bio/version.rb.
725
+ (commit 9779398c3fa0e9405a875b754a5243e0d6922c32)
726
+
727
+ * New file lib/bio/version.rb contains BioRuby version information.
728
+ * New constants: Bio::BIORUBY_EXTRA_VERSION stores extra version
729
+ string (e.g. "-pre1") and Bio::BIORUBY_VERSION_ID stores BioRuby
730
+ version string (e.g. "1.3.0-pre1").
731
+ * Bio::BIORUBY_VERSION is changed to be frozen. Above two constants
732
+ also store frozen values.
733
+
734
+ 2009-01-26 Naohisa Goto <ng@bioruby.org>
735
+
736
+ * KNOWN_ISSUES.rdoc
737
+
738
+ Newly added KNOWN_ISSUES.rdoc that describes known issues and
739
+ bugs in current BioRuby.
740
+ (commit 06b10262be0bf797a3b133e4697e9b0955408944)
741
+ (commit a65ad8b42613e46b0b4bb0650d6301da0dcc88c9)
742
+
743
+ * lib/bio/shell/plugin/ncbirest.rb, lib/bio/shell.rb
744
+
745
+ New shell plugin lib/bio/shell/plugin/ncbirest.rb, providing
746
+ "efetch", "einfo", "esearch", and "esearch_count" methods.
747
+ They act the same as those defined in Bio::NCBI::REST, except
748
+ that "efetch" fetches entries with pre-defined databases
749
+ depending on arguments.
750
+ (commit c482e1864aa0dbca3727b1059d4fe3d0aefb3917)
751
+ (commit 3360b8905fdbcd4ca050470fdb2f02a7387e8bb9)
752
+
753
+ * lib/bio/shell/plugin/entry.rb
754
+
755
+ Shell commands "getent" and "getseq" are changed to use
756
+ "efetch" method when "gb" or some variant is specified as
757
+ the database.
758
+ (commit c482e1864aa0dbca3727b1059d4fe3d0aefb3917)
759
+ (commit 3360b8905fdbcd4ca050470fdb2f02a7387e8bb9)
760
+
761
+ * bioruby.gemspec.erb, bioruby.gemspec
762
+
763
+ * Changed version to 1.2.9.9501.
764
+ * Changed to use "git ls-files" instead of "git-ls-files", and
765
+ changed not to redirect to /dev/null.
766
+ * Special treatment of bioruby.gemspec is removed.
767
+ * ChangeLog is included to RDoc.
768
+ * Set RDoc title to "BioRuby API documentation".
769
+ * Set "--line-numbers" and "--inline-source" to rdoc_options.
770
+ (commit f014685090c38eeb64219603f2c7e90574849431)
771
+ * added KNOWN_ISSUES.rdoc to files for no-git environment.
772
+ (commit 06b10262be0bf797a3b133e4697e9b0955408944)
773
+ * Ruby 1.9 support: command execution with shell can raise
774
+ an error.
775
+ (commit 3179de32f1dc746c8de975917b1718a523800d69)
776
+ * bioruby.gemspec is generated from bioruby.gemspec.erb.
777
+ (commit 4e1cd3bfb8207b357d5b71cc0fc8366f06491130)
778
+ (commit 06b10262be0bf797a3b133e4697e9b0955408944)
779
+
780
+ 2009-01-21 Naohisa Goto <ng@bioruby.org>
781
+
782
+ * ChangeLog
783
+
784
+ Added recent changes and fixed typo for recent changes.
785
+
786
+ 2009-01-20 Naohisa Goto <ng@bioruby.org>
787
+
788
+ * ChangeLog, doc/Changes-1.3.rdoc
789
+
790
+ Added ChangeLog and doc/Changes-1.3.rdoc for recent changes.
791
+ (commit be2254ddea152fddf51a2476eeb20d804b1e3123)
792
+
793
+ * bioruby.gemspec
794
+
795
+ Added bioruby.gemspec created from bioruby.gemspec.erb.
796
+ (commit 4c54597eaf09107c34ad06bc5f5f9cead77a0198)
797
+
798
+ * lib/bio/appl/blast/wublast.rb
799
+
800
+ Bug fix: parsing of exit code failed when ignoring fatal errors
801
+ (commit 44ed958acebe4324a9a48e7292c4f0ad5c0fb685)
802
+
803
+ * Bug fix: could not get exit code in WU-BLAST results executed
804
+ with a command line option "-nonnegok", "-novalidctxok", or
805
+ "-shortqueryok".
806
+ * New methods Bio::Blast::WU::Report#exit_code_message and #notes.
807
+
808
+ * Rakefile
809
+
810
+ Added package tasks and changed to use ERB instead of eruby.
811
+ (commit 7b081c173d3b1cbc46034297ea802a4e06f85b2f)
812
+
813
+ * bioruby.gemspec.erb
814
+
815
+ Use git-ls-files command to obtain list of files when available.
816
+ (commit 5d5cb24fdd56601bc43ee78facc255ca484245c0)
817
+
818
+ 2009-01-17 Naohisa Goto <ng@bioruby.org>
819
+
820
+ * Rakefile
821
+
822
+ Simple Rakefile for dynamic generation of bioruby.gemspec
823
+ (commit d5161d164f3520db25bed9aececb962428b9d6bc)
824
+
825
+ * bioruby.gemspec.erb
826
+
827
+ bioruby.gemspec is renamed to bioruby.gemspec.erb with modification.
828
+ (commit bef311668e4a3be30965ce94d41e7bde4a4e17f9)
829
+
830
+ To prevent the error "Insecure operation - glob" in GitHub,
831
+ bioruby.gemspec is renamed to bioruby.gemspec.erb, and modified
832
+ to generate the file list by using eruby.
833
+
834
+ 2009-01-15 Naohisa Goto <ng@bioruby.org>
835
+
836
+ * doc/Changes-1.3.rdoc
837
+
838
+ Changes-1.3.rd is renamed to Changes-1.3.rdoc with format
839
+ conversion, and fixed typo.
840
+ (commit 1aef599650d14362ed233dcc9a7db8d3c1db1777)
841
+
842
+ Added details about newly added classes etc.
843
+ (commit eda9fd0abbb8e430810468d777d0b585e33c25d8)
844
+
845
+ 2009-01-13 Naohisa Goto <ng@bioruby.org>
846
+
847
+ * bioruby.gemspec
848
+
849
+ Changed version to 1.2.9001, set has_rdoc = true and rdoc options.
850
+ (commit 1f63d3d5389dd3b0316e9f312b56e62371caa253)
851
+
852
+ * Gem version number changed to 1.2.9.9001 for testing gem.
853
+ * Changed to has_rdoc = true.
854
+ * README.rdoc and README_DEV.rdoc are now included to gem's rdoc,
855
+ and README.rdoc is set to the main page.
856
+ * *.yaml is now excluded from rdoc.
857
+
858
+ 2009-01-13 Jan Aerts <jan.aerts@gmail.com>
859
+
860
+ * bioruby.gemspec
861
+
862
+ Renamed gemspec.rb to bioruby.gemspec because so github builds
863
+ the gem automatically
864
+ (commit 561ae16d20f73dcd6fc3d47c41c97c32f9aadb1a)
865
+ (committer: Naohisa Goto)
866
+ (original commit date: Wed Jun 25 11:01:03 2008 +0100)
867
+
868
+ Edited gemspec because github returned an error while building gem.
869
+ (commit f0d91e07550872c2f0d5835e496af1add7759d42)
870
+ (committer: Naohisa Goto)
871
+ (original commit date: Wed Jun 25 11:03:04 2008 +0100)
872
+
873
+ 2009-01-13 Naohisa Goto <ng@bioruby.org>
874
+
875
+ * README.rdoc
876
+
877
+ Changed format from RD to RDoc with some additional URLs
878
+ (commit cb8781d701f22cbaf16575bb237a9e0cbf8cd407)
879
+
880
+ Clarified copyright of README.rdoc and BioRuby
881
+ (commit acd9e6d6e6046281c6c9c03cff1021449b8e780f)
882
+
883
+ Updated descriptions about RubyGems, and added Ruby 1.9 partial
884
+ support
885
+ (commit ff63658b255988bf0e7a9f5a2d1523d5104fe588)
886
+
887
+ 2009-01-09 Naohisa Goto <ng@bioruby.org>
888
+
889
+ * test/runner,rb
890
+
891
+ Ruby 1.9.1 support: using alternatives if no Test::Unit::AutoRunner
892
+ (commit 5df2a9dc0642d4f1e9a4398d6af908780d622a6e)
893
+
894
+ 2009-01-05 Naohisa Goto <ng@bioruby.org>
895
+
896
+ * lib/bio/db/fantom.rb
897
+
898
+ Bug fix: incomplete cgi parameter escaping, and suppressing warnings.
899
+ (commit 754d8815255a0f0db20df9dd74f9f146605d430e)
900
+
901
+ * Bug fix: incomplete cgi parameter escaping for ID string in
902
+ Bio::FANTOM.get_by_id (and Bio::FANTOM.query which internally
903
+ calls the get_by_id method).
904
+ * Warning message "Net::HTTP v1.1 style assignment found" when
905
+ $VERBOSE=true is suppressed.
906
+ * Removed obsolete "rescue LoadError" when require 'rexml/document'.
907
+
908
+ * lib/bio/io/fetch.rb
909
+
910
+ Bug fix: possible incomplete form key/value escaping.
911
+ (commit ecaf2c66261e4ce19ab35f73e305468e1da412ed)
912
+
913
+ * Bug fix: possible incomplete form key/value escaping
914
+ * Refactoring: changed to use private methods _get and _get_single
915
+ to access remote site.
916
+
917
+ * lib/bio/io/pubmed.rb
918
+
919
+ Bug fix: possible incomplete escaping of parameters, and
920
+ suppressing warnings
921
+ (commit 93daccabb1a82bb20e92798c1810182dfb836ba7)
922
+
923
+ * Bug fix: possible incomplete string escaping of REST parameters
924
+ in Bio::PubMed#query and #pmfetch.
925
+ * Warning message "Net::HTTP v1.1 style assignment found" when
926
+ $VERBOSE=true is suppressed.
927
+ * Removed obsolete "unless defined?(CGI)".
928
+
929
+ * lib/bio/command.rb, test/unit/bio/test_command.rb
930
+
931
+ Bug fix: incomplete escaping in Bio::Command.make_cgi_params etc.
932
+ (commit 17c8f947e5d94012921f9252f71460e9d8f593e3)
933
+
934
+ * Buf fix: in Bio::Command.make_cgi_params and
935
+ make_cgi_params_key_value, string escaping of form keys and values
936
+ is incomplete.
937
+ * Warning message "useless use of :: in void context" is suppressed
938
+ when running test/unit/bio/test_command.rb with $VERBOSE=true.
939
+ * Unit tests are added.
940
+
941
+ * lib/bio/appl/, lib/bio/io/ (9 files)
942
+
943
+ Suppress warning message "Net::HTTP v1.1 style assignment found"
944
+ when $VERBOSE = true.
945
+ (commit a2985eb1f3aed383f1b1b391f2184317c7fd21c7)
946
+
947
+ 2009-01-02 Naohisa Goto <ng@bioruby.org>
948
+
949
+ * README.rdoc
950
+
951
+ Changing optional requirements, recommended Ruby version, and
952
+ setup.rb credit.
953
+ (commit a5462ab4bd403d2d833e5d6db26ae98ca763513c)
954
+
955
+ 2008-12-30 Naohisa Goto <ng@bioruby.org>
956
+
957
+ * README.rdoc
958
+
959
+ Fixed grammar and spelling in README.rdoc, indicated by
960
+ Andrew Grimm at git://github.com/agrimm/bioruby.git
961
+ in Sun Sep 21 19:59:03 2008 +1000.
962
+ (commit 446918037bff392b9c6bc6828720c585733a8f4b)
963
+
964
+ 2008-12-30 Naohisa Goto <ng@bioruby.org>
965
+
966
+ * lib/bio.rb
967
+
968
+ Changed BIORUBY_VERSION to 1.3.0, which will be the next BioRuby
969
+ release version number.
970
+ (commit b000b1c4a5a136ab287b517b8b8c66e54f99a8a8).
971
+
972
+ * doc/Changes-1.3.rd
973
+
974
+ Added documents about changed points for 1.3.0 release.
975
+ (commit 028e323e784eb60b18f941cce1e3752abff1433c)
976
+
977
+ * lib/bio/appl/blast/format8.rb
978
+
979
+ Ruby 1.9 support: String#each_line instead of String#each
980
+ (commit 1bc59708137fd46911d5892e4712cc49c71fa031)
981
+
982
+ * lib/bio/io/flatfile/splitter.rb
983
+
984
+ Checks for undefined constants are added for running without
985
+ "require 'bio'" in unit tests.
986
+ (commit 311176d4d390e5948348f623ff3632454136a03f)
987
+
988
+ * lib/bio/appl/blast.rb, lib/bio/appl/blast/report.rb,
989
+ test/unit/bio/appl/test_blast.rb
990
+
991
+ Support for default (-m 0) and tabular (-m 8) formats in
992
+ Bio::Blast.reports.
993
+
994
+ * Added support for default (-m 0) and tabular (-m 8) formats in
995
+ Bio::Blast.reports method. For the purpose, Bio::Blast::Report_tab
996
+ is added to read tabular format by using Bio::FlatFile.
997
+ * Unit tests are added.
998
+
999
+ 2008-12-26 Naohisa Goto <ng@bioruby.org>
1000
+
1001
+ * lib/bio/appl/paml/codeml/rates.rb
1002
+
1003
+ Ruby 1.9 support: String#each_line instead of String#each
1004
+ (commit 1789a3975c4c82d3b45f545893be8f2a7bf47a01)
1005
+
1006
+ 2008-12-26 Naohisa Goto <ng@bioruby.org>
1007
+
1008
+ * lib/bio/command.rb, lib/bio/appl/fasta.rb,
1009
+ lib/bio/appl/blast/genomenet.rb
1010
+
1011
+ Refactoring and following the change of the remote site
1012
+ fasta.genome.jp.
1013
+ (commit 671092dff67890fc48dd7ff2f606c4cedc2eb02c)
1014
+
1015
+ * New method Bio::Command.http_post_form.
1016
+ * Bio::Blast::Remote::GenomeNet#exec_genomenet and
1017
+ Bio::Fasta#exec_genomenet are changed to use the new method.
1018
+ * Changed a regexp. in Bio::Fasta#exec_genomenet is changed
1019
+ following the change of the remote GenomeNet (fasta.genome.jp).
1020
+
1021
+ 2008-12-24 Naohisa Goto <ng@bioruby.org>
1022
+
1023
+ * lib/bio/location.rb, test/unit/bio/test_location.rb
1024
+
1025
+ New method Bio::Locations#to_s with bug fix, etc.
1026
+ (commit 115b09456881e1d03730d0b9e7a61a65abf6a1fe)
1027
+
1028
+ * New method Bio::Locations#to_s is added.
1029
+ * New attributes Bio::Locations#operator and Bio::Location#carat.
1030
+ * Changed not to substitute from "order(...)" or "group(...)" to
1031
+ "join(...)".
1032
+ * Bug fix: Bio::Locations.new(str) changes the argument string
1033
+ when the string contains whitespaces.
1034
+ * Unit tests for Bio::Locations#to_s are added.
1035
+
1036
+ 2008-12-20 Naohisa Goto <ng@bioruby.org>
1037
+
1038
+ * test/functional/bio/appl/test_pts1.rb,
1039
+ test/unit/bio/appl/test_pts1.rb
1040
+
1041
+ Moved part of test_pts1.rb using network from test/unit to
1042
+ test/functional.
1043
+ (commit 933ff3e7d615fe6521934f137519ea84b3b517f2)
1044
+
1045
+ 2008-12-18 Naohisa Goto <ng@bioruby.org>
1046
+
1047
+ * test/unit/bio/io/test_soapwsdl.rb
1048
+
1049
+ Ruby 1.9 support: following the change of Object#instance_methods
1050
+ (commit 008cf5f43786f6143f74889e0ec53d1c8a452aa2)
1051
+
1052
+ Note that SOAP/WSDL library is no longer bundled with Ruby 1.9,
1053
+ and tests in test_soapwsdl.rb may fail.
1054
+
1055
+ * test/unit/bio/io/test_ddbjxml.rb
1056
+
1057
+ Ruby 1.9 support: following the change of Module::constants
1058
+ (commit ed1ad96e7ed9d6c7d67e5413a22ba935a3b36efa)
1059
+
1060
+ * lib/bio/util/restriction_enzyme/single_strand.rb
1061
+
1062
+ Ruby 1.9 support: changed Array#to_s to join, Symbol#to_i to __id__,
1063
+ etc.
1064
+ (commit a29debb8c03244c1ce61317d6df0a2c5d066de3d)
1065
+
1066
+ * Ruby 1.9 support: in pattern method, changed to use Array#join
1067
+ instead of Array#to_s.
1068
+ * Ruby 1.9 support: in self.once method, changed to use
1069
+ Object#__id__ instead of Symbol#to_i.
1070
+ * self.once is changed to be a private class method.
1071
+
1072
+ 2008-12-18 Naohisa Goto <ng@bioruby.org>
1073
+
1074
+ * lib/bio/db/rebase.rb
1075
+
1076
+ Ruby 1.9 support: changed not to use String#each, etc.
1077
+ (commit 47ba6e9fcf864f5881211e766f2e47b60dde178a)
1078
+
1079
+ * Ruby 1.9 support: In parse_enzymes, parse_references, and
1080
+ parse_suppliers methods, String#each is changed to each_line.
1081
+ * Changed to use require instead of autoload, to reduce support cost.
1082
+
1083
+ 2008-12-16 Moses Hohman <moses@moseshohman.com>
1084
+
1085
+ * lib/bio/db/medline.rb, test/unit/bio/db/test_medline.rb
1086
+
1087
+ fix medline parsing of author last names that are all caps
1088
+ (commit 5f37d566fc2efa4878efbd19e83f909a58c4cb00)
1089
+
1090
+ 2008-12-15 Mitsuteru Nakao <n@bioruby.org>
1091
+
1092
+ * lib/bio/db/kegg/glycan.rb
1093
+
1094
+ Bug fix in Bio::KEGG::GLYCAN#mass.
1095
+ Thanks to a reporter.
1096
+ (commit cb8f1acc4caebf1f04d4a6c141dd4477fcb5394b)
1097
+ (committer: Naohisa Goto)
1098
+
1099
+ 2008-12-15 Naohisa Goto <ng@bioruby.org>
1100
+
1101
+ * lib/bio/pathway.rb, test/unit/bio/test_pathway.rb
1102
+
1103
+ Fixed pending bugs described in unit test, and Ruby 1.9 support
1104
+ (commit 97b3cd4cf78eff8aede16369298aaacf1c319b68)
1105
+
1106
+ * Pending bugs described in test/unit/bio/test_pathway.rb are fixed.
1107
+ Fixed a bug in subgraph: does not include nodes w/o edges.
1108
+ A bug in cliquishness depending on the subgraph bug is also fixed.
1109
+ * Bio::Pathway#cliquishness is changed to calculate cliquishness
1110
+ (clustering coefficient) for not only undirected graphs but also
1111
+ directed graphs. Note that pending proposed specification changes
1112
+ previously written in test_pathway.rb (raises error for directed
1113
+ graphs, and return 1 for a node that has only one neighbor node)
1114
+ are rejected.
1115
+ * Ruby 1.9 support: To avoid dependency to the order of objects
1116
+ in Hash#each (and each_keys, etc.), Bio::Pathway#index is used
1117
+ to specify preferences of nodes in a graph. Affected methods
1118
+ are: to_matrix, dump_matrix, dump_list, depth_first_search.
1119
+ * Bug fix in the libpath magic in test/unit/bio/test_pathway.rb.
1120
+
1121
+ 2008-12-09 Naohisa Goto <ng@bioruby.org>
1122
+
1123
+ * lib/bio/db/newick.rb, lib/bio/tree.rb
1124
+
1125
+ Ruby 1.9 support: suppressing "warning: shadowing outer local
1126
+ variable".
1127
+ (commit 6fe31f0a42a87631bdee3796cff65afb053b2add)
1128
+
1129
+ 2008-12-05 Naohisa Goto <ng@bioruby.org>
1130
+
1131
+ * test/unit/bio/io/test_fastacmd.rb
1132
+
1133
+ Ruby 1.9 support: changed to use respond_to?, etc.
1134
+ (commit 5d6c92c752c00f07ed856fd209c8078ef9fdf57a)
1135
+
1136
+ * Following the change of Module#methods in Ruby 1.9, changed
1137
+ to use respond_to?().
1138
+ * The test path '/tmp/test' is replaced with '/dev/null'
1139
+
1140
+ * lib/bio/db/gff.rb
1141
+
1142
+ Ruby 1.9 support: changes following the change of String#[]
1143
+ (commit c25cc506bffcf1f2397ac2210153cfbfbbcb4942)
1144
+
1145
+ * lib/bio/reference.rb
1146
+
1147
+ Ruby 1.9 support: using enumerator instead of String#collect
1148
+ (commit ea99242570fc8b2e2a869db84b7daaa7737f23e0)
1149
+
1150
+ * test/unit/bio/test_location.rb
1151
+
1152
+ Test bug fix: wrong number in libpath magic
1153
+ (commit aa45101246bc42f78a21ee110bc58e59f532e24a)
1154
+
1155
+ * test/unit/bio/db/test_nexus.rb
1156
+
1157
+ Test bug fix: missing libpath magic
1158
+ (commit d54eed426461f3a3148953fda1f7b428e74051c6)
1159
+
1160
+ Thanks to Anthony Underwood who reports the bug in his Github
1161
+ repository.
1162
+
1163
+ * test/unit/bio/db/pdb/test_pdb.rb
1164
+
1165
+ Test bug fix: wrong number in libpath magic
1166
+ (commit b53d703a8dd72608ab5ea03457c2828470069f2f)
1167
+
1168
+ 2008-12-04 Naohisa Goto <ng@bioruby.org>
1169
+
1170
+ * test/unit/bio/db/embl/test_embl_to_bioseq.rb
1171
+
1172
+ Test bug fix: typing error (found by using Ruby 1.9)
1173
+ (commit fa52f99406ddd42221be354346f67245b3572510)
1174
+
1175
+ * test/unit/bio/db/embl/test_common.rb
1176
+
1177
+ Ruby 1.9 support: following the change of Module#instance_methods
1178
+ (commit d18fa7c1c3660cf04ec2a8a42d543a20a77cee2c)
1179
+
1180
+ In Ruby 1.9, Module#instance_methods returns Array containing
1181
+ Symbol objects instead of String. To support both 1.8 and 1.9,
1182
+ "to_s" is added to every affected test method.
1183
+
1184
+ * lib/bio/appl/tmhmm/report.rb
1185
+
1186
+ Ruby 1.9 support: using enumerator if the entry is a string
1187
+ (commit 36968122b64b722e230e3e1b52d78221c0b60884)
1188
+
1189
+ * lib/bio/appl/pts1.rb
1190
+
1191
+ Ruby 1.9 support: String#each to each_line and Array#to_s to join('')
1192
+ (commit c4c251d5e94167512a0b8a38073a09b72994c08f)
1193
+
1194
+ * test/unit/bio/appl/test_fasta.rb
1195
+
1196
+ Ruby 1.9 support: changed to use Array#join instead of Array#to_s
1197
+ (commit bf8823014488166c6e1227dd26bdca344c9f07b7)
1198
+
1199
+ * lib/bio/appl/blast.rb
1200
+
1201
+ Ruby 1.9 support: String#each is changed to String#each_line
1202
+ (commit 3e177b9aecf6b54a5112fd81fc02386d18fc14b9)
1203
+
1204
+ * lib/bio/appl/hmmer/report.rb
1205
+
1206
+ Ruby 1.9 support: String#each is changed to String#each_line
1207
+ (commit 63bdb3a098bc447e7bd272b3be8f809b4b56d451)
1208
+
1209
+ * lib/bio/appl/genscan/report.rb
1210
+
1211
+ Ruby 1.9 support: String#each is changed to String#each_line
1212
+ (commit 082250786756de2b4171b3a00e0c4faaa816fc8f)
1213
+
1214
+ * test/functional/bio/io/test_ensembl.rb
1215
+
1216
+ Using jul2008.archive.ensembl.org for workaround of test failure.
1217
+ (commit 1d286f222cdc51cf1323d57c1c79e6943d574829)
1218
+
1219
+ Due to the renewal of Ensembl web site, lib/bio/io/ensembl.rb
1220
+ does not work for the latest Ensembl. For a workaround of
1221
+ the failure of tests in test/functional/bio/io/test_ensembl.rb,
1222
+ tests for Ensembl#exportview are changed using Ensembl archive
1223
+ (http://jul2008.archive.ensembl.org/).
1224
+
1225
+ 2008-12-03 Naohisa Goto <ng@bioruby.org>
1226
+
1227
+ * sample/demo_sequence.rb
1228
+
1229
+ sample/demo_sequence.rb, example of sequence manipulation.
1230
+ (commit b7f52b47dbcc7d32f4eb7377d2b1510eb1991fd5)
1231
+
1232
+ The content of this file is moved from previous version of
1233
+ lib/bio/sequence.rb (inside the "if __FILE__ == $0").
1234
+
1235
+ 2008-12-02 Naohisa Goto <ng@bioruby.org>
1236
+
1237
+ * lib/bio/appl/paml/baseml.rb, etc. (17 files)
1238
+
1239
+ Support for baseml and yn00 (still under construction), and
1240
+ incompatible changes to Bio::PAML::Codeml.
1241
+ (commit d2571013409661b4d7be8c5c9db14dbe9a9daaaf)
1242
+
1243
+ * Security fix: To prevent possible shell command injection,
1244
+ changed to use Bio::Command.query_command instead of %x.
1245
+ * Bug fix with incompatible changes: Using Tempfile.new.path
1246
+ as default values are removed because this can cause
1247
+ unexpected file loss during garbage collection.
1248
+ * Change of method/file names: The term "config file" is changed
1249
+ to "control file" because the term "config file" is never used
1250
+ in PAML documents. The term "options" is changed to "parameters"
1251
+ because the "options" have been used for command-line arguments
1252
+ in other wrappers (e.g. Bio::Blast, Bio::ClustalW). The term
1253
+ "parameters" is also used in BioPerl's
1254
+ Bio::Tools::Run::Phylo::PAML.
1255
+ * Bio::PAML::Codeml.create_config_file, create_control_file,
1256
+ Bio::PAML::Codeml#options, and #options= are now deprecated.
1257
+ They will be removed in the future.
1258
+ * New class Bio::PAML::Common, basic wrapper common to PAML programs.
1259
+ Bio::PAML::Codeml is changed to inherit the Common class.
1260
+ * New classes Bio::PAML::Baseml and Bio::PAML::Yn00, wrappers for
1261
+ baseml and yn00.
1262
+ * New classes Bio::PAML::Common::Report, Bio::PAML::Baseml::Report
1263
+ and Bio::PAML::Yn00::Report, but still under construction.
1264
+ * New methods Bio::PAML::Codeml#query(alignment, tree), etc.
1265
+ * test/data/paml/codeml/dummy_binary is removed because
1266
+ the default of Bio::PAML::Codeml.new is changed to use
1267
+ "codeml" command in PATH.
1268
+ * test/data/paml/codeml/config.missing_tree.txt is removed
1269
+ because treefile can be optional parameter depending on runmode.
1270
+ test/data/paml/codeml/config.missing_align.txt is also removed
1271
+ because test is changed to use normal control file parameters.
1272
+
1273
+ * lib/bio/command.rb, test/functional/bio/test_command.rb
1274
+
1275
+ Improvement of Bio::Command.query_command, call_command, etc.
1276
+ (commit e68ee45589f8063e5a648ab235d6c8bbc2c6e5ff)
1277
+
1278
+ * Improvement of Bio::Command.query_command, call_command,
1279
+ query_command_popen, query_command_fork, call_command_popen,
1280
+ and call_command_fork: they can get an option :chdir => "path",
1281
+ specifying working directory of the child process.
1282
+ * New method Bio::Command.mktmpdir backported from Ruby 1.9.0.
1283
+ * New method Bio::Command.remove_entry_secure that simply calls
1284
+ FileUtils.remove_entry_secure or prints warning messages.
1285
+ * Tests are added in test/functional/bio/test_command.rb.
1286
+ * Ruby 1.9 followup: FuncTestCommandQuery#test_query_command_open3
1287
+ failed in ruby 1.9 due to the change of Array#to_s.
1288
+
1289
+ 2008-11-19 Naohisa Goto <ng@bioruby.org>
1290
+
1291
+ * test/data/paml/codeml/
1292
+
1293
+ Removed some files in test/data/paml/codeml/ because of potential
1294
+ copyright problem, because they are completely identical with
1295
+ those distributed in PAML 4.1.
1296
+ (commit 086b83d3e54f69d2b9e71af3f9647518768353b0)
1297
+
1298
+ 2008-10-21 Naohisa Goto <ng@bioruby.org>
1299
+
1300
+ * lib/bio/sequence/compat.rb
1301
+
1302
+ Bug fix: TypeError is raised in Bio::Sequence#to_s before
1303
+ Sequence#seq is called.
1304
+ (commit ea8e068a5b7f670ce62bc0d3d4b21639e3ca2714)
1305
+
1306
+ Thanks to Anthony Underwood who reported the bug and sent the patch.
1307
+
1308
+ 2008-10-19 Naohisa Goto <ng@bioruby.org>
1309
+
1310
+ * setup.rb, README.rdoc
1311
+
1312
+ install.rb is replaced by new setup.rb.
1313
+ (commit 9def7df5b81340c49534ff0bb932de62402a1c8d)
1314
+
1315
+ * install.rb is replaced by the latest version of setup.rb taken
1316
+ from the original author's svn repository (svn r2637, newer than
1317
+ version 3.4.1, latest release version.
1318
+ $ svn co http://i.loveruby.net/svn/public/setup/trunk setup).
1319
+ * README.rdoc is modified to follow the rename of install.rb to
1320
+ setup.rb.
1321
+
1322
+ 2008-10-18 Toshiaki Katayama <k@bioruby.org>
1323
+
1324
+ * lib/bio/io/ncbirest.rb
1325
+
1326
+ * New methods: Bio::NCBI::REST#einfo, #esearch_count, etc.
1327
+ * New classes: Bio::NCBI::REST::ESearch, Bio::NCBI::REST::EFetch.
1328
+ (commit 637f97deefd6cc113ef18fe18ab628eb619f3dc1)
1329
+ (committer: Naohisa Goto)
1330
+
1331
+ 2008-10-14 Naohisa Goto <ng@bioruby.org>
1332
+
1333
+ * lib/bio/sequence/common.rb, test/unit/bio/sequence/test_common.rb,
1334
+ test/unit/bio/sequence/test_compat.rb,
1335
+ test/unit/bio/sequence/test_na.rb
1336
+
1337
+ Bug fix: Bio::Sequence::Common#randomize severely biased.
1338
+ (commit 02de70cbf036b41a50d770954f3b16ba2beca880)
1339
+
1340
+ * Bug fix: Bio::Sequence::Common#randomize was severely biased.
1341
+ To fix the bug, it is changed to used Fisher-Yates shuffle,
1342
+ as suggested by Anders Jacobsen.
1343
+ ([BioRuby] Biased Bio::Sequence randomize())
1344
+ * The module method Bio::Sequence::Common.randomize is removed
1345
+ because it is not used anymore.
1346
+ * Unit tests for Bio::Sequence::Common#randomize are added.
1347
+ * To avoid possible test class name conflicts, class/module
1348
+ names are changed in test_na.rb, test_compat.rb, and
1349
+ test_common.rb.
1350
+
1351
+ 2008-10-14 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
1352
+
1353
+ * lib/bio/io/sql.rb
1354
+
1355
+ Changed the demonstration code in the "if __FILE__ == $0".
1356
+ (commit 9942105920182c809564554bb0d1dba33fe4caab)
1357
+
1358
+ * lib/bio/db/biosql/sequence.rb
1359
+
1360
+ Fix: typing error
1361
+ (commit 67fbbb93adaa8b4b91de3703a235bc75eaef842a)
1362
+
1363
+ 2008-10-14 Naohisa Goto <ng@bioruby.org>
1364
+
1365
+ * lib/bio/db/biosql/sequence.rb, lib/bio/io/sql.rb
1366
+
1367
+ Merging patches by Raoul in commit
1368
+ 496561a70784d3a1a82bf3117b2d267c7625afac which are ignored
1369
+ when rebasing, probably because of manually editing during merge.
1370
+ (commit c699253d53510c0e76188a72004651a4635088b3)
1371
+
1372
+ 2008-10-10 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
1373
+
1374
+ * lib/bio/db/biosql/sequence.rb
1375
+
1376
+ Fix: check on nil objects (to_biosql)
1377
+ (commit f701e9a71f524ee4373c94ee1bd345e87f16f6ce)
1378
+
1379
+ BugFix: ex. /focus="true" in output was /focus="t",
1380
+ qualifier.value.to_s fix the bug
1381
+ (commit f6e1530f3372c87031b551e5c76e24f264891e64)
1382
+
1383
+ * lib/bio/io/biosql/seqfeature.rb
1384
+
1385
+ BugFix: seqfeature_qualifier_value returned ordered only by rank
1386
+ (commit fb74009393eeca6743f78b7b45cb66858c41d733)
1387
+
1388
+ * lib/bio/io/biosql/bioentry.rb
1389
+
1390
+ BugFix: seqfeatures returned ordered by rank
1391
+ (commit 25a249d87d23bd9cb4e671053019675836fcd38c)
1392
+
1393
+ * lib/bio/db/biosql/sequence.rb
1394
+
1395
+ Fixed to suppress warnings: Bio::Features is obsoleted.
1396
+ (commit 198a1e893dd4515d61276c9cce8905f02130e721)
1397
+
1398
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
1399
+
1400
+ Removed alias comment.
1401
+ (commit c037ec565987634b354ff6d77dbbe7c9d83a9e7c)
1402
+
1403
+ * lib/bio/db/biosql/sequence.rb
1404
+
1405
+ Implemented Entry's comments and reference's comments.
1406
+ Fixed species common name.
1407
+ (commit bd3b24ea53ebd9b0ec9dd9f15c27091fe6143e28)
1408
+
1409
+ * lib/bio/io/biosql/bioentry.rb
1410
+
1411
+ Cleaned, deleted pk and seq reference
1412
+ (commit 14bcf90334ec3c3f1c1784977b329ae641e9e106)
1413
+
1414
+ * lib/bio/io/biosql/comment.rb
1415
+
1416
+ cleaned codes
1417
+ (commit 54976693350ab0512cecf946999c2868b9e88007)
1418
+
1419
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
1420
+
1421
+ Added comments, comment adapter.
1422
+ (commit 5394ecea34778c9f571eb35cfc16e3b1a6cb6d1b)
1423
+
1424
+ 2008-10-09 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
1425
+
1426
+ * lib/bio/io/sql.rb
1427
+
1428
+ Changed the demonstration code in the "if __FILE__ == $0".
1429
+ (commit efb61d7c21d229e882c6706838c284404343fa9c)
1430
+
1431
+ * lib/bio/db/biosql/sequence.rb
1432
+
1433
+ Added support for reference. ToDo: handling comments.
1434
+ (commit 29211059ee04214d7879f900ec563c0708d8c9d6)
1435
+
1436
+ * lib/bio/io/biosql/bioentry_reference.rb
1437
+
1438
+ Fix: compisite primary keys :bioentry_id, :reference_id, :rank
1439
+ (commit eba61ba670c591f58866b37ababc4acac0cc7883)
1440
+
1441
+ * lib/bio/io/biosql/dbxref.rb
1442
+
1443
+ removed explicit pk and seq
1444
+ (commit e149f94484469fb3dfd881b45b14be7093b67e0d)
1445
+
1446
+ 2008-10-09 Naohisa Goto <ng@bioruby.org>
1447
+
1448
+ * test/functional/bio/test_command.rb,
1449
+ test/data/command/echoarg2.bat
1450
+
1451
+ Bug fix: tests in FuncTestCommandCall are failed on mswin32,
1452
+ and URL changed.
1453
+ (commit 921292f1188d85994742ce4aa156b39d6e720aad)
1454
+
1455
+ * Bug fix: tests in FuncTestCommandCall were failed on mswin32.
1456
+ To fix the test bug, a batch file test/data/command/echoarg2.bat
1457
+ is newly added. This file is only used on mswin32 or bccwin32.
1458
+ * URL for test to fetch a web page is changed to
1459
+ http://bioruby.open-bio.org/.
1460
+
1461
+ 2008-10-07 Naohisa Goto <ng@bioruby.org>
1462
+
1463
+ * test/unit/bio/appl/paml/test_codeml.rb
1464
+
1465
+ Bug fix: error on mswin32 in
1466
+ test_expected_options_set_in_config_file.
1467
+ (commit 16b8f321c653502ef801d801383a019bc45f67de)
1468
+
1469
+ Bug fix: On mswin32, test_expected_options_set_in_config_file
1470
+ in Bio::TestCodemlConfigGeneration failed with the error
1471
+ "Errno::EACCESS: Permission denied" because it attempts to remove
1472
+ the temporary file that is previously opened but not explicitly
1473
+ closed, and, in Windows, the opend file is automatically locked
1474
+ and protected from being removed.
1475
+
1476
+ * lib/bio/command.rb, test/functional/bio/test_command.rb,
1477
+ test/unit/bio/test_command.rb
1478
+
1479
+ Bio::Command improved, and added functional tests.
1480
+ (commit bb618cdfbfb56c40249aff81b6ef84742465851c)
1481
+
1482
+ * In Bio::Command.call_command_* and Bio::Command.query_command_*,
1483
+ when giving command-line array with size 1, the command might
1484
+ passed to shell. To prevent this, changed to call a new method
1485
+ Bio::Command#safe_command_line_array internally.
1486
+ * Added test/functional/bio/test_command.rb, contains unit tests
1487
+ to call external commands and to access external web sites.
1488
+
1489
+ 2008-10-06 Naohisa Goto <ng@bioruby.org>
1490
+
1491
+ * lib/bio/db/biosql/sequence.rb
1492
+
1493
+ Bio::Sequence::SQL::Sequence#seq is changed to return a
1494
+ Bio::Sequence::Generic object, because of avoiding to create
1495
+ nested Bio::Sequence object in #to_biosequence and because
1496
+ Bio::FastaFormat#seq also returns a Bio::Sequence::Generic object.
1497
+ (commit 8fb944c964ab5e1ca8905e6c4ce8e68479952935)
1498
+
1499
+ 2008-10-03 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
1500
+
1501
+ * lib/bio/io/biosql/taxon.rb
1502
+
1503
+ Added has_one :taxon_genbank_common_name,
1504
+ :class_name => "TaxonName",
1505
+ :conditions => "name_class = 'genbank common name'"
1506
+ (commit dc7a18b17cad8e603e0d3c20a5a80bc2a6f0899c)
1507
+
1508
+ * lib/bio/db/biosql/sequence.rb
1509
+
1510
+ Fix taxon identification by splitting scientific name and genbank
1511
+ common name. Fix organism/source's name composed by scientific
1512
+ name and genbank common name.
1513
+ (commit 5d6abcc0dcd05d7083622360489a5f4c361e0cc7)
1514
+
1515
+ * lib/bio/io/sql.rb
1516
+
1517
+ Working on tests about format import/export.
1518
+ (commit d28a343e4bab3cc0c04ac65dce677cfee0f81a46)
1519
+
1520
+ * lib/bio/io/biosql/term.rb
1521
+
1522
+ Fix foreign keys
1523
+ (commit c19c8766c7c0bec7561727abf2ef1bdf47d4e032)
1524
+
1525
+ * lib/bio/io/biosql/seqfeature_qualifier_value.rb
1526
+
1527
+ added composite primary keys :seqfeature_id, :term_id, :rank
1528
+ (commit cdd6a3bfc1ab748acb0c0d9161ebeb3dc7a76544)
1529
+
1530
+ * lib/bio/io/biosql/ontology.rb
1531
+
1532
+ class cleaned.
1533
+ (commit 81eb2c246d01790db72f0b08929bec5d862c959e)
1534
+
1535
+ * lib/bio/io/biosql/biodatabase.rb
1536
+
1537
+ class cleaned.
1538
+ (commit 4aede5c5fee92c2f8cdf151a3e038025b6c7fd74)
1539
+
1540
+ * lib/bio/db/biosql/sequence.rb
1541
+
1542
+ to_biosequence: removed not adapter comments.
1543
+ (commit 591fda23464c7b7031db09a8ca85deca320a5c87)
1544
+
1545
+ Removed main garbage comments.
1546
+ (commit c46d7a2b4e188a0592d5b49def17b9e6fd598268)
1547
+
1548
+ feature= Fix creation of Ontology and Term.
1549
+ (commit 95fe6d1a65e94da502529e597b137d12c3fe2fc2)
1550
+
1551
+ * lib/bio/db/biosql/biosql_to_biosequence.rb
1552
+
1553
+ :seq cleaned.
1554
+ (commit d6f719693286b74c1a0ea8a42c09a12f775b74dc)
1555
+
1556
+ 2008-10-01 Naohisa Goto <ng@bioruby.org>
1557
+
1558
+ * test/functional/bio/io/test_ensembl.rb
1559
+
1560
+ Bug fix: 3 failures occurred in test_ensembl.rb because of recent
1561
+ changes in Ensembl database (the gene ENSG00000206158 used as
1562
+ an example in this file was removed from the Ensembl database).
1563
+ To fix this, the example gene is changed to ENSG00000172146
1564
+ (OR1A1, olfactory receptor 1A1).
1565
+ (commit e20c86d2cd7d4fd1723762e8a5acc3bc311a5c1b)
1566
+
1567
+ * lib/bio/db/embl/sptr.rb, test/unit/bio/db/embl/test_sptr.rb
1568
+
1569
+ Ruby 1.9 support: in Bio::SPTR, avoid using String#each and
1570
+ Array#to_s.
1571
+ (commit 5ff56653cd7cc2520c2c04acbc9ce2bf2a0fae9a)
1572
+
1573
+ * In Bio::SPTR#gn_uniprot_parser, String#each (which is removed
1574
+ in Ruby 1.9) is changed to each_line.
1575
+ * In Bio::SPTR#cc and cc_* (private) methods, Array#to_s (whose
1576
+ behavior is changed in Ruby 1.9) is changed to join('').
1577
+ * Unit test for Bio::STPR#dr method is added and changed.
1578
+
1579
+ 2008-09-30 Naohisa Goto <ng@bioruby.org>
1580
+
1581
+ * lib/bio/db/embl/sptr.rb, test/unit/bio/db/embl/test_sptr.rb
1582
+
1583
+ Bug fix in Bio::SPTR#dr: raised error when asked it to return
1584
+ a DR key that didn't exist in the uniprot entry. Thanks to
1585
+ Ben Woodcroft who reports the bug and send a patch.
1586
+ ([BioRuby] Bio::SPTR bug and fix).
1587
+ (commit 3147683c0b41e3f9418e26b481bf8b3e9ce63b8c)
1588
+
1589
+ * lib/bio.rb
1590
+
1591
+ Added autoload of Bio::NCBI::REST, and BIORUBY_VERSION incremented.
1592
+ (commit d6a37b0fcf1fb2f6e134dcdb8e29e79ec2a8fea7)
1593
+
1594
+ * Added autoload of Bio::NCBI::REST.
1595
+ * Added comments for autoloading Bio::Sequence and Bio::Blast.
1596
+ * BIORUBY_VERSION is temporary incremented to 1.2.2, though
1597
+ the version number will not be used in upcoming release.
1598
+ Upcoming release will probably be using larger version number.
1599
+
1600
+ 2008-09-25 Raoul Jean Pierre Bonnal <raoul.bonnal@itb.cnr.it>
1601
+
1602
+ * lib/bio/db/biosql/sequence.rb
1603
+
1604
+ Updated with adapter. Problem saving big sequences.
1605
+ (commit 82d87fbaf70f9a46c40dded0b2db510a40964e62)
1606
+
1607
+ * lib/bio/io/biosql/* (25 files)
1608
+
1609
+ AR: explicit class and foreign_key reference.
1610
+ (commit 70327998186c2f943addb5d46b4bda8007ed5444)
1611
+
1612
+ 2008-09-24 Naohisa Goto <ng@bioruby.org>
1613
+
1614
+ * lib/bio/db/gff.rb, test/unit/bio/db/test_gff.rb
1615
+
1616
+ Bug fix and incompatible changes in GFF2 and GFF3 attributes.
1617
+ (commit 7b174bb842d9dcf9fd7f4b59e8f3b13ebc0ff3d4)
1618
+
1619
+ * Bug fix: GFF2 attributes parser misunderstand semicolons.
1620
+ * Incompatible change in Bio::GFF::GFF2::Record#attributes
1621
+ and Bio::GFF::GFF3::Record#attributes. Now, instead of Hash,
1622
+ the method is changed to return a nested Array, containing
1623
+ [ tag, value ] pairs, because of supporting multiple tags
1624
+ in same name. If you want to get a Hash, use
1625
+ Record#attributes_to_hash method, though some tag-value pairs
1626
+ in same tag name may not be included.
1627
+ * Bio::GFF::Record#attribute still returns a Hash for compatibility.
1628
+ * New methods for getting, setting and manipulating attributes:
1629
+ Bio::GFF::GFF2::Record#attribute, #get_attribute, #get_attributes,
1630
+ #set_attribute, #replace_attributes, #add_attribute,
1631
+ #delete_attribute, #delete_attributes, and #sort_attributes_by_tag!
1632
+ (These are also added to Bio::GFF::GFF3::Record).
1633
+ It is recommended to use these methods instead of directly
1634
+ manipulating the array returned by Record#attributes.
1635
+ * Incompatible change in GFF2 attributes parser: the priority
1636
+ of '"' (double quote) is greater than ';' (semicolon).
1637
+ Special treatment of '\;' in GFF2 is now removed.
1638
+ Unlike GFF2, in Bio::GFF, the '\;' can still be used for
1639
+ backward compatibility.
1640
+ * Incompatible changes in attribute values in Bio::GFF::GFF2.
1641
+ Now, GFF2 attribute values are automatically unescaped.
1642
+ In addition, if a value of an attribute is consisted of two
1643
+ or more tokens delimited by spaces, an object of the new class
1644
+ Bio::GFF::GFF2::Record::Value is returned instead of String.
1645
+ The new class Bio::GFF::GFF2::Record::Value aims to store
1646
+ a parsed value of an attribute. If you really want to get
1647
+ unparsed string, Value#to_s can be used.
1648
+ * Incompatible changes about data type in GFF2 columns:
1649
+ Bio::GFF::GFF2::Record#start, #end, and #frame return
1650
+ Integer or nil, and #score returns Float or nil.
1651
+ * Incompatible changes about the metadata in GFF2.
1652
+ The "##gff-version" line is parsed and the version string
1653
+ is stored to Bio::GFF::GFF2#gff_version. Other metadata
1654
+ lines are stored in an array obtained with a new method
1655
+ Bio::GFF::GFF2#metadata. Each metadata is parsed to
1656
+ Bio::GFF::GFF2::MetaData object.
1657
+ * Bio::GFF::Record#comments is renamed to #comment, and
1658
+ #comments= is renamed to #comment=, because they only allow
1659
+ a single String (or nil) and the plural form "comments"
1660
+ may be confusable. The "comments" and "comments=" methods
1661
+ can still be used, but warning messages will be shown
1662
+ when using in GFF2::Record and GFF3::Record objects.
1663
+ * New methods Bio::GFF::GFF2#to_s, Bio::GFF::GFF2::Record#to_s.
1664
+ * New methods Bio::GFF::GFF2::Record#comment_only?
1665
+ (also added in Bio::GFF::GFF3::Record).
1666
+ * Unit tests are added and modified.
1667
+
1668
+ 2008-09-18 Naohisa Goto <ng@bioruby.org>
1669
+
1670
+ * lib/bio/appl/blast/rpsblast.rb, lib/bio/appl/blast/format0.rb,
1671
+ lib/bio/io/flatfile/autodetection.rb,
1672
+ test/unit/bio/appl/blast/test_rpsblast.rb,
1673
+ test/data/rpsblast/misc.rpsblast
1674
+
1675
+ Improved support for RPS-BLAST results from multi-fasta query
1676
+ sequences.
1677
+ (commit 11f1787cf93c046c06d4a33a554210d56866274e)
1678
+
1679
+ * By using Bio::FlatFile (e.g. Bio::FlatFile.open), a rpsblast
1680
+ result generated from multiple query sequences is automatically
1681
+ split into multiple Bio::Blast::RPSBlast::Report objects
1682
+ corresponding to query sequences. For the purpose, new
1683
+ flatfile splitter class Bio::Blast::RPSBlast::RPSBlastSplitter
1684
+ is added.
1685
+ * File format autodetection for RPS-BLAST default report is added.
1686
+ * Bug fix: Bio::Blast::RPSBlast::Report#program returns incorrect
1687
+ value. To fix the bug, regular expression in
1688
+ Bio::Blast::Default::Report#format0_parse_header (private method)
1689
+ is changed.
1690
+ * Unit tests are added for Bio::Blast::RPSBlast.
1691
+
1692
+ 2008-09-17 Naohisa Goto <ng@bioruby.org>
1693
+
1694
+ * lib/bio/io/flatfile/buffer.rb,
1695
+ test/unit/bio/io/flatfile/test_buffer.rb
1696
+
1697
+ Bug fix in Bio::FlatFile::BufferedInputStream#gets.
1698
+ (commit e15012e2a94d05308d139cb010749a1829d5c57f)
1699
+
1700
+ * Bug fix: Bio::FlatFile::BufferedInputStream#gets('') might not
1701
+ work correctly. Now, BufferedInputStream#gets is refactored.
1702
+ Note that when rs = '' (paragraph mode), the behavior may still
1703
+ differ from that of IO#gets('').
1704
+ * Test methods are added to test_buffer.rb.
1705
+
1706
+ 2008-09-16 Naohisa Goto <ng@bioruby.org>
1707
+
1708
+ * lib/bio/appl/blast/wublast.rb
1709
+
1710
+ Bug fix: parse error or infinite loop for WU-BLAST reports.
1711
+ (commit 07d1554c945400f9202d7b856055743e11860752)
1712
+
1713
+ * Bug fix in Bio::Blast::WU::Report: fixed parse errors
1714
+ (errors, infinite loop, and wrong results could be generated)
1715
+ when parsing WU-BLAST reports generated by recent version of
1716
+ WU-BLAST.
1717
+ * New methods Bio::Blast::WU::Report#query_record_number,
1718
+ #exit_code, and #fatal_errors.
1719
+
1720
+ 2008-09-03 Naohisa Goto <ng@bioruby.org>
1721
+
1722
+ * lib/bio/appl/blat/report.rb
1723
+
1724
+ Bug fix: headers were parsed incorrectly with warning.
1725
+ (commit 3ff940988b76bdff75679cdf0af4c836f76fa3a1)
1726
+
1727
+ * lib/bio/io/flatfile/splitter.rb
1728
+
1729
+ To suppress warning messages "warning: private attribute?",
1730
+ private attributes are explicitly specified by using "private".
1731
+ (commit 1440b766202a2b66ac7386b9b46928834a9c9873)
1732
+
1733
+ 2008-09-01 Michael Barton <mail@michaelbarton.me.uk>
1734
+
1735
+ * lib/bio/appl/paml/codeml/report.rb
1736
+
1737
+ Added code to pull estimated tree from codeml report.
1738
+ (commit 64cc5ef6f2d949cc9193b08dfc3fde6b221950d7)
1739
+
1740
+ 2008-09-01 Naohisa Goto <ng@bioruby.org>
1741
+
1742
+ * test/unit/bio/db/embl/test_embl_rel89.rb
1743
+
1744
+ Changed test class name because of name conflict of Bio::TestEMBL.
1745
+ (commit 536cdf903a3c3908c117efd554d33117d91452f4)
1746
+
1747
+ * test/unit/bio/util/restriction_enzyme/
1748
+
1749
+ To prevent possible test class name conflicts about restriction
1750
+ enzyme.
1751
+ (commit 0fe1e7d3ed02185632f4a34d8efe1f21f755b289)
1752
+
1753
+ * Tests about restriction enzyme are moved under a new module
1754
+ Bio::TestRestrictionEnzyme to prevent possible name conflict.
1755
+ * Conflicted test class names are changed.
1756
+
1757
+ 2008-08-31 Naohisa Goto <ng@bioruby.org>
1758
+
1759
+ * test/unit/bio/db/test_prosite.rb
1760
+
1761
+ Fixed failed test due to the change of hash algorithm in Ruby 1.8.7.
1762
+ (Probably also affected in Ruby 1.9.0).
1763
+ (commit e86f8d757c45805389e154f06ccde5a3d9e8a557)
1764
+
1765
+ 2008-08-29 Naohisa Goto <ng@bioruby.org>
1766
+
1767
+ * lib/bio/appl/blast.rb
1768
+
1769
+ Bio::Blast.reports is changed to support new BLAST XML format.
1770
+ (commit 02cc0695b85f18e8254aefed78a912812fc896d6)
1771
+
1772
+ * Bio::Blast.reports is changed to support new BLAST XML format.
1773
+ * Removed unused require.
1774
+
1775
+ 2008-08-28 Naohisa Goto <ng@bioruby.org>
1776
+
1777
+ * lib/bio/appl/blast/report.rb, lib/bio/appl/blast/rexml.rb,
1778
+ lib/bio/appl/blast/xmlparser.rb,
1779
+ test/unit/bio/appl/blast/test_report.rb
1780
+
1781
+ Support for BLAST XML format with multiple queries after blastall
1782
+ 2.2.14.
1783
+ (commit de7897b5690279aae14d9bded5e682458bc61f9c)
1784
+
1785
+ * BLAST XML format with multiple query sequences generated by
1786
+ blastall 2.2.14 or later is now supported.
1787
+ * New methods Bio::Blast::Report#reports, stores Bio::Blast::Report
1788
+ objects corresponding to the multiple query sequences.
1789
+ * New methods Bio::Blast::Report::Iteration#query_id, query_def,
1790
+ and query_len, which are available only for the new format.
1791
+ * New class Bio::Blast::Report::BlastXmlSplitter, flatfile splitter
1792
+ for Bio::FlatFile system.
1793
+ * Bug fix: Bio::Blast::Report#expect returned incorrect value.
1794
+ * Fixed typo and added tests in
1795
+ test/unit/bio/appl/blast/test_report.rb.
1796
+ * Some RDoc documents are added/modified.
1797
+
1798
+ 2008-08-19 Michael Barton <mail@michaelbarton.me.uk>
1799
+
1800
+ * lib/bio/appl/paml/codeml/rates.rb
1801
+
1802
+ Updated regex for rates parser to include columns that have a '*'
1803
+ character.
1804
+
1805
+ * test/unit/bio/appl/paml/codeml/test_rates.rb
1806
+
1807
+ Updated testing for new rates file with * characters.
1808
+
1809
+ * test/data/paml/codeml/rates
1810
+
1811
+ Added rates file that includes positions with * characters.
1812
+
1813
+ 2008-08-18 Naohisa Goto <ng@bioruby.org>
1814
+
1815
+ * test/unit/bio/io/test_ddbjxml.rb
1816
+
1817
+ Changed a failed test, and added a test for
1818
+ Bio::DDBJ::XML::RequestManager.
1819
+
1820
+ 2008-08-16 Michael Barton <mail@michaelbarton.me.uk>
1821
+
1822
+ * lib/bio/appl/paml/, test/unit/bio/appl/paml/, test/data/paml/
1823
+
1824
+ Wrapper and parser for PAML Codeml program is added
1825
+ (merged from git://github.com/michaelbarton/bioruby).
1826
+ After merging, some changes were made by Naohisa Goto.
1827
+ See git log for details.
1828
+
1829
+ 2008-08-15 Naohisa Goto <ng@bioruby.org>
1830
+
1831
+ * lib/bio/appl/blast.rb, lib/bio/appl/blast/genomenet.rb
1832
+
1833
+ "-m 0" (BLAST's default) format support is improved, and fixed
1834
+ wrong example in the RDoc of Bio::Blast#query.
1835
+
1836
+ * Added support for "-m 0" (BLAST's default) format to the Bio::Blast
1837
+ factory. For the purpose, Bio::Blast#parse_result (private method)
1838
+ is changed.
1839
+ * Added support for "-m 0" (default) format to the GenomeNet BLAST
1840
+ factory (in Bio::Blast::Remote::GenomeNet).
1841
+ * Bug fix: wrong example in the RDoc in Bio::Blast#query is changed.
1842
+ * Bio::Blast#set_option (private method) is changed to determine
1843
+ format correctly.
1844
+
1845
+ * lib/bio/appl/blast/ddbj.rb, lib/bio/io/ddbjxml.rb
1846
+
1847
+ Changed always using REST version of RequestManager, and changed
1848
+ to raise error when busy.
1849
+
1850
+ * In Bio::Blast::Remote::DDBJ, changed always to use REST version
1851
+ for RequestManager, because of suppressing warning messages.
1852
+ * In Bio::DDBJ::XML::RequestManager, module REST_RequestManager is
1853
+ changed to class REST.
1854
+ * In Bio::Blast::Remote::DDBJ#exec_ddbj, changed to raise
1855
+ RuntimeError when "The search and analysis service by WWW is very
1856
+ busy now" message is returned from the server (which implies
1857
+ invalid options or queries may be given).
1858
+
1859
+ 2008-08-14 Naohisa Goto <ng@bioruby.org>
1860
+
1861
+ * lib/bio/appl/blast.rb, lib/bio/appl/blast/genomenet.rb,
1862
+ lib/bio/appl/blast/remote.rb
1863
+
1864
+ Bio::Blast#exec_genomenet is moved to genomenet.rb, with bug fix.
1865
+
1866
+ * Bio::Blast#exec_genomenet is moved to
1867
+ lib/bio/appl/blast/genomenet.rb.
1868
+ * Incompatible change: Bio::Blast#exec_* is changed to return
1869
+ String. Parsing the string is now processed in query method.
1870
+ * New module Bio::Blast::Remote, to store remote BLAST factories.
1871
+ * New module Bio::Blast::Remote::GenomeNet (and Genomenet for
1872
+ lazy including), to store exec_genomenet and other methods.
1873
+ In the future, it might be a standalone class (or something else).
1874
+ * New module methods Bio::Blast::Remote::GenomeNet.databases,
1875
+ nucleotide_databases, protein_databases, and database_description,
1876
+ to provide information of available databases.
1877
+ * Bug fix: remote BLAST on GenomeNet with long query sequences
1878
+ fails because of the change of the behavior of the remote site.
1879
+ * Incompatible change: Bio::Blast#options= can change program,
1880
+ db, format, matrix, and filter instance variables.
1881
+ * Bio::Blast#format= is added.
1882
+ * Bio::Blast.local changed to accept 4th argument: full path to
1883
+ the blastall command.
1884
+
1885
+ * lib/bio/appl/blast/ddbj.rb, lib/bio/io/ddbjxml.rb,
1886
+ lib/bio/appl/blast/genomenet.rb, lib/bio/appl/blast/remote.rb,
1887
+ lib/bio/appl/blast.rb
1888
+
1889
+ New module Bio::Blast::Remote::DDBJ, remote BLAST on DDBJ.
1890
+
1891
+ * New module Bio::Blast::Remote::DDBJ, remote BLAST routine using
1892
+ DDBJ Web API for Biology (WABI). Now, Bio::Blast.new(program,
1893
+ db, options, 'ddbj') works.
1894
+ * New class Bio::DDBJ::XML::RequestManager. In this class,
1895
+ workaround for Ruby 1.8.5's bundled SOAP4R is made.
1896
+ * Some common codes are moved from
1897
+ Bio::Blast::Remote::GenomeNet::Information to
1898
+ Bio::Blast::Remote::Information.
1899
+
1900
+ * lib/bio/io/ddbjxml.rb
1901
+
1902
+ Changed to use DDBJ REST interface for a workaround instead of
1903
+ editing WSDL. (commit a64c8da5df5076c5f55b54b7f134d22a2e8d281c)
1904
+
1905
+ 2008-08-09 Naohisa Goto <ng@bioruby.org>
1906
+
1907
+ * lib/bio/appl/blast.rb
1908
+
1909
+ * Bug fix: Bio::Blast raises TypeError without "-m" option,
1910
+ reported by Natapol Pornputapong.
1911
+ * New class Bio::Blast::NCBIOptions to treat command-line options
1912
+ for blastall (and for other NCBI tools, e.g. formatdb).
1913
+ * Changed not to overwrite @filter, @matrix or @format unless
1914
+ '-F', '-M', or '-m' option is given, respectively.
1915
+
1916
+ 2008-07-30 BioHackathon2008 participants from BioRuby project
1917
+
1918
+ * Branch 'biohackathon2008' is merged.
1919
+ See doc/Changes-1.3.rd for incompatible changes.
1920
+
1921
+ * lib/bio/sequence.rb, lib/bio/sequence/
1922
+ * lib/bio/db/embl/
1923
+ * lib/bio/db/genbank/
1924
+ * lib/bio/db/fasta.rb, lib/bio/db/fasta/
1925
+
1926
+ A new method #to_biosequence is added to Bio::EMBL, Bio::GenBank
1927
+ and Bio::FastaFormat. Bio::FastaFormat#to_seq is now an alias of
1928
+ the #to_biosequence method.
1929
+
1930
+ Bio::Sequence#output is added to output formatted text.
1931
+ Supported formats are: EMBL, GenBank, Fasta, or raw.
1932
+
1933
+ Written by Naohisa Goto and Jan Aerts.
1934
+
1935
+ * lib/bio/db/biosql/
1936
+ * lib/bio/io/sql.rb, lib/bio/io/biosql/
1937
+
1938
+ New BioSQL implementation by Raoul Jean Pierre Bonnal.
1939
+
1940
+ * lib/bio/reference.rb
1941
+ * lib/bio/feature.rb
1942
+
1943
+ Bio::References and Bio::Features are obsoleted.
1944
+ For more information, see doc/Changes-1.3.rd.
1945
+
1946
+ * (Many changes are not listed here. See git log for details.)
1947
+
1948
+ 2008-07-30 Naohisa Goto <ng@bioruby.org>
1949
+
1950
+ * lib/bio/db/gff.rb, test/unit/bio/db/test_gff.rb
1951
+
1952
+ Branch 'test-gff3' in git://github.com/ngoto/bioruby is merged.
1953
+ Fixed gff3 attribute bug, and many improvements are added.
1954
+ See doc/Changes-1.3.rd for incompatible changes.
1955
+ Thanks to Ben Woodcroft who reported the bug and contributed codes.
1956
+
1957
+ 2008-07-29 Naohisa Goto <ng@bioruby.org>
1958
+
1959
+ * lib/bio/appl/blast/format0.rb
1960
+
1961
+ Bug fix: fixed ScanError when bit score is in exponential notation
1962
+ such as 1.234e+5. Regular expressions for numerics including
1963
+ exponential notations are changed to get correct values.
1964
+
1965
+ 2008-07-18 Naohisa Goto <ng@bioruby.org>
1966
+
1967
+ * lib/bio/appl/hmmer.rb
1968
+
1969
+ Bug fix: ArgumentError caused by misspelling of a variable name.
1970
+
1971
+ 2008-06-23 Jan Aerts <jan.aerts@gmail.com>
1972
+
1973
+ * README.rdoc
1974
+ * README_DEV.rdoc
1975
+ * gemspec.rb
1976
+
1977
+ Renamed README files to RDoc gets parsed on github website.
1978
+ (commit 34b7693f74de2358759e955d8ce36cfe15e64b54)
1979
+ Edited README.rdoc and README_DEV.rdoc to reflect move from CVS
1980
+ to git.
1981
+ (commit a61b16163d3ca74f3f7c8d8e8f03f5f8c68dee60)
1982
+
1983
+ 2008-06-13 Naohisa Goto <ng@bioruby.org>
1984
+
1985
+ * lib/bio/reference.rb
1986
+ * test/unit/bio/test_reference.rb
1987
+
1988
+ * New method Bio::Reference#pubmed_url added (renamed the url method
1989
+ in CVS revision 1.25).
1990
+ * Bio::Reference#endnote is changed not to overwrite url if url is
1991
+ already given by user.
1992
+ * Improvement of Bio::Reference#bibtex method. (Idea to improve
1993
+ bibtex method is originally made by Pjotr Prins.)
1994
+
1995
+ * test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb
1996
+ "require 'bio/sequence'" is needed to run the tests in this file.
1997
+ (commit 735e3563b723645afa65f0e4213a7c92152f68ec)
1998
+
1999
+ 2008-05-19 Pjotr Prins <pjotr.prins@wur.nl>
2000
+
2001
+ * sample/fastasort.rb
2002
+
2003
+ Simple example for sorting a flatfile
2004
+ (commit 677ac7c0707860f0478e75f72f23faa05b29dc6d)
2005
+
2006
+ * doc/Tutorial.rd
2007
+ * sample/fastagrep.rb
2008
+ * sample/fastasort.rb
2009
+
2010
+ Piping FASTA files (examples and doc)
2011
+ (commit ecd5e04477246dcf6cac84a6fbd21fb59efa3cf0)
2012
+
2013
+ 2008-05-14 Naohisa Goto <ng@bioruby.org>
2014
+
2015
+ * lib/bio/appl/blast/format0.rb
2016
+
2017
+ Bug fix: Possibly because of the output format changes of PHI-BLAST,
2018
+ Bio::Blast::Default::Report::Iteration#eff_space (and the shortcut
2019
+ method in the Report class) failed for PHI-BLAST (blastpgp) results,
2020
+ and Iteration#pattern and #pattern_positions (and the
2021
+ shortcut methods in the Report class) returned incorrect values.
2022
+
2023
+ 2008-05-12 Naohisa Goto <ng@bioruby.org>
2024
+
2025
+ * lib/bio/appl/blast/xmlparser.rb, lib/bio/appl/blast/rexml.rb
2026
+
2027
+ Bug fix: unit test sometime fails due to improper treatment of some
2028
+ Blast parameters and difference between rexml and xmlparser.
2029
+ To fix the bug, types of some parameters may be changed, e.g.
2030
+ Bio::Blast::Report#expect is changed to return Float or nil.
2031
+
2032
+ * lib/bio/appl/blast/format0.rb
2033
+
2034
+ Bug fix: Bio::Blast::Default::Report#eff_space returns wrong value
2035
+ ("Effective length of database"). It should return the value of
2036
+ "Effective search space".
2037
+
2038
+ * test/unit/bio/appl/blast/test_xmlparser.rb
2039
+
2040
+ Bug fix: tests in test/unit/bio/appl/blast/test_report.rb were
2041
+ ignored because of conflicts of the names of test classes.
2042
+ Class name in test_xmlparser.rb is changed to fix the bug.
2043
+
2044
+ 2008-04-23 Naohisa Goto <ng@bioruby.org>
2045
+
2046
+ * lib/bio/db/embl/common.rb
2047
+
2048
+ Bug fix: Bio::EMBL#references failed to parse journal name,
2049
+ volume, issue, pages, and year. In addition, it might failed
2050
+ to parse PubMed ID.
2051
+ (commit c715f51729b115309a78cf29fdce7fef992da875)
2052
+
2053
+ 2008-04-18 Naohisa Goto <ng@bioruby.org>
2054
+
2055
+ * lib/bio/db/embl/sptr.rb
2056
+
2057
+ Bug fix: Bio::SPTR#references raises NoMethodError since
2058
+ lib/bio/db/embl/sptr.rb CVS version 1.34.
2059
+ (commit 1b3e484e19c9c547cecfe53858a646b525685e0d)
2060
+
2061
+ 2008-04-15 Naohisa Goto <ng@bioruby.org>
2062
+
2063
+ * lib/bio/appl/blast/rpsblast.rb
2064
+
2065
+ Newly added RPS-Blast default (-m 0) output parser.
2066
+
2067
+ 2008-04-01 Naohisa Goto <ng@bioruby.org>
2068
+
2069
+ * lib/bio/appl/blast/format0.rb
2070
+
2071
+ Fixed a bug: Failed to parse database name in some cases.
2072
+ Thanks to Tomoaki Nishiyama who reported the bug and sent patches
2073
+ ([BioRuby-ja] BLAST format0 parser fails header parsing output
2074
+ of specific databases).
2075
+
2076
+ * lib/bio/db/pdb/chain.rb, lib/bio/db/pdb/pdb.rb
2077
+
2078
+ Fixed bugs: Bio::PDB::Chain#aaseq failed for nucleotide chain;
2079
+ Failed to parse chains for some entries (e.g. 1B2M).
2080
+ Thanks to Semin Lee who reported the bugs and sent patches
2081
+ ([BioRuby] Bio::PDB parsing problem (1B2M)).
2082
+
2083
+ 2008-02-19 Toshiaki Katayama <k@bioruby.org>
2084
+
2085
+ * lib/bio/io/ncbirest.rb
2086
+ * lib/bio/io/pubmed.rb
2087
+
2088
+ NCBI E-Utilities (REST) functionality is separated to ncbirest.rb
2089
+ and pubmed.rb is changed to utilize the Bio::NCBI::REST class for
2090
+ esearch and efetch. You can now search and retrieve any database
2091
+ in any format that NCBI supports by E-Utilities through the
2092
+ Bio::NCBI::REST interface (currently, only esearch and efetch methods
2093
+ are implemented).
2094
+ (commit 0677bb69044cf6cfba453420bc1bbeb422f691c1)
2095
+ (commit f60e9f8153efacff0c97d12fb5c0830ebeb02edd)
2096
+ (commit 6e4670ab5e67ca596788f4c26a95a9687d36ce84)
2097
+
2098
+ 2008-02-13 Pjotr Prins <pjotr.prins@wur.nl>
2099
+
2100
+ * doc/Tutorial.rd
2101
+ (commit d7ee01d86d6982f6b8aa19eba9adac95bebb08e8)
2102
+
2103
+ 2008-02-12 Naohisa Goto <ng@bioruby.org>
2104
+
2105
+ * lib/bio/appl/blast/format0.rb
2106
+
2107
+ Fixed bugs: Failed to parse query length for long query
2108
+ (>= 10000 letters) as comma is inserted for digit separator
2109
+ by blastall; Failed to parse e-value for some BLASTX results.
2110
+ Thanks to Shuji Shigenobu who reported the bugs and sent patches.
2111
+
2112
+ 2008-02-11 Pjotr Prins <pjotr.prins@wur.nl>
2113
+
2114
+ * doc/Tutorial.rd
2115
+
2116
+ Expanding on the Tutorial
2117
+ (bdc1d14f497909041fa761f659a74d98702a335a)
2118
+ Minor adjustments to Tutorial
2119
+ (72b5f4f0667a3a0c44ca31b0ab8228381e37919c)
2120
+
2121
+ 2008-02-06 Pjotr Prins <pjotr.prins@wur.nl>
2122
+
2123
+ * sample/na2aa.rb
2124
+
2125
+ Simple example to translate any NA to AA fasta
2126
+ (commit 433f974219cf04342935c1760464af24a5696c49)
2127
+
2128
+ 2008-02-05 Pjotr Prins <pjotr.prins@wur.nl>
2129
+
2130
+ * sample/gb2fasta.rb
2131
+
2132
+ Fixed broken require in gb2fasta example
2133
+ (commit b55daed0d6cff2e45155be01ef2a946925c972cf)
2134
+
2135
+ 2008-02-05 Pjotr Prins <pjotr.prins@wur.nl>
2136
+
2137
+ * doc/Tutorial.rd
2138
+
2139
+ Minor tweak to Tutorial.rd
2140
+ (commit 75416d780f99de24498a47fd22703d74f9a22329)
2141
+
2142
+ 2008-02-03 Pjotr Prins <pjotr.prins@wur.nl>
2143
+
2144
+ * doc/Tutorial.rd
2145
+
2146
+ More doctests in Tutorial.rd
2147
+ (commit 39d182bb67977956c0f22631ac596d65ccce74ff)
2148
+
2149
+ 2008-02-02 Pjotr Prins <pjotr.prins@wur.nl>
2150
+
2151
+ * doc/Tutorial.rd
2152
+
2153
+ Tabs in the Tutorial broke the rd parser - the Wiki will be fixed
2154
+ now.
2155
+ (commit 49078a5dea4f16f44add1882c60bf75df67ea19b)
2156
+ Updating tutorial.
2157
+ (commit f2f2005c3964f37e2d65afef0d52e63950d6bcb7)
2158
+ (commit d2b05581953712d0ac67ba0de1aa43853ed4e27f)
2159
+
2160
+ 2008-02-02 Toshiaki Katayama <k@bioruby.org>
2161
+
2162
+ * lib/bio/shell/rails/vendor/plugins/
2163
+
2164
+ The 'generators' directory is moved under the 'bioruby' subdirectory
2165
+ so that 'bioruby --rails' command can work with Rails 2.x series
2166
+ in addition to the Rails 1.2.x series.
2167
+
2168
+ 2008-01-30 Mitsuteru Nakao <n@bioruby.org>
2169
+
2170
+ * lib/bio/appl/blast.rb
2171
+
2172
+ Fixed the bug at building the blastall command line options ('-m 0').
2173
+ (commit 61443d177847825505103488573186dfc4e7568e)
2174
+
2175
+ 2008-01-10 Naohisa Goto <ng@bioruby.org>
2176
+
2177
+ * lib/bio/appl/emboss.rb
2178
+
2179
+ Added a method Bio::EMBOSS.run(program, arguments...)
2180
+ and Bio::EMBOSS.new is obsoleted.
2181
+ (commit fa04d97b073aefe05edc34a84498ba0a57ff98d2)
2182
+
2183
+ 2008-01-10 Toshiaki Katayama <k@bioruby.org>
2184
+
2185
+ * lib/bio/io/hinv.rb
2186
+
2187
+ Bio::Hinv to access the H-invitational DB (http://h-invitational.jp/)
2188
+ web service in REST mode is added.
2189
+
2190
+ 2007-12-30 Toshiaki Katayama <k@bioruby.org>
2191
+
2192
+ * BioRuby 1.2.1 released
2193
+
2194
+ This version is not Ruby 1.9 (released few days ago) compliant yet.
2195
+
2196
+ 2007-12-28 Naohisa Goto <ng@bioruby.org>
2197
+
2198
+ * lib/bio/appl/blast/report/format0.rb
2199
+
2200
+ Fixed parse error when compisition-based statistics were enabled.
2201
+ In addition, Bio::Blast::Default::Report#references and
2202
+ Bio::Blast::Default::Report::HSP#stat_method methods are added.
2203
+ In NCBI BLAST 2.2.17, default option of composition-based
2204
+ statistics for blastp or tblastn are changed to be enabled
2205
+ by default.
2206
+
2207
+ * lib/bio/appl/blast/report/wublast.rb
2208
+
2209
+ Changed to follow the above changes in format0.rb.
2210
+
2211
+ * lib/bio/sequence/common.rb
2212
+
2213
+ Ruby 1.9 compliant: in window_search method, a local variable name
2214
+ outside the iterator loop is changed not to be shadowed by the
2215
+ iterator variable.
2216
+
2217
+ * lib/bio/db/pdb/pdb.rb
2218
+
2219
+ Ruby 1.9 compliant: changed to avoid "RuntimeError: implicit
2220
+ argument passing of super from method defined by define_method()
2221
+ is not supported. Specify all arguments explicitly." error.
2222
+
2223
+ Ruby 1.9 compliant: Bio::PDB::Record.get_record_class and
2224
+ Bio::PDB::Record.create_definition_hash (Note: they should only
2225
+ be internally used by PDB parser and users should not call them)
2226
+ are changed to follow the change of Module#constants which
2227
+ returns an array of Symbol instead of String.
2228
+
2229
+ 2007-12-26 Naohisa Goto <ng@bioruby.org>
2230
+
2231
+ * lib/bio/alignment.rb
2232
+
2233
+ Ruby 1.9 compliant: in EnumerableExtension#each_window and
2234
+ OriginalAlignment#index methods, local variable names outside the
2235
+ iterator loops are changed not to be shadowed by iterator
2236
+ variables.
2237
+
2238
+ Warning messages for uninitialized instance variables of
2239
+ @gap_regexp, @gap_char, @missing_char, and @seqclass
2240
+ are suppressed.
2241
+
2242
+ * test/unit/bio/test_alignment.rb
2243
+
2244
+ Ruby 1.9 compliant: Ruby 1.9 compliant: The last comma in Array.[]
2245
+ is no longer allowed. (For example,
2246
+ class A < Array; end; A[ 1, 2, 3, ]
2247
+ raises syntax error in Ruby 1.9.)
2248
+
2249
+ 2007-12-21 Toshiaki Katayama <k@bioruby.org>
2250
+
2251
+ * lib/bio/db/medline.rb
2252
+
2253
+ Added doi and pii methods to extract DOI and PII number from AID field
2254
+
2255
+ 2007-12-18 Naohisa Goto <ng@bioruby.org>
2256
+
2257
+ * lib/bio/db/pdb/pdb.rb
2258
+
2259
+ Bio::PDB#inspect is added to prevent memory exhaust problem.
2260
+ ([BioRuby] Parse big PDB use up all memory)
2261
+
2262
+ * lib/bio/db/pdb/model.rb
2263
+
2264
+ Bio::PDB::Model#inspect is added.
2265
+
2266
+ * lib/bio/db/pdb/chain.rb
2267
+
2268
+ Bio::PDB::Chain#inspect is added.
2269
+
2270
+ * lib/bio/db/pdb/residue.rb
2271
+
2272
+ Bio::PDB::Residue#inspect is added.
2273
+ This also affects Bio::PDB::Heterogen#inspect.
2274
+
2275
+ 2007-12-15 Toshiaki Katayama <k@bioruby.org>
2276
+
2277
+ * BioRuby 1.2.0 released
2278
+
2279
+ * BioRuby shell is improved
2280
+ * file save functionality is fixed
2281
+ * deprecated require_gem is changed to gem to suppress warnings
2282
+ * deprecated end_form_tag is rewrited to suppress warnings
2283
+ * images for Rails shell are separated to the bioruby directory
2284
+ * spinner is shown during the evaluation
2285
+ * background image in the textarea is removed for the visibility
2286
+ * Bio::Blast is fixed to parse -m 8 formatted result correctly
2287
+ * Bio::PubMed is rewrited to enhance its functionality
2288
+ * e.g. 'rettype' => 'count' and 'retmode' => 'xml' are available
2289
+ * Bio::FlatFile is improved to accept recent MEDLINE format
2290
+ * Bio::KEGG::COMPOUND is enhanced to utilize REMARK field
2291
+ * Bio::KEGG::API is fixed to skip filter when the value is Fixnum
2292
+ * A number of minor bug fixes
2293
+
2294
+ 2007-12-12 Naohisa Goto <ng@bioruby.org>
2295
+
2296
+ * lib/bio/db/newick.rb:
2297
+
2298
+ Changed to be compliant with the Gary Olsen's Interpretation of
2299
+ the "Newick's 8:45" Tree Format Standard.
2300
+
2301
+ * test/unit/bio/db/test_newick.rb
2302
+
2303
+ More tests are added.
2304
+
2305
+ * lib/bio/io/flatfile/indexer.rb
2306
+
2307
+ Fixed a misspelling in Bio::FlatFileIndex.formatstring2class.
2308
+
2309
+ 2007-11-28 Toshiaki Katayama <k@bioruby.org>
2310
+
2311
+ * lib/bio/io/pubmed.rb:
2312
+
2313
+ Fixed search, query methods (but use of esearch and efetch is
2314
+ strongly recommended).
2315
+
2316
+ efetch method is enhanced to accept any PubMed search options
2317
+ as a hash (to retrieve in XML format etc.)
2318
+
2319
+ Changed to wait 3 seconds among each access by default to be
2320
+ compliant with the NCBI terms (Make no more than one request
2321
+ every 3 seconds).
2322
+
2323
+ All Bio::PubMed.* class methods are changed to instance methods
2324
+ (interface as the class methods are remained for the backward
2325
+ compatibility).
2326
+
2327
+ 2007-07-19 Toshiaki Katayama <k@bioruby.org>
2328
+
2329
+ * BioRuby 1.1.0 released
2330
+
2331
+ 2007-07-17 Toshiaki Katayama <k@bioruby.org>
2332
+
2333
+ * lib/bio/io/das.rb
2334
+
2335
+ Fixed that mapmaster method to return correct value (mapmaseter's
2336
+ URL). This bug is reported and fixed by Dave Thorne.
2337
+
2338
+ 2007-07-16 Naohisa Goto <ng@bioruby.org>
2339
+
2340
+ * lib/bio/mafft/report.rb
2341
+
2342
+ For generic multi-fasta formatted sequence alignment,
2343
+ Bio::Alignment::MultiFastaFormat is newly added based on
2344
+ Bio::MAFFT::Report class, and Bio::MAFFT::Report is
2345
+ changed to inherit the new class.
2346
+ Tests are added in test/unit/bio/appl/mafft/test_report.rb.
2347
+
2348
+ * lib/bio/alignment.rb
2349
+
2350
+ New modules and classes Bio::Alignment::FactoryTemplate::* are added.
2351
+ They are used by following three new classes.
2352
+
2353
+ * lib/bio/appl/muscle.rb
2354
+ * lib/bio/appl/probcons.rb
2355
+ * lib/bio/appl/tcoffee.rb
2356
+
2357
+ New classess Bio::Muscle, Bio::Probcons, and Bio::Tcoffee are added
2358
+ for MUSCLE, ProbCons, and T-Coffee multiple alignment programs.
2359
+ Contributed by Jeffrey Blakeslee and colleagues.
2360
+
2361
+ * lib/bio/appl/clustalw.rb
2362
+ * lib/bio/appl/mafft.rb
2363
+
2364
+ Interfaces of Bio::ClustalW and Bio::MAFFT are added/modified
2365
+ to follow Bio::Alignment::FactoryTemplate (but not yet changed to
2366
+ use it).
2367
+
2368
+ 2007-07-09 Toshiaki Katayama <k@bioruby.org>
2369
+
2370
+ * BioRuby shell on Rails has new CSS theme
2371
+
2372
+ Completely new design for BioRuby shell on Rails translated from
2373
+ the 'DibdoltRed' theme on www.openwebdesign.org which is created by
2374
+ Darjan Panic and Brian Green as a public domain work!
2375
+
2376
+ 2007-07-09 Toshiaki Katayama <k@bioruby.org>
2377
+
2378
+ * lib/bio/db/kegg/taxonomy.rb
2379
+
2380
+ Newly added KEGG taxonomy file parser which treats taxonomic tree
2381
+ structure of the KEGG organisms. The file is available at
2382
+ ftp://ftp.genome.jp/pub/kegg/genes/taxonomy
2383
+ and is a replacement of the previously used keggtab file (obsoleted).
2384
+
2385
+ * lib/bio/db/kegg/keggtab.rb
2386
+
2387
+ Bio::KEGG::Keggtab is obsoleted as the file is no longer provided.
2388
+ Use Bio::KEGG::Taxonomy (lib/bio/db/kegg/taxonomy.rb) instead.
2389
+
2390
+ * lib/bio/shell/plugin/soap.rb
2391
+
2392
+ Newly added web service plugins for BioRuby shell which supports
2393
+ NCBI SOAP, EBI SOAP and DDBJ XML in addition to the KEGG API.
2394
+
2395
+ 2007-07-09 Naohisa Goto <ng@bioruby.org>
2396
+
2397
+ * lib/bio/db/pdb/pdb.rb
2398
+
2399
+ Pdb_LString.new is changed not to raise error for nil.
2400
+
2401
+ Fixed a bug when below records does not exist in a PDB entry:
2402
+ REMARK (remark), JRNL (jrnl), HELIX (helix),
2403
+ TURN (turn), SHEET (sheet), SSBOND (ssbond), SEQRES (seqres),
2404
+ DBREF (dbref), KEYWDS (keywords), AUTHOR (authors),
2405
+ HEADER (entry_id, accession, classification),
2406
+ TITLE (definition), and REVDAT (version) records (methods).
2407
+
2408
+ Incompatible change: Bio::PDB#record is changed to return
2409
+ an empty array for nonexistent record.
2410
+
2411
+ (reported by Mikael Borg)
2412
+
2413
+ 2007-07-09 Naohisa Goto <ng@bioruby.org>
2414
+
2415
+ * lib/bio/io/flatfile.rb
2416
+
2417
+ Bio::FlatFile.foreach is added (which is suggested by IO.foreach).
2418
+
2419
+ 2007-06-28 Toshiaki Katayama <k@bioruby.org>
2420
+
2421
+ * lib/bio/shell/setup.rb, core.rb
2422
+
2423
+ Changed not to use Dir.chdir by caching full path of the save
2424
+ directory at a start up time, so that user can freely change
2425
+ the work directory without affecting object/history saving
2426
+ functionality.
2427
+
2428
+ Bio::Shell.cache[:savedir] stores the session saving directory
2429
+ (session means shell/session/{config,history,object} files),
2430
+ Bio::Shell.cache[:workdir] stores the working directory at a start
2431
+ up time (can be same directory with the :savedir) and both are
2432
+ converted and stored as full path allowing user to use Dir.chdir
2433
+ in the shell session).
2434
+
2435
+ If --rails (-r) option is applied, 'bioruby' command will run in
2436
+ the Rails server mode, and the server will start in the :savedir.
2437
+
2438
+ (A) IRB mode
2439
+
2440
+ 1. run in the current directory and the session will be saved
2441
+ in the ~/.bioruby directory
2442
+
2443
+ % bioruby
2444
+
2445
+ 2. run in the current directory and the session will be saved
2446
+ in the foo/bar directory
2447
+
2448
+ % bioruby foo/bar
2449
+
2450
+ 3. run in the current directory and the session will be saved
2451
+ in the /tmp/foo/bar directory
2452
+
2453
+ % bioruby /tmp/foo/bar
2454
+
2455
+ (B) Rails mode
2456
+
2457
+ 4. run in the ~/.bioruby directory and the session will also be saved
2458
+ in the ~/.bioruby directory
2459
+
2460
+ % bioruby -r
2461
+
2462
+ 5. run in the foo/bar directory and the session will also be saved
2463
+ in the foo/bar directory
2464
+
2465
+ % bioruby -r foo/bar
2466
+
2467
+ 6. run in the /tmp/foo/bar directory and the session will also be
2468
+ saved in the /tmp/foo/bar directory
2469
+
2470
+ % bioruby -r /tmp/foo/bar
2471
+
2472
+ (C) Script mode
2473
+
2474
+ 7. run in the current directory using the session saved
2475
+ in the ~/.bioruby directory
2476
+
2477
+ % bioruby ~/.bioruby/shell/script.rb
2478
+
2479
+ 8. run in the current directory using the session saved
2480
+ in the foo/bar directory
2481
+
2482
+ % bioruby foo/bar/shell/script.rb
2483
+
2484
+ 9. run in the current directory using the session saved
2485
+ in the /tmp/foo/bar directory
2486
+
2487
+ % bioruby /tmp/foo/bar/shell/script.rb
2488
+
2489
+ 2007-06-21 Toshiaki Katayama <k@bioruby.org>
2490
+
2491
+ * lib/bio/shell/setup.rb
2492
+
2493
+ If no directory is specified to the bioruby command,
2494
+ use ~/.bioruby directory as the default save directory
2495
+ instead of the current directory, as suggested by Jun Sese.
2496
+
2497
+ User can use 'bioruby' command without botherd by directories
2498
+ and files previously created by the 'bioruby' command
2499
+ in the current directory even when not needed.
2500
+
2501
+ 2007-05-19 Toshiaki Katayama <k@bioruby.org>
2502
+
2503
+ * lib/bio/appl/fasta.rb
2504
+
2505
+ Bug fixed that exec_local fails to exec when @ktup is nil.
2506
+ This problem is reported and fixed by Fredrik Johansson.
2507
+
2508
+ * lib/bio/db/gff.rb
2509
+
2510
+ parser_attributes method in GFF3 class is modified to use
2511
+ '=' char as a separator instead of ' ' (which is used in
2512
+ GFF2 spec).
2513
+
2514
+ 2007-04-06 Toshiaki Katayama <k@bioruby.org>
2515
+
2516
+ * COPYING, COPYING.LIB are removed
2517
+
2518
+ BioRuby is now distributed under the same terms as Ruby.
2519
+
2520
+ On behalf of the BioRuby developer, I have asked all authors of
2521
+ the BioRuby code to change BioRuby's license from LGPL to Ruby's.
2522
+ And we have finished to change license of all modules in the BioRuby
2523
+ library. This means that Ruby user can freely use BioRuby library
2524
+ without being annoyed by licensing issues.
2525
+
2526
+ * lib/bio/db/kegg/ko.rb is renamed to lib/bio/db/kegg/ortholog.rb
2527
+
2528
+ KEGG KO database is renamed to KEGG ORTHOLOG database, thus we
2529
+ follow the change. Bio::KEGG::KO is renamed to Bio::KEGG::ORTHOLOG.
2530
+
2531
+ Bio::KEGG::ORTHOLOG#genes, dblinks methods are rewrited to use
2532
+ lines_fetch method.
2533
+
2534
+ * lib/bio/data/aa.rb
2535
+
2536
+ to_re method is changed that the generated regexp to include
2537
+ ambiguous amino acid itself - replacement of amino acid X should
2538
+ include X itself.
2539
+
2540
+ 2007-04-05 Trevor Wennblom <trevor@corevx.com>
2541
+
2542
+ * License headers are completely rewrited to Ruby's.
2543
+
2544
+ 2007-04-02 Naohisa Goto <ng@bioruby.org>
2545
+
2546
+ * lib/bio/appl/mafft.rb
2547
+
2548
+ Incompatible change: Bio::MAFFT#output is changed to return
2549
+ a string of multi-fasta formmatted text. To get an array of
2550
+ Bio::FastaFormat objects (as of 1.0 or before), please use
2551
+ report.data instead.
2552
+
2553
+ 2007-03-29 Toshiaki Katayama <k@bioruby.org>
2554
+
2555
+ * lib/bio/db/kegg/cell.rb
2556
+
2557
+ Obsoleted as the KEGG CELL database is not publically available
2558
+ any more.
2559
+
2560
+ 2007-03-28 Toshiaki Katayama <k@bioruby.org>
2561
+
2562
+ * lib/bio/shell/rails/.../bioruby_controller.rb
2563
+
2564
+ BioRuby shell on Rails access is changed to be limited only from
2565
+ the localhost for security reason (if local_request?).
2566
+
2567
+ * lib/bio/command.rb
2568
+
2569
+ The post_form method is modified to accept URL as a string and
2570
+ extended to accept params as
2571
+ array of string
2572
+ array of hash
2573
+ array of array
2574
+ or
2575
+ string
2576
+ in addition to hash (also can be ommited if not needed - defaults
2577
+ to nil).
2578
+
2579
+ Keys and parameters of params are forced to use to_s for sure.
2580
+
2581
+ * lib/bio/io/ensembl.rb
2582
+
2583
+ Re-designed to allows user to use Bio::Ensembl.new without
2584
+ creating inherited sub class.
2585
+
2586
+ Changed to use Bio::Command.post_form
2587
+
2588
+ * lib/bio/das.rb
2589
+
2590
+ Changed to use Bio::Command
2591
+
2592
+ * lib/bio/shell/plugin/das.rb
2593
+
2594
+ Newly added BioDAS client plugin for BioRuby shell.
2595
+
2596
+ das.list_sequences
2597
+ das.dna
2598
+ das.features
2599
+
2600
+ 2007-03-15 Toshiaki Katayama <k@bioruby.org>
2601
+
2602
+ * lib/bio/shell/irb.rb
2603
+
2604
+ Changed to load Rails environment when bioruby shell is invoked
2605
+ in the Rails project directory. This means that user can use
2606
+ 'bioruby' command as a better './script/console' which has
2607
+ persistent objects and shared history.
2608
+
2609
+ 2007-03-08 Toshiaki Katayama <k@bioruby.org>
2610
+
2611
+ * lib/bio/db/kegg/drug.rb
2612
+
2613
+ Newly added KEGG DRUG database parser.
2614
+
2615
+ * lib/bio/db/kegg/glycan.rb
2616
+
2617
+ Bio::KEGG::GLYCAN#bindings method is removed.
2618
+ Bio::KEGG::GLYCAN#comment, remarks methods are added.
2619
+ Bio::KEGG::GLYCAN#orthologs and dblinks methods are changed to use
2620
+ lines_fetch method.
2621
+
2622
+ * lib/bio/kegg/compound.rb
2623
+
2624
+ Bio::KEGG::COMPOUND#glycans method is added
2625
+ Bio::KEGG::COMPOUND#names method is changed to return an array
2626
+ of stripped strings.
2627
+
2628
+ * lib/bio/db/kegg/genes.rb
2629
+
2630
+ Bio::KEGG::GENES#orthologs method is added.
2631
+
2632
+ 2007-03-27 Naohisa Goto <ng@bioruby.org>
2633
+
2634
+ * lib/bio/command.rb
2635
+
2636
+ Bio::Command.call_command_fork and query_command_fork methods
2637
+ are changed to handle all Ruby exceptions in the child process.
2638
+
2639
+ * lib/bio/io/flatfile.rb
2640
+
2641
+ UniProt format autodetection was changed to follow the change of
2642
+ UniProtKB release 9.0 of 31-Oct-2006.
2643
+
2644
+ 2007-02-12 Naohisa Goto <ng@bioruby.org>
2645
+
2646
+ * lib/bio/io/flatfile.rb
2647
+
2648
+ Exception class UnknownDataFormatError is added.
2649
+ It will be raised before reading data from IO when data format
2650
+ hasn't been specified due to failure of file format autodetection.
2651
+
2652
+ 2007-02-12 Toshiaki Katayama <k@bioruby.org>
2653
+
2654
+ * lib/bio/io/flatfile.rb
2655
+
2656
+ Added support for KEGG EGENES.
2657
+
2658
+ 2007-02-02 Trevor Wennblom <trevor@corevx.com>
2659
+
2660
+ * lib/bio/util/restriction_enzyme*
2661
+
2662
+ Bio::RestrictionEnzyme stabilized.
2663
+
2664
+ 2007-02-02 Trevor Wennblom <trevor@corevx.com>
2665
+
2666
+ * lib/bio/db/lasergene.rb
2667
+
2668
+ Bio::Lasergene Interface for DNAStar Lasergene sequence file format
2669
+
2670
+ 2007-02-02 Trevor Wennblom <trevor@corevx.com>
2671
+
2672
+ * lib/bio/db/soft.rb
2673
+
2674
+ Bio::SOFT for reading SOFT formatted NCBI GEO files.
2675
+
2676
+ 2007-01-16 Toshiaki Katayama <k@bioruby.org>
2677
+
2678
+ * BioRuby shell on Rails new features and fixes
2679
+
2680
+ New features:
2681
+ * Input [#] is linked to action for filling textarea from history
2682
+ * [methods] is separated into columns for readability
2683
+
2684
+ Fixes and improvements:
2685
+ * HIDE_VARIABLES is moved from helper to controller to avoid warning
2686
+ "already initialized constant - HIDE_VARIABLES" repeated on reload.
2687
+ * <div id="evaluate"> is renamed to "log_#" with number for future
2688
+ extention.
2689
+ * <div id="log_#"> are inserted in the <div id="logs">
2690
+
2691
+ 2007-01-15 Toshiaki Katayama <k@bioruby.org>
2692
+
2693
+ * lib/bio/db.rb
2694
+
2695
+ lines_fetch method (internally used various bio/db/*.rb modules)
2696
+ is rewrited to concatenate indented sub field.
2697
+
2698
+ * lib/bio/db/kegg/compound.rb
2699
+
2700
+ Bio::KEGG::COMPOUND#comment method which returns contents of
2701
+ the COMMENT line is added
2702
+
2703
+ * lib/bio/db/kegg/enzyme.rb
2704
+
2705
+ Bio::KEGG::ENZYME#entry_id is changed to return EC number only.
2706
+ Previous version of entry_id method is renamed to entry method
2707
+ which returns a "EC x.x.x.x Enzyme" style string.
2708
+
2709
+ Bio::KEGG::ENZYME#obsolete? method is added which returns boolean
2710
+ value (true or false) according to the ENTRY line contains
2711
+ a string 'Obsolete' or not.
2712
+
2713
+ Bio::KEGG::ENZYME#all_reac, iubmb_reactions, kegg_reactions methods
2714
+ are added to support newly added ALL_REAC field.
2715
+
2716
+ Bio::KEGG::ENZYME#inhibitors and orthologs methods are added.
2717
+
2718
+ Bio::KEGG::ENZYME#substrates, products, inhibitors, cofactors,
2719
+ pathways, orthologs, diseases, motifs methods are rewrited to
2720
+ utilizes new lines_fetch method in db.rb to process continuous
2721
+ sub field.
2722
+
2723
+ * lib/bio/db/kegg/genome.rb
2724
+
2725
+ Bio::KEGG::GENOME#scaffolds, gc, genomemap methods are obsoleted.
2726
+ Bio::KEGG::GENOME#distance, data_source, original_db methods are
2727
+ added.
2728
+
2729
+ 2006-12-24 Toshiaki Katayama <k@bioruby.org>
2730
+
2731
+ * bin/bioruby, lib/bio/shell/, lib/bio/shell/rails/
2732
+ (lib/bio/shell/rails/vendor/plugins/generators/)
2733
+
2734
+ Web functionallity of the BioRuby shell is completely rewrited
2735
+ to utilize generator of the Ruby on Rails. This means we don't
2736
+ need to have a copy of the rails installation in our code base
2737
+ any more. The shell now run in threads so user does not need
2738
+ to run 2 processes as before (drb and webrick). Most importantly,
2739
+ the shell is extended to have textarea to input any code and
2740
+ the evaluated result is returned with AJAX having various neat
2741
+ visual effects.
2742
+
2743
+ * lib/bio.rb
2744
+
2745
+ Extended to have Bio.command where command can be any BioRuby
2746
+ shell methods.
2747
+ ex. puts Bio.getseq("atgc" * 10).randomize.translate
2748
+
2749
+ * lib/bio/shell/plugin/entry.rb, seq.rb
2750
+
2751
+ seq, ent, obj commands are renamed to getseq, getent, getobj
2752
+ respectively. This getseq is also changed to return Bio::Sequence
2753
+ with @moltype = Bio::Sequence::NA object instead of Bio::Sequence::NA
2754
+ object.
2755
+
2756
+ * lib/bio/db/kegg/kgml.rb
2757
+
2758
+ Some method names are changed to avoid confusion:
2759
+ * entry_type is renamed to category (<entry type="">)
2760
+ * map is renamed to pathway (<entry map="">)
2761
+
2762
+ 2006-12-19 Christian Zmasek <czmasek@burnham.org>
2763
+
2764
+ * lib/bio/db/nexus.rb
2765
+
2766
+ Bio::Nexus is newly developed during the Phyloinformatics hackathon.
2767
+
2768
+ 2006-12-16 Toshiaki Katayama <k@birouby.org>
2769
+
2770
+ * lib/bio/io/sql.rb
2771
+
2772
+ Updated to follow recent BioSQL schema contributed by
2773
+ Raoul Jean Pierre Bonnal.
2774
+
2775
+ 2006-12-15 Mitsuteru Nakao <n@bioruby.org>
2776
+
2777
+ * lib/bio/appl/iprscan/report.rb
2778
+
2779
+ Bio::Iprscan::Report for InterProScan output is newly added.
2780
+ 2006-12-15 Naohisa Goto <ng@bioruby.org>
2781
+
2782
+ * lib/bio/appl/mafft/report.rb
2783
+
2784
+ Bio::MAFFT::Report#initialize is changed to get a string of
2785
+ multi-fasta formmatted text instead of Array.
2786
+
2787
+ 2006-12-14 Naohisa Goto <ng@bioruby.org>
2788
+
2789
+ * lib/bio/appl/phylip/alignment.rb
2790
+
2791
+ Phylip format multiple sequence alignment parser class
2792
+ Bio::Phylip::PhylipFormat is newly added.
2793
+
2794
+ * lib/bio/appl/phylip/distance_matrix.rb
2795
+
2796
+ Bio::Phylip::DistanceMatrix, a parser for phylip distance matrix
2797
+ (generated by dnadist/protdist/restdist programs) is newly added.
2798
+
2799
+ * lib/bio/appl/gcg/msf.rb, lib/bio/appl/gcg/seq.rb
2800
+
2801
+ Bio::GCG::Msf in lib/bio/appl/gcg/msf.rb for GCG MSF multiple
2802
+ sequence alignment format parser, and Bio::GCG::Seq in
2803
+ lib/bio/appl/gcg/seq.rb for GCG sequence format parser are
2804
+ newly added.
2805
+
2806
+ * lib/bio/alignment.rb
2807
+
2808
+ Output of Phylip interleaved/non-interleaved format (.phy),
2809
+ Molphy alignment format (.mol), and GCG MSF format (.msf)
2810
+ are supported. Bio::Alignment::ClustalWFormatter is removed
2811
+ and methods in the module are renamed and moved to
2812
+ Bio::Alignment::Output.
2813
+
2814
+ * lib/bio/appl/clustalw.rb, lib/bio/appl/mafft.rb, lib/bio/appl/sim4.rb
2815
+
2816
+ Changed to use Bio::Command instead of Open3.popen3.
2817
+
2818
+ 2006-12-13 Naohisa Goto <ng@bioruby.org>
2819
+
2820
+ * lib/bio/tree.rb, lib/bio/db/newick.rb
2821
+
2822
+ Bio::PhylogeneticTree is renamed to Bio::Tree, and
2823
+ lib/bio/phylogenetictree.rb is renamed to lib/bio/tree.rb.
2824
+ NHX (New Hampshire eXtended) parser/writer support are added.
2825
+
2826
+ 2006-12-13 Toshiaki Katayama <k@bioruby.org>
2827
+
2828
+ * doc/Desing.rd.ja, doc/TODO.rd.ja, doc/BioRuby.rd.ja are obsoletd.
2829
+
2830
+ 2006-10-05 Naohisa Goto <ng@bioruby.org>
2831
+
2832
+ * lib/bio/db/newick.rb
2833
+
2834
+ Bio::Newick for Newick standard phylogenetic tree parser is
2835
+ newly added (contributed by Daniel Amelang).
2836
+
2837
+ * lib/bio/phylogenetictree.rb
2838
+
2839
+ Bio::PhylogeneticTree for phylogenetic tree data structure
2840
+ is newly added.
2841
+
2842
+ 2006-09-19 Toshiaki Katayama <k@bioruby.org>
2843
+
2844
+ * lib/bio/io/soapwsdl.rb
2845
+ * lib/bio/io/ebisoap.rb
2846
+ * lib/bio/io/ncbisoap.rb
2847
+
2848
+ Newly added web service modules.
2849
+
2850
+ * lib/bio/db/kegg/kgml.rb
2851
+
2852
+ Accessor for the <component> attribute is added.
2853
+
2854
+ * lib/bio/shell/plugin/codon.rb
2855
+
2856
+ Support for Pyrrolysine and Selenocysteine are added in the
2857
+ BioRuby shell.
2858
+
2859
+ * lib/bio/sshell/plugin/seq.rb
2860
+
2861
+ sixtrans, skip, step methods are added in the BioRuby shell.
2862
+ bioruby> seqtrans(seq)
2863
+
2864
+ bioruby> seq.step(window_size) {|subseq|
2865
+ # do something on subseq
2866
+ }
2867
+
2868
+ bioruby> seq.skip(window_sizep, step_size) {|subseq|
2869
+ # do something on subseq
2870
+ }
2871
+
2872
+ 2006-07-26 Toshiaki Katayama <k@bioruby.org>
2873
+
2874
+ * lib/bio/data/aa.rb
2875
+
2876
+ Amino acids J (Xle: I/L), O (Pyl: pyrrolysine) and X (unknown)
2877
+ are added (now we have consumed 26 alphabets!).
2878
+
2879
+ * lib/bio/io/fastacmd.rb
2880
+
2881
+ Fixed that new version of fastacmd (in BLAST package) changed
2882
+ the option from '-D T' to '-D 1', contributed by the author
2883
+ of this module Shuji Shigenobu.
2884
+
2885
+ * lib/bio/shell/plugin/psort.rb
2886
+
2887
+ Newly added BioRuby shell plugin for PSORT
2888
+
2889
+ * lib/bio/shell/plugin/blast.rb
2890
+
2891
+ Newly added BioRuby shell plugin for BLAST search against KEGG GENES
2892
+
2893
+ * lib/bio/db/prosite.rb
2894
+
2895
+ PROSITE#re instance method is added to translate PATTERN of
2896
+ the entry to Regexp using PROSITE.pa2re class method.
2897
+
2898
+ * lib/bio/db/kegg/genes.rb
2899
+
2900
+ Bio::KEGG::GENES#keggclass method is renamed to pathway
2901
+ Bio::KEGG::GENES#splinks method is removed
2902
+ Bio::KEGG::GENES#motifs method is added
2903
+ these reflect changes made in the original KEGG GENES database.
2904
+
2905
+ Bio::KEGG::GENES#locations method is added to return Bio::Locations
2906
+ Bio::KEGG::GENES#codon_usage is renamed cu_list (returns as Array)
2907
+ Bio::KEGG::GENES#cu is renamed to codon_usage (returns as Hash)
2908
+ Bio::KEGG::GENES#aalen, nalen methods are changed to return
2909
+ the number written in the entry (use seq.length to obtain calculated
2910
+ number as before).
2911
+
2912
+ * lib/bio/db/kegg/kgml.rb
2913
+
2914
+ Names of some accessors have been changed (including bug fixes)
2915
+ and instance variable @dom is obsoleted. Here's a list of
2916
+ incompatible attribute names with KGML tags by this change:
2917
+ <entry>
2918
+ :id -> :entry_id
2919
+ :type -> :entry_type
2920
+ names()
2921
+ <graphics>
2922
+ :name -> :label
2923
+ :type -> :shape
2924
+ <relation>
2925
+ :entry1 -> :node1
2926
+ :entry2 -> :node2
2927
+ :type -> :rel
2928
+ <subtype>
2929
+ edge()
2930
+ <reaction>
2931
+ :name -> :entry_id
2932
+ :type -> :direction
2933
+
2934
+ * lib/bio/io/das.rb
2935
+
2936
+ Bug fixed that the value of segment.stop was overwritten by
2937
+ segment.orientation.
2938
+
2939
+ 2006-07-14 Naohisa Goto <ng@bioruby.org>
2940
+
2941
+ * lib/bio/command.rb
2942
+
2943
+ Bio::Command::Tools and Bio::Command::NetTools are combined
2944
+ and re-constructed into a new Bio::Command module.
2945
+
2946
+ lib/bio/appl/blast.rb, lib/bio/appl/fasta.rb,
2947
+ lib/bio/appl/emboss.rb, lib/bio/appl/psort.rb,
2948
+ lib/bio/appl/hmmer.rb, lib/bio/db/fantom.rb,
2949
+ lib/bio/io/fastacmd.rb, lib/bio/io/fetch.rb,
2950
+ lib/bio/io/keggapi.rb, lib/bio/io/pubmed.rb, and
2951
+ lib/bio/io/registry.rb are changed to use the new Bio::Command
2952
+ instead of old Bio::Command or Net::HTTP.
2953
+
2954
+ 2006-06-29 Naohisa Goto <ng@bioruby.org>
2955
+
2956
+ * lib/bio/appl/blat/report.rb
2957
+
2958
+ Bio::BLAT::Report::Hit#milli_bad, #percent_identity, #protein?,
2959
+ #score, and #psl_version methods/attributes are newly added,
2960
+ and psl files without headers are supported (discussed in
2961
+ bioruby-ja ML).
2962
+
2963
+ 2006-06-27 Naohisa Goto <ng@bioruby.org>
2964
+
2965
+ * lib/bio/sequence/na.rb
2966
+
2967
+ Bio::Sequence::NA#gc_content, #at_content, #gc_skew, #at_skew
2968
+ are newly added. Bio::Sequence::NA#gc_percent are changed
2969
+ not to raise ZeroDivisionError and returns 0 when given sequence
2970
+ is empty.
2971
+
2972
+ * lib/bio/db/pdb/pdb.rb
2973
+
2974
+ Bio::PDB::ATOM#name, #resName, #iCode, #chaarge, #segID, and
2975
+ #element are changed to strip whitespaces when initializing.
2976
+ Bio::PDB::HETATM is also subject to the above changes.
2977
+ (suggested by Mikael Borg)
2978
+
2979
+ 2006-06-12 Naohisa Goto <ng@bioruby.org>
2980
+
2981
+ * lib/bio/io/flatfile.rb
2982
+
2983
+ Bug fix: Bio::FlatFile.open(klass, filename) didn't work.
2984
+
2985
+ 2006-05-30 Toshiaki Katayama <k@bioruby.org>
2986
+
2987
+ * lib/bio/io/soapwsdl.rb
2988
+
2989
+ Generic list_methods method which extracts web service methods
2990
+ defined in the WSDL file is added.
2991
+
2992
+ 2006-05-02 Mitsuteru Nakao <n@bioruby.org>
2993
+
2994
+ * lib/bio/appl/pts1.rb
2995
+
2996
+ Bio::PTS1 first commit.
2997
+
2998
+ 2006-04-30 Naohisa Goto <ng@bioruby.org>
2999
+
3000
+ * lib/bio/appl/blast/format0.rb
3001
+
3002
+ Bug fix: parse error for hits whose database sequence names
3003
+ contain 'Score', and subsequent hits after them would lost
3004
+ (reported by Tomoaki NISHIYAMA).
3005
+
3006
+ 2006-04-14 Mitsuteru Nakao <n@bioruby.org>
3007
+
3008
+ * lib/bio/io/ensembl.rb
3009
+
3010
+ Bio::Ensembl first commit. It is a client class for Ensembl Genome
3011
+ Browser.
3012
+
3013
+ 2006-03-22 Naohisa Goto <ng@bioruby.org>
3014
+
3015
+ * lib/bio/io/flatfile.rb
3016
+
3017
+ Bug fix: Bio::FlatFile raises error for pipes, ARGF, etc.
3018
+ The bug also affects bio/appl/mafft.rb, bio/appl/clustalw.rb,
3019
+ bio/appl/blast.rb, bio/io/fastacmd.rb, and so on.
3020
+
3021
+ Bio::FlatFile#entry_start_pos and #entry_ended_pos are
3022
+ changed to be enabled only when Bio::FlatFile#entry_pos_flag
3023
+ is true.
3024
+
3025
+ 2006-02-27 Toshiaki Katayama <k@bioruby.org>
3026
+
3027
+ * BioRuby 1.0.0 released
3028
+
3029
+ 2006-02-10 Toshiaki Katayama <k@bioruby.org>
3030
+
3031
+ * BioRuby shell is changed to use session/ directory under the current
3032
+ or specified directory to store the session information instead of
3033
+ ./.bioruby directory.
3034
+
3035
+ 2006-02-05 Toshiaki Katayama <k@bioruby.org>
3036
+
3037
+ * License to be changed to Ruby's (not yet completed).
3038
+
3039
+ 2006-02-01 Trevor Wennblom <trevor@corevx.com>
3040
+
3041
+ * Bio::RestrictionEnzyme first commit for comments.
3042
+ * See lib/bio/util/restriction_enzyme.rb and
3043
+ test/unit/bio/util/restriction_enzyme
3044
+
3045
+ 2006-01-28 Toshiaki Katayama <k@bioruby.org>
3046
+
3047
+ * lib/bio/appl/emboss.rb
3048
+
3049
+ EMBOSS USA format is now accepted via seqret/entret commands
3050
+ and also utilized in the BioRuby shell (lib/bio/shell.rb,
3051
+ plugin/entry.rb, plugin/emboss.rb).
3052
+
3053
+ * lib/bio/io/brdb.rb is removed - unused Bio::BRDB (BioRuby DB)
3054
+
3055
+ 2006-01-23 Toshiaki Katayama <k@bioruby.org>
3056
+
3057
+ * lib/bio/sequence.rb
3058
+
3059
+ Bio::Sequence is refactored to be a container class for
3060
+ any sequence annotations. Functionality is separared into
3061
+ several files under the lib/bio/sequence/ direcotry as
3062
+ common.rb, compat.rb, aa.rb, na.rb, format.rb
3063
+
3064
+ 2006-01-20 Toshiaki Katayama <k@bioruby.org>
3065
+
3066
+ * BioRuby 0.7.1 is released.
3067
+
3068
+ 2006-01-12 Toshiaki Katayama <k@bioruby.org>
3069
+
3070
+ * lib/bio/db.ra: fixed a bug of the tag_cut method introduced in 0.7.0
3071
+ (reported by Alex Gutteridge)
3072
+
3073
+ 2006-01-04 Naohisa Goto <ng@bioruby.org>
3074
+
3075
+ * Bio::PDB is refactored. See doc/Changes-0.7 for more details.
3076
+
3077
+ 2005-12-19 Toshiaki Katayama <k@bioruby.org>
3078
+
3079
+ * BioRuby 0.7.0 is released.
3080
+
3081
+ See doc/Changes-0.7.rd file for major and incompatible changes.
3082
+
3083
+ 2005-12-19 Naohisa Goto <ng@bioruby.org>
3084
+
3085
+ * lib/bio/db/pdb.rb, lib/bio/db/pdb/pdb.rb, lib/bio/db/pdb/*.rb
3086
+ * Many changes have been made.
3087
+ * Bio::PDB::FieldDef is removed and Bio::PDB::Record is completely
3088
+ changed. Now, Record is changed from hash to Struct, and
3089
+ method_missing is no longer used.
3090
+ * In the "MODEL" record, model_serial is changed to serial.
3091
+ * In any records, record_type is changed to record_name.
3092
+ * In most records contains real numbers, changed to return
3093
+ float values instead of strings.
3094
+ * Pdb_AChar, Pdb_Atom, Pdb_Character, Pdb_Continuation,
3095
+ Pdb_Date, Pdb_IDcode, Pdb_Integer, Pdb_LString, Pdb_List,
3096
+ Pdb_Real, Pdb_Residue_name, Pdb_SList, Pdb_Specification_list,
3097
+ Pdb_String, Pdb_StringRJ and Pdb_SymOP are moved under
3098
+ Bio::PDB::DataType.
3099
+ * There are more and more changes to be written...
3100
+
3101
+ * lib/bio/db/pdb/atom.rb
3102
+ * Bio::PDB::Atom is removed.
3103
+ Instead, please use Bio::PDB::Record::ATOM and
3104
+ Bio::PDB::Record::HETATM.
3105
+
3106
+ 2005-12-02 Naohisa Goto <ng:bioruby.org>
3107
+
3108
+ * lib/bio/alignment.rb
3109
+ * Old Bio::Alignment class is renamed to
3110
+ Bio::Alignment::OriginalAlignment.
3111
+ Now, new Bio::Alignment is a module. However,
3112
+ you don't mind so much because most of the class methods
3113
+ previously existed are defined to delegate to the new
3114
+ Bio::Alignment::OriginalAlignment class,
3115
+ for keeping backward compatibility.
3116
+ * New classes and modules are introduced. Please refer RDoc.
3117
+ * each_site and some methods changed to return Bio::Alignment::Site,
3118
+ which inherits Array (previously returned Array).
3119
+ * consensus_iupac now returns only standard bases
3120
+ 'a', 'c', 'g', 't', 'm', 'r', 'w', 's', 'y', 'k', 'v',
3121
+ 'h', 'd', 'b', 'n', or nil (in SiteMethods#consensus_iupac) or
3122
+ '?' (or missing_char, in EnumerableExtension#consensus_iupac).
3123
+ Note that consensus_iupac now does not return u and invalid
3124
+ letters not defined in IUPAC standard even if all bases
3125
+ are equal.
3126
+ * There are more and more changes to be written...
3127
+
3128
+ 2005-11-05 Toshiaki Katayama <k@bioruby.org>
3129
+
3130
+ * lib/bio/sequence.rb
3131
+
3132
+ Bio::Sequence.auto(str) method is added which auto detect the
3133
+ molecular type of the string and then returns the
3134
+ Bio::Sequence::NA or Bio::Sequence::AA object.
3135
+
3136
+ Bio::Sequence#blast and Bio::Sequence#fasta methods are removed.
3137
+
3138
+ * lib/bio/shell/plugin/codon.rb
3139
+
3140
+ Newly added plugin to treat codon table.
3141
+ ColoredCodonTable is ported from the codontable.rb
3142
+
3143
+ 2005-11-01 Toshiaki Katayama <k@bioruby.org>
3144
+
3145
+ * bin/bioruby, lib/bio/shell/
3146
+
3147
+ All methods are changed to private methods to avoid adding them
3148
+ in top level binding, which caused many unexpected behaviors,
3149
+ as adviced by Koichi Sasada.
3150
+
3151
+ The MIDI plugin is now able to select musical scales.
3152
+
3153
+ 2005-10-23 Toshiaki Katayama <k@bioruby.org>
3154
+
3155
+ * lib/bio/util/color_scheme
3156
+
3157
+ Newly contributed Bio::ColorScheme
3158
+
3159
+ * lib/bio/db/kegg/kgml.rb
3160
+
3161
+ Newly added KEGG KGML parser.
3162
+
3163
+ 2005-10-05 Toshiaki Katayama <k@bioruby.org>
3164
+
3165
+ * lib/bio/shell/plugin/midi.rb
3166
+
3167
+ Sequcne to MIDI plugin is contributed by Natsuhiro Ichinose
3168
+
3169
+ 2005-09-25 Toshiaki Katayama <k@bioruby.org>
3170
+
3171
+ * README.DEV
3172
+
3173
+ Newly added guideline document for the contributors.
3174
+
3175
+ * README
3176
+
3177
+ Updated and added instructions on RubyGems.
3178
+
3179
+ 2005-09-23 Toshiaki Katayama <k@bioruby.org>
3180
+
3181
+ * bin/bioruby, lib/bio/shell.rb, lib/bio/shell/core.rb,
3182
+ lib/bio/shell/session.rb, lib/bio/shell/plugin/seq.rb,
3183
+ lib/bio/shell/flatfile.rb, lib/bio/shell/obda.rb
3184
+
3185
+ Newly added BioRuby shell, the command line user interface.
3186
+ Try 'bioruby' command in your terminal.
3187
+
3188
+ * doc/Changes-0.7.rd
3189
+
3190
+ Newly added document describing incompatible and important
3191
+ changes between the BioRuby 0.6 and 0.7 versions.
3192
+
3193
+ * lib/bio/sequence.rb
3194
+
3195
+ Bio::Sequence.guess, Bio::Sequence#guess methods are added
3196
+ which guess the sequence type by following fomula (default
3197
+ value for the threshold is 0.9).
3198
+
3199
+ number of ATGC
3200
+ --------------------------------------- > threshold
3201
+ number of other chars - number of N
3202
+
3203
+ 2005-09-10 Naohisa Goto <ng@bioruby.org>
3204
+
3205
+ * lib/bio.rb, lib/bio/appl/blast.rb, lib/bio/appl/blast/format0.rb,
3206
+ lib/bio/appl/blast/report.rb, lib/bio/appl/clustalw.rb,
3207
+ lib/bio/appl/fasta.rb, lib/bio/appl/fasta/format10.rb,
3208
+ lib/bio/appl/hmmer.rb, lib/bio/appl/hmmer/report.rb,
3209
+ lib/bio/appl/mafft.rb, lib/bio/appl/psort.rb,
3210
+ lib/bio/appl/psort/report.rb, lib/bio/appl/sim4.rb,
3211
+ lib/bio/db/genbank/ddbj.rb, lib/bio/io/flatfile/bdb.rb,
3212
+ lib/bio/io/flatfile/index.rb, lib/bio/io/flatfile/indexer.rb
3213
+
3214
+ fixed autoload problem
3215
+
3216
+ * lib/bio/appl/blast.rb, lib/bio/appl/blast/report.rb
3217
+
3218
+ Bio::Blast.reports method was moved from lib/bio/appl/blast/report.rb
3219
+ to lib/bio/appl/blast.rb for autoload.
3220
+
3221
+ 2005-08-31 Toshiaki Katayama <k@bioryby.org>
3222
+
3223
+ * BioRuby 0.6.4 is released.
3224
+
3225
+ * doc/KEGG_API.rd
3226
+
3227
+ Newly added English version of the KEGG API manual.
3228
+
3229
+ * lib/bio/aa.rb
3230
+
3231
+ the 'one2name' method introduced in 0.6.3 is fixed and added 'one'
3232
+ and 'three' methods as aliases for 'to_1' and 'to_3' methods.
3233
+
3234
+ 2005-08-31 Naohisa Goto <ng@bioruby.org>
3235
+
3236
+ * removed unused file lib/bio/appl/factory.rb
3237
+ (the functionality had been integrated into lib/bio/command.rb)
3238
+
3239
+ * doc/Tutorial.rd
3240
+
3241
+ Newly added an English translation of the Japanese tutorial.
3242
+
3243
+ 2005-08-16 Naohisa Goto <ng@bioruby.org>
3244
+
3245
+ * lib/bio/command.rb
3246
+
3247
+ Newly added Bio::Command::Tools module.
3248
+ Bio::Command::Tools is a collection of useful methods
3249
+ for execution of external commands.
3250
+
3251
+ * lib/bio/appl/blast.rb, lib/bio/appl/fasta.rb,
3252
+ lib/bio/appl/hmmer.rb, lib/bio/io/fastacmd.rb
3253
+
3254
+ For security reason, shell special characters are escaped.
3255
+
3256
+ * lib/bio/appl/blast.rb, lib/bio/appl/fasta.rb, lib/bio/appl/hmmer.rb
3257
+
3258
+ Options are stored with an array (@options).
3259
+ #options and #opions= methods are added.
3260
+
3261
+ * lib/bio/appl/blast.rb, lib/bio/appl/fasta.rb
3262
+
3263
+ Bio::Blast.remote and Bio::Fasta.remote is fixed to work
3264
+ with the recent change of the GenomeNet.
3265
+
3266
+ 2005-08-11 Toshiaki Katayama <k@bioruby.org>
3267
+
3268
+ * Sequence#to_re method to have compatibility with 0.6.2 for RNA
3269
+
3270
+ * Fixed Bio::Fastacmd#fetch to work
3271
+
3272
+ * Bio::Fastacmd and Bio::Bl2seq classes (introduced in 0.6.3) are
3273
+ renamed to Bio::Blast::Fastacmd, Bio::Blast::Bl2seq respectively.
3274
+
3275
+ 2005-08-09 Toshiaki Katayama <k@bioruby.org>
3276
+
3277
+ * BioRuby 0.6.3 is released.
3278
+
3279
+ This version would be the final release to support Ruby 1.6 series
3280
+ (as long as no serious bug is found:).
3281
+
3282
+ * lib/bio/util/sirna.rb:
3283
+
3284
+ Newly added method for desing of siRNA, contributed by
3285
+ Itoshi Nikaido. The lib/bio/util/ directory if reserved
3286
+ for bioinfomatics algorithms implemented by pure Ruby.
3287
+
3288
+ * lib/bio/io/fastacmd.rb:
3289
+
3290
+ Newly added wrapper for NCBI fastacmd program, contributed by
3291
+ Shinji Shigenobu.
3292
+
3293
+ * lib/bio/appl/hmmer/report.rb:
3294
+
3295
+ Bug fixed by Masashi Fujita when the position of sequence
3296
+ rarely becomes '-' instead of digits.
3297
+
3298
+ 2005-08-08 Mitsuteru Nakao <n@bioruby.org>
3299
+
3300
+ * lib/bio/db/embl/sptr.rb:
3301
+
3302
+ Added Bio::SPTR#protein_name and Bio::SPTR#synoyms methods.
3303
+ contributed by Luca Pireddu.
3304
+
3305
+ Changed Bio::SPTR#gn, Bio::SPTR#gene_name and
3306
+ Bio::SPTR#gene_names methods. contributed by Luca Pireddu.
3307
+
3308
+ 2005-08-08 Naohisa Goto <ng@bioruby.org>
3309
+
3310
+ * lib/bio/appl/bl2seq/report.rb:
3311
+
3312
+ Newly added bl2seq (BLAST 2 sequences) output parser.
3313
+
3314
+ * lib/bio/appl/blast/format0.rb:
3315
+
3316
+ Added `self.class::` before F0dbstat.new for bl2seq/report.rb
3317
+
3318
+ 2005-08-07 Toshiaki Katayama <k@bioruby.org>
3319
+
3320
+ * lib/bio/sequence.rb, lib/bio/data/na.rb, lib/bio/data/aa.rb:
3321
+
3322
+ Bio::NucleicAcid, Bio::AminoAcid classes are refactored to have
3323
+ Data module, and this module is included and extended to make
3324
+ all methods as both of instance methods and class methods.
3325
+
3326
+ Bio::Sequence::NA and AA classes are rewrited (molecular_weight,
3327
+ to_re methods) to use Bio::NucleicAcid.
3328
+
3329
+ Bio::Sequence::NA#molecular_weight method is fixed to subtract
3330
+ two hydrogens per each base.
3331
+
3332
+ * lib/bio/db/medline.rb: publication_type (pt) method is added.
3333
+
3334
+ 2005-08-07 Naohisa Goto <ng@bioruby.org>
3335
+
3336
+ * lib/bio/db/genbank/common.rb:
3337
+
3338
+ Avoid NoMethodError (private method `chomp` called for nil:NilClass)
3339
+ when parsing features of
3340
+
3341
+ ftp://ftp.ncbi.nih.gov/genbank/genomes/Bacteria/
3342
+ Salmonella_typhimurium_LT2/AE006468.gbk
3343
+
3344
+ 2005-07-11 Toshiaki Katayama <k@bioruby.org>
3345
+
3346
+ * bin/br_pmfetch.rb:
3347
+
3348
+ Added sort by page option (--sort page)
3349
+
3350
+ * lib/io/higet.rb:
3351
+
3352
+ Newly added Bio::HGC::HiGet class for HiGet SOAP service.
3353
+
3354
+ 2005-06-28 Toshiaki Katayama <k@bioruby.org>
3355
+
3356
+ * gemspec.rb: newly added RubyGems spec file.
3357
+
3358
+ 2005-06-21 Naohisa Goto <ng@bioruby.org>
3359
+
3360
+ * lib/bio/appl/blast/report.rb:
3361
+
3362
+ Newly added support for reading BLAST -m 7 result files
3363
+ through Bio::FlatFile by adding
3364
+ DELIMITER = "</BlastOutput>\n" to Bio::Blast::Report class.
3365
+ (Note that tab-delimited format (-m 8 and -m 9) are not yet
3366
+ supported by Bio::FlatFile)
3367
+
3368
+ * lib/bio/io/flatfile.rb:
3369
+
3370
+ Added file format autodetection of BLAST XML format.
3371
+
3372
+ 2005-06-20 Naohisa Goto <ng@bioruby.org>
3373
+
3374
+ * lib/bio/appl/blast/format0.rb: added 'to_s' to store original entry
3375
+
3376
+ 2005-04-04 Mitsuteru Nakao <n@bioruby.org>
3377
+
3378
+ * lib/bio/db/go.rb:
3379
+
3380
+ Newly added Bio::GO::External2go class for parsing external2go file.
3381
+
3382
+ 2005-03-10 Naohisa Goto <ng@bioruby.org>
3383
+
3384
+ * lib/bio/io/flatfile.rb:
3385
+
3386
+ Added file format autodetection of Spidey (Bio::Spidey::Report).
3387
+
3388
+ 2005-03-10 Naohisa Goto <ng@bioruby.org>
3389
+
3390
+ * lib/bio/io/flatfile.rb:
3391
+
3392
+ Added file format autodetection for Bio::KEGG::KO,
3393
+ Bio::KEGG::GLYCAN, Bio::KEGG::REACTION, Bio::Blat::Report
3394
+ and Bio::Sim4::Report.
3395
+
3396
+ In order to distinguish Bio::KEGG::REACTION and
3397
+ Bio::KEGG::COMPOUND, autodetection regexp. of
3398
+ Bio::KEGG::COMPOUND were modified.
3399
+
3400
+ 2005-02-09 KATAYAMA Toshiaki <k@bioruby.org>
3401
+
3402
+ * lib/bio/db/kegg/genes.rb:
3403
+
3404
+ Added cu method which returns codon usage in Hash for the
3405
+ convenience (codon_usage method returns in Array or Fixnum).
3406
+
3407
+ 2004-12-13 KATAYAMA Toshiaki <k@bioruby.org>
3408
+
3409
+ * BioRuby 0.6.2 released.
3410
+
3411
+ * test/all_tests.rb:
3412
+
3413
+ Unit tests for some classes are newly incorporated by
3414
+ Moses Hohman. You can try it by 'ruby install.rb test'
3415
+
3416
+ * lib/bio/appl/spidey/report.rb:
3417
+
3418
+ Newly added Spidey result parser class.
3419
+
3420
+ * lib/bio/appl/blat/report.rb:
3421
+
3422
+ Newly added BLAT result parser class.
3423
+
3424
+ * fixes and improvements:
3425
+ * lib/bio/appl/blast/blast/format0.rb
3426
+ * minor fix for the Blast default format parser
3427
+ * lib/bio/alignment.rb
3428
+ * Alignment class
3429
+ * lib/bio/db/prosite.rb
3430
+ * bug reported by Rolv Seehuus is fixed
3431
+ * some methods are added
3432
+
3433
+ 2004-10-25 KATAYAMA Toshiaki <k@bioruby.org>
3434
+
3435
+ * lib/bio/db/{compound.rb,reaction.rb,glycan.rb}:
3436
+
3437
+ Newly added parser for KEGG REACTION and KEGG GLYCAN database
3438
+ entries, fix for KEGG COMPOUND parser to support the new format.
3439
+
3440
+ 2004-10-09 GOTO Naohisa <ng@bioruby.org>
3441
+
3442
+ * lib/bio/appl/sim4.rb
3443
+
3444
+ Newly added sim4 wrapper class.
3445
+ This is test version, specs would be changed frequently.
3446
+
3447
+ * lib/bio/appl/sim4/report.rb
3448
+
3449
+ Newly added sim4 result parser class.
3450
+
3451
+ 2004-08-25 KATAYAMA Toshiaki <k@bioruby.org>
3452
+
3453
+ * BioRuby 0.6.1 released.
3454
+ * fix for the packaging miss of 0.6.0
3455
+ * bin/*.rb are renamed to bin/br_*.rb (similar to the BioPerl's
3456
+ convention: bp_*.pl)
3457
+
3458
+ 2004-08-24 KATAYAMA Toshiaki <k@bioruby.org>
3459
+
3460
+ * BioRuby 0.6.0 released.
3461
+ * many fixes for Ruby 1.8
3462
+ * updated for genome.ad.jp -> genome.jp transition
3463
+
3464
+ * lib/bio/db/pdb.rb
3465
+
3466
+ Newly added parser for PDB contributed by Alex Gutteridge (EBI).
3467
+
3468
+ * lib/bio/data/codontable.rb
3469
+
3470
+ Bio::CodonTable is rewrited to be a class instead of static variable.
3471
+ Now it can hold table definition, start codons, stop codons and
3472
+ added methods to detect start/stop codons and reverse translation.
3473
+
3474
+ Also includes sample code to show codon table in ANSI colored
3475
+ ascii art, have fun.
3476
+
3477
+ * lib/bio/sequence.rb
3478
+
3479
+ Bio::Sequence::NA#translate is rewrited to accept an user defined
3480
+ codon table as a Bio::CodonTable object and any character can be
3481
+ specified for the unknown codon. This method runs about 30% faster
3482
+ than ever before.
3483
+
3484
+ Bio::Sequence::AA#to_re method is added for the symmetry.
3485
+
3486
+ Bio::Seq will be changed to hold generic rich sequence features.
3487
+ This means Bio::Seq is no longer an alias of Bio::Sequence but
3488
+ is a sequence object model, something like contents of a GenBank
3489
+ entry, common in BioPerl, BioJava etc.
3490
+
3491
+ * lib/bio/io/soapwsdl.rb
3492
+
3493
+ Newly added common interface for SOAP/WSDL in BioRuby
3494
+ used by keggapi.rb, ddbjxml.rb.
3495
+
3496
+ * lib/bio/io/keggapi.rb
3497
+
3498
+ Completely rewrited to support KEGG API v3.0
3499
+
3500
+ * lib/bio/io/esoap.rb
3501
+
3502
+ Newly added client library for Entrez Utilities SOAP interface.
3503
+
3504
+ * lib/bio/db/genbank, lib/bio/db/embl
3505
+
3506
+ Refactored to use common.rb as a common module.
3507
+
3508
+ * bin/pmfetch.rb
3509
+
3510
+ Newly added command to search PubMed.
3511
+
3512
+ * bin/biofetch.rb, flatfile.rb, biogetseq.rb
3513
+
3514
+ Renamed to have .rb suffix.
3515
+
3516
+ * sample/biofetch.rb
3517
+
3518
+ Rewrited to use KEGG API instead of DBGET
3519
+
3520
+
3521
+ 2003-10-13 KATAYAMA Toshiaki <k@bioruby.org>
3522
+
3523
+ * BioRuby 0.5.3 released.
3524
+
3525
+ Fixed bugs in Blast XML parsers: xmlparser.rb is fixed not to
3526
+ omit the string after ' and " in sequence definitions,
3527
+ rexml.rb is fixed not to raise NoMethodError as "undefined
3528
+ method `each_element_with_text' for nil:NilClass".
3529
+
3530
+ 2003-10-07 GOTO Naohisa <ngoto@gen-info.osaka-u.ac.jp>
3531
+
3532
+ * lib/bio/db/nbrf.rb
3533
+
3534
+ Newly added NBRF/PIR flatfile sequence format class.
3535
+
3536
+ 2003-09-30 GOTO Naohisa <ngoto@gen-info.osaka-u.ac.jp>
3537
+
3538
+ * lib/bio/db/pdb.rb
3539
+
3540
+ Newly added PDB database flatfile format class.
3541
+ This is pre-alpha version, specs shall be changed frequently.
3542
+
3543
+ 2003-08-22 KATAYAMA Toshiaki <k@bioruby.org>
3544
+
3545
+ * BioRuby 0.5.2 released.
3546
+
3547
+ Fixed to be loaded in Ruby 1.8.0 without warnings.
3548
+
3549
+ * doc/KEGG_API.rd.ja
3550
+
3551
+ Newly added a Japanese document on the KEGG API.
3552
+
3553
+ 2003-08-12 GOTO Naohisa <ngoto@gen-info.osaka-u.ac.jp>
3554
+
3555
+ * lib/bio/appl/blast/format0.rb
3556
+
3557
+ Newly added NCBI BLAST default (-m 0) output parser,
3558
+ which may be 5-10x faster than BioPerl's parser.
3559
+ This is alpha version, specs may be frequently changed.
3560
+ PHI-BLAST support is still incomplete.
3561
+ Ruby 1.8 recommended. In ruby 1.6, you need strscan.
3562
+
3563
+ * lib/bio/appl/blast/wublast.rb
3564
+
3565
+ Newly added WU-BLAST default output parser.
3566
+ This is alpha version, specs may be frequently changed.
3567
+ Support for parameters and statistics are still incomplete.
3568
+ Ruby 1.8 recommended. In ruby 1.6, you need strscan.
3569
+
3570
+ 2003-07-25 GOTO Naohisa <ngoto@gen-info.osaka-u.ac.jp>
3571
+
3572
+ * lib/bio/alignment.rb:
3573
+
3574
+ Newly added multiple sequence alignment class.
3575
+
3576
+ * lib/bio/appl/alignfactory.rb:
3577
+
3578
+ Newly added template class for multiple alignment software.
3579
+
3580
+ * lib/bio/appl/clustalw.rb:
3581
+
3582
+ Newly added CLUSTAL W wrapper.
3583
+ <http://www.ebk.ac.uk/clustalw/>
3584
+ <ftp://ftp.ebk.ac.uk/pub/software/unix/clustalw/>
3585
+
3586
+ * lib/bio/appl/clustalw/report.rb:
3587
+
3588
+ Newly added CLUSTAL W result data (*.aln file) parser.
3589
+
3590
+ * lib/bio/appl/mafft.rb, lib/bio/appl/mafft/report.rb:
3591
+
3592
+ Newly added MAFFT wrapper and report parser.
3593
+ (MAFFT is a multiple sequence alignment program based on FFT.)
3594
+ <http://www.biophys.kyoto-u.ac.jp/~katoh/programs/align/mafft/>
3595
+
3596
+ 2003-07-16 KATAYAMA Toshiaki <k@bioruby.org>
3597
+
3598
+ * BioRuby version 0.5.1 released.
3599
+
3600
+ * lib/bio/sequence.rb: some methods (using 'rna?' internally) were
3601
+ temporally unusable by the changes in 0.5.0 is fixed.
3602
+
3603
+ * lib/bio/io/flatfile.rb: autodetection failure of the fasta entry
3604
+ without sequence is fixed. FlatFile.auto method is added.
3605
+
3606
+ * lib/bio/db.rb: sugtag2array fixed. DB.open now accepts IO/ARGF.
3607
+
3608
+ * lib/bio/db/embl.rb: references method is added.
3609
+
3610
+
3611
+ 2003-06-25 KATAYAMA Toshiaki <k@bioruby.org>
3612
+
3613
+ * BioRuby version 0.5.0 released.
3614
+
3615
+ * lib/bio/appl/blast/report.rb:
3616
+
3617
+ Refactored from xmlparser.rb, rexml.rb, and format8.rb files.
3618
+ Formats are auto detected and parsers are automatically
3619
+ selected by checking whether XMLParser or REXML are installed.
3620
+ You can call simply as
3621
+ Bio::Blast::Report.new(blastoutput)
3622
+ or you can choose parsers/format explicitly by
3623
+ Bio::Blast::Report.xmlparser(format7blastoutput)
3624
+ Bio::Blast::Report.rexml(fomat7blastoutput)
3625
+ Bio::Blast::Report.tab(format8blastoutput)
3626
+ You can also use newly added class method reports for multiple
3627
+ xml blast output.
3628
+ Bio::Blast.reports(output) # output can be IO or String
3629
+
3630
+ * lib/bio/appl/fasta/report.rb:
3631
+
3632
+ Refactored from format10.rb, format6.rb and sample/* files.
3633
+
3634
+ * lib/bio/appl/hmmer/report.rb:
3635
+
3636
+ Bug fix and clean up.
3637
+
3638
+ * bin/biogetseq:
3639
+
3640
+ Newly added OBDA (BioRegistry) entry retrieval command.
3641
+
3642
+ * etc/bioinformatics/seqdatabase.ini, lib/bio/io/registry.rb:
3643
+ Updated for new OBDA spec (Singapore version).
3644
+ Including config file versioning and changes in tag names,
3645
+ support for OBDA_SEARCH_PATH environmental variable.
3646
+
3647
+ * lib/bio/io/keggapi.rb:
3648
+
3649
+ Newly added KEGG API client library.
3650
+ <http://www.genome.ad.jp/kegg/soap/>
3651
+
3652
+ * lib/bio/io/ddbjxml.rb:
3653
+
3654
+ Newly added DDBJ XML client library (test needed).
3655
+ <http://xml.nig.ac.jp/>
3656
+
3657
+ * lib/bio/io/das.rb:
3658
+
3659
+ Newly added BioDAS client library.
3660
+
3661
+ * lib/bio/db/gff.rb:
3662
+
3663
+ Newly added GFF format parser/store library.
3664
+
3665
+ * lib/bio/appl/tmhmm/report.rb:
3666
+
3667
+ Newly added TMHMM report parser.
3668
+ <http://www.cbs.dtu.dk/services/TMHMM/>
3669
+
3670
+ * lib/bio/appl/targetp/report.rb:
3671
+
3672
+ Newly added TargetP report parser.
3673
+ <http://www.cbs.dtu.dk/services/TargetP/>
3674
+
3675
+ * lib/bio/appl/sosui/report.rb:
3676
+
3677
+ Newly added SOSUI report parser.
3678
+ <http://sosui.proteome.bio.tuat.ac.jp/cgi-bin/sosui.cgi>
3679
+
3680
+ * lib/bio/appl/psort/report.rb:
3681
+
3682
+ Newly added PSORT report parser.
3683
+ <http://www.psort.org/>, <http://psort.ims.u-tokyo.ac.jp/>
3684
+
3685
+ * lib/bio/appl/genscan/report.rb:
3686
+
3687
+ Newly added GENSCAN report parser.
3688
+ <http://genes.mit.edu/GENSCAN.html>
3689
+
3690
+ * lib/bio/db/prosite.rb: bug fix in ps2re method.
3691
+
3692
+ * lib/bio/db/fantom.rb:
3693
+
3694
+ Newly added FANTOM database parser (XML).
3695
+ <http://fantom2.gsc.riken.go.jp/>
3696
+
3697
+ * lib/bio/db/go.rb:
3698
+
3699
+ Newly added GO parser.
3700
+ <http://www.geneontology.org/>
3701
+
3702
+ * lib/bio/feature.rb:
3703
+
3704
+ 'each' method now accepts an argument to select specific feature.
3705
+
3706
+ * lib/bio/db/fasta.rb: definition=, data= to change comment line.
3707
+
3708
+ * lib/bio/db/genbank.rb:
3709
+
3710
+ References and features now accept a block. 'acc_version' method
3711
+ is added to return the Accsession.Version string.
3712
+ 'accession' method now returns Accession part of the acc_version.
3713
+ 'version' method now returns Version part of the acc_version as
3714
+ an integer.
3715
+
3716
+ * lib/bio/db/keggtab.rb:
3717
+
3718
+ Rewrited for bug fix and clean up (note: some methods renamed!)
3719
+ * gsub('abrev', 'abbrev') in method names
3720
+ * db_path_by_keggorg is changed to db_path_by_abbrev
3721
+ * @bio_root is changed to @bioroot (ENV['BIOROOT'] overrides)
3722
+ * Bio::KEGG::DBname is changed to Bio::KEGG::Keggtab::DB
3723
+ * @database is added (a hash with its key db_abbreb)
3724
+ * database, name, path methods added with its argument db_abbreb
3725
+
3726
+ * lib/bio/io/flatfile.rb:
3727
+
3728
+ Enumerable mix-in is included.
3729
+
3730
+ * lib/bio/io/flatfile/indexer.rb:
3731
+
3732
+ Indexing of the FASTA format file is now supported with various
3733
+ type of definition line.
3734
+
3735
+ * bin/dbget:
3736
+
3737
+ Removed (moved under sample directory because the port of the
3738
+ dbget server is now closed).
3739
+
3740
+ * install.rb:
3741
+
3742
+ Changed to use setup 3.1.4 to avoid installing CVS/ directory.
3743
+
3744
+ * sample/goslim.rb:
3745
+
3746
+ Added a sample to generate histogram from GO slim.
3747
+
3748
+ * sample/tdiary.rb:
3749
+
3750
+ Added for tDiary <http://www.tdiary.org/> users. have fun. :)
3751
+
3752
+ 2003-01-28 KATAYAMA Toshiaki <k@bioruby.org>
3753
+
3754
+ * BioRuby version 0.4.0 released.
3755
+ * bin/bioflat:
3756
+ * newly added for the BioFlat indexing
3757
+ * lib/bio/io/flatfile.rb, flatfile/{indexer.rb,index.rb,bdb.rb}:
3758
+ * flatfile indexing is supported by N. Goto
3759
+ * lib/bio/db/genbank.rb: changed to contain common methods only
3760
+ * lib/bio/db/genbank/genbank.rb
3761
+ * lib/bio/db/genbank/genpept.rb
3762
+ * lib/bio/db/genbank/refseq.rb
3763
+ * lib/bio/db/genbank/ddbj.rb
3764
+ * lib/bio/db/embl.rb: changed to contain common methods only
3765
+ * lib/bio/db/embl/embl.rb
3766
+ * lib/bio/db/embl/sptr.rb
3767
+ * lib/bio/db/embl/swissprot.rb
3768
+ * lib/bio/db/embl/trembl.rb
3769
+ * lib/bio/appl/emboss.rb:
3770
+ * added - just a generic wrapper, no specific parsers yet.
3771
+ * lib/bio/appl/hmmer.rb:
3772
+ * added - execution wrapper
3773
+ * lib/bio/appl/hmmer/report.rb:
3774
+ * added - parsers for hmmsearch, hmmpfam contributed by H. Suga
3775
+ * lib/bio/db.rb: open method added for easy use of flatfile.
3776
+ * lib/bio/db/kegg/genes.rb:
3777
+ * fixed bug in codon_usage method in the case of long sequence >999
3778
+ * eclinks, splinks, pathways, gbposition, chromosome methods added
3779
+ * lib/bio/db/aaindex.rb:
3780
+ * adapted for the new AAindex2 format (release >= 6.0).
3781
+ * lib/bio/db/fasta.rb: entry_id is changed to return first word only
3782
+ * lib/bio/data/na.rb, aa.rb, keggorg.rb:
3783
+ * moved under class NucleicAcid, AminoAcid, KEGG (!)
3784
+ * in the test codes, DBGET is replaced by BioFetch
3785
+
3786
+ 2002-08-30 Yoshinori K. Okuji <okuji@enbug.org>
3787
+
3788
+ * lib/bio/matrix.rb: Removed.
3789
+ * lib/bio/db/aaindex.rb: Require matrix instead of bio/matrix.
3790
+ * lib/bio/db/transfac.rb: Likewise.
3791
+ * lib/bio/pathway.rb: Likewise.
3792
+ (Pathway#dump_matrix): Don't use Matrix#dump.
3793
+
3794
+ 2002-07-30 KATAYAMA Toshiaki <k@bioruby.org>
3795
+
3796
+ * BioRuby version 0.3.9 released.
3797
+ * lib/bio/location.rb:
3798
+ * Locations#length (size) methods added (contributed by N. Goto)
3799
+ * Locations#relative method added (contributed by N. Goto)
3800
+ * Locations#absolute method is renamed from offset
3801
+ * Locations#offset, offset_aa methods removed
3802
+ * use absolute/relative(n, :aa) for _aa
3803
+ * Locations#[], range methods added
3804
+ * Location#range method added
3805
+ * lib/bio/db/embl.rb:
3806
+ * fix accession method.
3807
+ * lib/bio/db/genpept.rb:
3808
+ * temporally added - in the next release, we will make refactoring.
3809
+ * lib/bio/reference.rb:
3810
+ * in bibtex and bibitem format, "PMIDnum" is changed to "PMID:num".
3811
+ * lib/bio/io/pubmed.rb:
3812
+ * esearch, efetch methods are added.
3813
+ * lib/bio/db/aaindex.rb:
3814
+ * fix serious bug in the index method to support negative values.
3815
+ * lib/bio/db.rb:
3816
+ * fix fetch method to cut tag without fail.
3817
+ * lib/bio/extend.rb:
3818
+ * added first_line_only option for the prefix in fill method.
3819
+ * doc/Tutorial.rd.ja:
3820
+ * added docs on BibTeX etc.
3821
+
3822
+ 2002-06-26 KATAYAMA Toshiaki <k@bioruby.org>
3823
+
3824
+ * BioRuby version 0.3.8 released.
3825
+ * lib/bio/sequence.rb:
3826
+ * normalize! method added for clean up the object itself.
3827
+ * 'to_seq' method was renamed to 'seq' (!)
3828
+ * to_xxxx should be used when the class of the object changes.
3829
+ * lib/bio/appl/blast/xmparser.rb:
3830
+ * each_iteration, each_hit, each, hits, statistics, message methods
3831
+ are added in Report class.
3832
+ * statistics, message methods are added in Iteration class.
3833
+ * methods compatible with Fasta::Report::Hit are added in Hit class.
3834
+ * lib/bio/appl/blast/rexml.rb:
3835
+ * many APIs were changed to follow the xmlparser.rb's. (!)
3836
+ * lib/bio/appl/{blast.rb,fasta.rb]:
3837
+ * class method parser() is added for loading specified Report class.
3838
+ * etc/bioinformatics/seqdatabase.ini: added for OBDA (!)
3839
+ * sample setup for BioRegistry - Open Bio Sequence Database Access.
3840
+ * lib/bio/extend.rb: added (!)
3841
+ * This module adds some functionarity to the existing classes and
3842
+ not loaded by default. User should require specifically if needed.
3843
+ * lib/bio/util/*: removed and merged into lib/bio/extend.rb (!)
3844
+ * lib/bio/id.rb: removed (!)
3845
+ * lib/bio/db/{embl.rb,sptr.rb,transfac.rb}: added entry_id
3846
+ * lib/bio/data/keggorg.rb: updated
3847
+ * sample/genes2* sample/genome2*: updated
3848
+ * doc/Tutrial.rd.ja: updated
3849
+
3850
+ 2002-06-19 KATAYAMA Toshiaki <k@bioruby.org>
3851
+
3852
+ * BioRuby version 0.3.7 released.
3853
+ * lib/bio/sequence.rb: Sequence inherits String again (!)
3854
+ * lib/bio/db.rb, db/embl.rb, db/sptr.rb: moved EMBL specific methods
3855
+
3856
+ 2002-06-18 KATAYAMA Toshiaki <k@bioruby.org>
3857
+
3858
+ * lib/bio/feature.rb: Bio::Feature#[] method added
3859
+ * doc/Tutrial.rd.ja: changed to use Feature class
3860
+
3861
+ 2002-05-28 KATAYAMA Toshiaki <k@bioruby.org>
3862
+
3863
+ * lib/bio/appl/fasta.rb: parser separated, API renewal (!)
3864
+ * lib/bio/appl/fasta/format10.rb: moved from fasta.rb
3865
+
3866
+ * lib/bio/appl/blast.rb: parser separated, API renewal (!)
3867
+ * lib/bio/appl/blast/format8.rb: newly added
3868
+ * lib/bio/appl/blast/rexml.rb: newly added
3869
+ * lib/bio/appl/blast/xmlparser.rb: moved from blast.rb
3870
+
3871
+ 2002-05-16 KATAYAMA Toshiaki <k@bioruby.org>
3872
+
3873
+ * lib/bio/sequence.rb: added alias 'Seq' for class Sequence
3874
+ * lib/bio/db/fasta.rb: entry method added
3875
+
3876
+ 2002-05-15 KATAYAMA Toshiaki <k@bioruby.org>
3877
+
3878
+ * lib/bio/io/dbget.rb: bug fixed for pfam (was wrongly skip # lines)
3879
+ * lib/bio/location.rb: offset method added, eased range check
3880
+
3881
+ 2002-04-26 KATAYAMA Toshiaki <k@bioruby.org>
3882
+
3883
+ * sample/biofetch.rb: new 'info=' option added
3884
+
3885
+ 2002-04-22 KATAYAMA Toshiaki <k@bioruby.org>
3886
+
3887
+ * lib/bio/appl/fasta.rb: follow changes made at fasta.genome.ad.jp
3888
+ * sample/gb2tab.rb: fixed to use authors.inspect for reference
3889
+
3890
+ 2002-04-15 KATAYAMA Toshiaki <k@bioruby.org>
3891
+
3892
+ * sample/gb2fasta.rb: changed to follow new genbank.rb spec.
3893
+ * sample/gt2fasta.rb: changed to follow new genbank.rb spec.
3894
+ * sample/gbtab2mysql.rb: added for loading tab delimited data.
3895
+
3896
+ 2002/04/08
3897
+ * version 0.3.6 released -k
3898
+ * fixed inconsistency among db.rb, genbank.rb, genome.rb -k
3899
+ * lib/bio/db/genbank.rb : serious bug fixed in locus method -k
3900
+ * lib/bio/feature.rb : method name 'type' has changed -k
3901
+
3902
+ 2002/03/27
3903
+ * sample/gb2tab.rb changed to follow new genbank.rb w/ new schema -k
3904
+
3905
+ 2002/03/26
3906
+ * sample/gb2tab.rb use ruby instead of perl in the example -o
3907
+ * sample/gb2fasta.rb updated -o
3908
+
3909
+ 2002/03/11
3910
+ * version 0.3.5 released -k
3911
+
3912
+ 2002/03/04
3913
+ * lib/bio/sequence.rb to_a, to_ary methods renamed to names, codes -k
3914
+ * sample/biofetch.rb added for BioFetch server -k
3915
+ * bin/biofetch added for BioFetch client -k
3916
+ * lib/bio/io/fetch.rb added for BioFetch library -k
3917
+ * lib/bio/io/sql.rb added for BioSQL -k
3918
+ * lib/bio/io/registry.rb added for BioDirectory/Registry -k
3919
+ * lib/bio/feature.rb added for BioSQL, GenBank, EMBL etc. -k
3920
+ * lib/bio/db/genbank.rb rewrited to use Features, References -k
3921
+ * lib/bio/db/{genes,genome}.rb clean up -k
3922
+ * lib/bio/reference.rb added class References -k
3923
+
3924
+ 2002/02/05
3925
+ * changed to use 'cgi' instead of 'cgi-lib' -n,k
3926
+
3927
+ 2002/01/31
3928
+ * version 0.3.4 released -k
3929
+ * lib/bio/db/genbank.rb -k
3930
+ * fix for multiple 'allele' in the feature key. (thanx Lixin)
3931
+
3932
+ 2002/01/07
3933
+ * lib/bio/appl/blast.rb -n
3934
+ * remote blast support etc.
3935
+
3936
+ 2001/12/18
3937
+ * lib/bio/id.rb -k
3938
+ * newly created
3939
+ * lib/bio/io/brdb.rb -k
3940
+ * newly created
3941
+ * lib/bio/db.rb -k
3942
+ * template methods are deleted
3943
+ * detailed docuement added
3944
+ * lib/bio/sequence.rb -k
3945
+ * to_fasta, complement, translate fixed (due to the changes made
3946
+ in 0.3.3)
3947
+ * Sequence::NA#initialize doesn't replace 'u' with 't' any longer
3948
+ * gc_percent, complement, translate, to_re, molecular_weight
3949
+ methods are adapted to this change
3950
+ * molecular_weight changed to calculate more precisely
3951
+ * test code added
3952
+ * lib/bio.rb -k
3953
+ * rescue for require 'bio/appl/blast' is deleted
3954
+
3955
+ 2001/12/15
3956
+ * lib/bio/sequence.rb -o
3957
+ * Sequence#to_str added
3958
+
3959
+ 2001/12/15
3960
+ * version 0.3.3 released -k
3961
+