bioroebe 0.12.24 → 0.13.31

Sign up to get free protection for your applications and to get access to all the features.
Files changed (503) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.md +7 -8
  3. data/README.md +566 -354
  4. data/bin/all_positions_of_this_nucleotide +1 -1
  5. data/bin/aminoacid_frequencies +1 -1
  6. data/bin/automatically_rename_this_fasta_file +1 -1
  7. data/bin/base_composition +1 -1
  8. data/bin/batch_create_windows_executables +1 -1
  9. data/bin/bioroebe +12 -1
  10. data/bin/bioroebe_cat +7 -0
  11. data/bin/calculate_exponential_growth +7 -0
  12. data/bin/calculate_n50_value +1 -1
  13. data/bin/calculate_the_frequencies_of_this_species +7 -0
  14. data/bin/chunked_display +1 -1
  15. data/bin/codon_frequency +1 -1
  16. data/bin/codon_to_aminoacid +1 -1
  17. data/bin/colourize_this_fasta_sequence +1 -1
  18. data/bin/complementary_dna_strand +1 -1
  19. data/bin/complementary_rna_strand +1 -1
  20. data/bin/consensus_sequence +1 -1
  21. data/bin/dna_to_rna +1 -1
  22. data/bin/downcase_chunked_display +1 -1
  23. data/bin/download_this_pdb +1 -1
  24. data/bin/fasta_index +1 -1
  25. data/bin/fetch_data_from_uniprot +1 -1
  26. data/bin/filter_away_invalid_nucleotides +1 -1
  27. data/bin/find_substring +1 -1
  28. data/bin/input_as_dna +1 -1
  29. data/bin/is_palindrome +1 -1
  30. data/bin/leading_five_prime +1 -1
  31. data/bin/longest_ORF +1 -1
  32. data/bin/longest_substring +1 -1
  33. data/bin/open_reading_frames +1 -1
  34. data/bin/partner_nucleotide +1 -1
  35. data/bin/plain_palindrome +1 -1
  36. data/bin/random_dna_sequence +1 -1
  37. data/bin/random_sequence +1 -1
  38. data/bin/raw_hamming_distance +1 -1
  39. data/bin/return_longest_substring_via_LCS_algorithm +1 -1
  40. data/bin/reverse_sequence +1 -1
  41. data/bin/short_aminoacid_letter_from_long_aminoacid_name +1 -1
  42. data/bin/show_atomic_composition +1 -1
  43. data/bin/show_fasta_header +1 -1
  44. data/bin/show_nucleotide_sequence +1 -1
  45. data/bin/show_this_dna_sequence +1 -1
  46. data/bin/show_time_now +7 -0
  47. data/bin/sort_aminoacid_based_on_its_hydrophobicity +1 -1
  48. data/bin/strict_filter_away_invalid_aminoacids +1 -1
  49. data/{lib/bioroebe/base/reset.rb → bin/three_delimiter} +9 -6
  50. data/bin/three_to_one +1 -1
  51. data/bin/to_rna +1 -1
  52. data/bin/trailing_three_prime +1 -1
  53. data/bin/upcase_this_aminoacid_sequence_and_remove_numbers +1 -1
  54. data/bioroebe.gemspec +6 -7
  55. data/doc/README.gen +534 -322
  56. data/doc/blosum/blosum.md +4 -0
  57. data/doc/compatibility/BIO_PHP.md +20 -18
  58. data/doc/compatibility/README.md +2 -3
  59. data/doc/compatibility/emboss.md +5 -3
  60. data/doc/{extensive_usage_example.md → extensive_usage_example/extensive_usage_example.md} +4 -2
  61. data/doc/{instructions_for_the_taxonomy_subproject.md → instructions_for_the_taxonomy_subproject/instructions_for_the_taxonomy_subproject.md} +36 -33
  62. data/doc/{legacy_paths.md → legacy_paths/legacy_paths.md} +3 -3
  63. data/doc/statistics/statistics.md +12 -10
  64. data/doc/todo/bioroebe_GUI_todo.md +6 -1
  65. data/doc/todo/bioroebe_java_todo.md +3 -2
  66. data/doc/todo/bioroebe_todo.md +328 -310
  67. data/doc/{using_biomart.md → using_biomart/using_biomart.md} +7 -3
  68. data/lib/bioroebe/abstract/features.rb +0 -0
  69. data/lib/bioroebe/aminoacids/aminoacid_substitution.rb +1 -1
  70. data/lib/bioroebe/aminoacids/aminoacids_mass_table.rb +3 -1
  71. data/lib/bioroebe/aminoacids/codon_percentage.rb +18 -10
  72. data/lib/bioroebe/aminoacids/create_random_aminoacids.rb +5 -2
  73. data/lib/bioroebe/aminoacids/deduce_aminoacid_sequence.rb +90 -64
  74. data/lib/bioroebe/aminoacids/display_aminoacid_table.rb +1 -3
  75. data/lib/bioroebe/aminoacids/show_hydrophobicity.rb +2 -2
  76. data/lib/bioroebe/annotations/create_annotation_format.rb +2 -2
  77. data/lib/bioroebe/base/base.rb +101 -6
  78. data/lib/bioroebe/base/base_module/base_module.rb +9 -1
  79. data/lib/bioroebe/base/colours.rb +3 -0
  80. data/lib/bioroebe/base/colours_for_base/colours_for_base.rb +80 -44
  81. data/lib/bioroebe/base/commandline_application/README.md +1 -1
  82. data/lib/bioroebe/base/commandline_application/commandline_application.rb +661 -22
  83. data/lib/bioroebe/base/commandline_application/commandline_arguments.rb +2 -1
  84. data/lib/bioroebe/base/infer_the_namespace_module/infer_the_namespace_module.rb +37 -0
  85. data/lib/bioroebe/base/internal_hash_module/internal_hash_module.rb +1 -6
  86. data/lib/bioroebe/base/prototype/prototype.rb +155 -14
  87. data/lib/bioroebe/biomart/attribute.rb +1 -1
  88. data/lib/bioroebe/biomart/biomart.rb +8 -9
  89. data/lib/bioroebe/biomart/server.rb +1 -1
  90. data/lib/bioroebe/blosum/blosum.rb +2 -2
  91. data/lib/bioroebe/calculate/calculate_blosum_score.rb +5 -3
  92. data/lib/bioroebe/calculate/calculate_gc_content.rb +1 -1
  93. data/lib/bioroebe/calculate/calculate_levensthein_distance.rb +5 -3
  94. data/lib/bioroebe/calculate/calculate_melting_temperature.rb +2 -10
  95. data/lib/bioroebe/calculate/calculate_melting_temperature_for_more_than_thirteen_nucleotides.rb +6 -15
  96. data/lib/bioroebe/calculate/calculate_the_position_specific_scoring_matrix.rb +4 -2
  97. data/lib/bioroebe/cell/cell.rb +3 -2
  98. data/lib/bioroebe/cell/specialized_cells/B_cell.rb +60 -0
  99. data/lib/bioroebe/cell/specialized_cells/Macrophage.rb +60 -0
  100. data/lib/bioroebe/cell/specialized_cells/README.md +5 -0
  101. data/lib/bioroebe/cell/specialized_cells/T_cell.rb +60 -0
  102. data/lib/bioroebe/cleave_and_digest/cleave.rb +3 -1
  103. data/lib/bioroebe/cleave_and_digest/digestion.rb +1 -1
  104. data/lib/bioroebe/codon_tables/frequencies/10090_Mus_musculus.yml +93 -0
  105. data/lib/bioroebe/codon_tables/frequencies/107243_Thlaspi_caerulescens.yml +72 -0
  106. data/lib/bioroebe/codon_tables/frequencies/parse_frequency_table.rb +2 -2
  107. data/lib/bioroebe/codons/codon_table.rb +10 -2
  108. data/lib/bioroebe/codons/codons.rb +3 -3
  109. data/lib/bioroebe/codons/convert_this_codon_to_that_aminoacid.rb +18 -15
  110. data/lib/bioroebe/codons/determine_optimal_codons.rb +1 -1
  111. data/lib/bioroebe/codons/possible_codons_for_this_aminoacid.rb +4 -2
  112. data/lib/bioroebe/codons/show_codon_tables.rb +1 -1
  113. data/lib/bioroebe/codons/show_codon_usage.rb +1 -2
  114. data/lib/bioroebe/codons/show_this_codon_table.rb +2 -2
  115. data/lib/bioroebe/codons/start_codons.rb +7 -3
  116. data/lib/bioroebe/colours/colour_schemes/README.md +1 -1
  117. data/lib/bioroebe/colours/colour_schemes/array_available_colour_schemes.rb +3 -3
  118. data/lib/bioroebe/colours/colour_schemes/colour_scheme.rb +3 -3
  119. data/lib/bioroebe/colours/colour_schemes/colour_scheme_demo.rb +4 -3
  120. data/lib/bioroebe/colours/colour_schemes/helix.rb +3 -1
  121. data/lib/bioroebe/colours/colour_schemes/hydropathy.rb +3 -1
  122. data/lib/bioroebe/colours/colour_schemes/score.rb +13 -2
  123. data/lib/bioroebe/colours/colour_schemes/strand.rb +3 -1
  124. data/lib/bioroebe/colours/colour_schemes/turn.rb +3 -1
  125. data/lib/bioroebe/colours/colour_schemes/zappo.rb +1 -1
  126. data/lib/bioroebe/{toplevel_methods/colourize_related_methods.rb → colours/colourize_related_code.rb} +1 -3
  127. data/lib/bioroebe/colours/colourize_sequence.rb +3 -1
  128. data/lib/bioroebe/colours/colours.rb +172 -15
  129. data/lib/bioroebe/configuration/configuration.rb +1 -1
  130. data/lib/bioroebe/constants/GUIs.rb +2 -2
  131. data/lib/bioroebe/constants/constants.rb +1349 -0
  132. data/lib/bioroebe/conversions/convert_aminoacid_to_dna.rb +8 -13
  133. data/lib/bioroebe/conversions/dna_to_aminoacid_sequence.rb +9 -3
  134. data/lib/bioroebe/count/count_amount_of_aminoacids.rb +11 -10
  135. data/lib/bioroebe/count/count_amount_of_nucleotides.rb +1 -1
  136. data/lib/bioroebe/count/count_at.rb +2 -1
  137. data/lib/bioroebe/databases/download_taxonomy_database.rb +1 -1
  138. data/lib/bioroebe/dotplots/advanced_dotplot.rb +2 -2
  139. data/lib/bioroebe/electron_microscopy/coordinate_analyzer.rb +2 -2
  140. data/lib/bioroebe/electron_microscopy/fix_pos_file.rb +2 -2
  141. data/lib/bioroebe/electron_microscopy/flipy.rb +2 -2
  142. data/lib/bioroebe/electron_microscopy/generate_em2em_file.rb +3 -11
  143. data/lib/bioroebe/electron_microscopy/parse_coordinates.rb +6 -6
  144. data/lib/bioroebe/electron_microscopy/read_file_xmd.rb +6 -6
  145. data/lib/bioroebe/electron_microscopy/simple_star_file_generator.rb +2 -2
  146. data/lib/bioroebe/enzymes/has_this_restriction_enzyme.rb +1 -1
  147. data/lib/bioroebe/enzymes/restriction_enzyme.rb +1 -1
  148. data/lib/bioroebe/enzymes/restriction_enzymes/statistics.rb +4 -3
  149. data/lib/bioroebe/enzymes/restriction_enzymes_file.rb +1 -1
  150. data/lib/bioroebe/enzymes/return_sequence_that_is_cut_via_restriction_enzyme.rb +4 -3
  151. data/lib/bioroebe/enzymes/show_restriction_enzymes.rb +3 -3
  152. data/lib/bioroebe/ext/main.cpp +0 -1
  153. data/lib/bioroebe/fasta_and_fastq/autocorrect_the_name_of_this_fasta_file.rb +3 -3
  154. data/lib/bioroebe/fasta_and_fastq/compact_fasta_file/compact_fasta_file.rb +1 -1
  155. data/lib/bioroebe/fasta_and_fastq/display_how_many_fasta_entries_are_in_this_directory.rb +1 -1
  156. data/lib/bioroebe/fasta_and_fastq/download_fasta.rb +8 -14
  157. data/lib/bioroebe/fasta_and_fastq/fasta_defline/fasta_defline.rb +1 -1
  158. data/lib/bioroebe/fasta_and_fastq/fasta_to_yaml/fasta_to_yaml.rb +1 -1
  159. data/lib/bioroebe/fasta_and_fastq/fastq_format_explainer.rb +1 -1
  160. data/lib/bioroebe/fasta_and_fastq/length_modifier/length_modifier.rb +1 -1
  161. data/lib/bioroebe/fasta_and_fastq/parse_fasta/parse_fasta.rb +37 -11
  162. data/lib/bioroebe/fasta_and_fastq/parse_fastq/parse_fastq.rb +2 -2
  163. data/lib/bioroebe/fasta_and_fastq/return_fasta_subsection_of_this_file.rb +1 -1
  164. data/lib/bioroebe/fasta_and_fastq/show_fasta_headers.rb +5 -13
  165. data/lib/bioroebe/fasta_and_fastq/show_fasta_statistics.rb +1 -1
  166. data/lib/bioroebe/fasta_and_fastq/simplify_fasta_header/simplify_fasta_header.rb +1 -1
  167. data/lib/bioroebe/fasta_and_fastq/split_this_fasta_file_into_chromosomes/reset.rb +3 -6
  168. data/lib/bioroebe/fasta_and_fastq/split_this_fasta_file_into_chromosomes/split_this_fasta_file_into_chromosomes.rb +3 -3
  169. data/lib/bioroebe/genbank/genbank_flat_file_format_generator.rb +20 -11
  170. data/lib/bioroebe/genome/genome.rb +1 -1
  171. data/lib/bioroebe/genomes/genome_pattern.rb +17 -16
  172. data/lib/bioroebe/genomes/genome_retriever.rb +4 -2
  173. data/lib/bioroebe/gui/experimental/snapgene/snapgene.rb +10 -13
  174. data/lib/bioroebe/gui/universal_widgets/alignment/alignment.rb +557 -0
  175. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/aminoacid_composition/aminoacid_composition.rb +498 -198
  176. data/lib/bioroebe/gui/universal_widgets/anti_sense_strand/anti_sense_strand.rb +665 -0
  177. data/lib/bioroebe/gui/universal_widgets/blosum_matrix_viewer/blosum_matrix_viewer.rb +329 -0
  178. data/lib/bioroebe/gui/universal_widgets/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.rb +423 -0
  179. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/controller/controller.rb +170 -118
  180. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/dna_to_aminoacid_widget/dna_to_aminoacid_widget.rb +277 -215
  181. data/lib/bioroebe/gui/{shared_code/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget_module.rb → universal_widgets/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.rb} +297 -107
  182. data/lib/bioroebe/gui/universal_widgets/fasta_table_widget/fasta_table_widget.rb +643 -0
  183. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/format_converter/format_converter.rb +236 -164
  184. data/lib/bioroebe/gui/universal_widgets/gene/gene.rb +278 -0
  185. data/lib/bioroebe/gui/universal_widgets/hamming_distance/hamming_distance.rb +646 -0
  186. data/lib/bioroebe/gui/{shared_code/levensthein_distance/levensthein_distance_module.rb → universal_widgets/levensthein_distance/levensthein_distance.rb} +313 -88
  187. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/nucleotide_analyser/nucleotide_analyser.rb +281 -189
  188. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/parse_pdb_file/parse_pdb_file.rb +265 -149
  189. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/primer_design_widget/primer_design_widget.rb +337 -263
  190. data/lib/bioroebe/gui/universal_widgets/protein_to_DNA/protein_to_DNA.rb +408 -0
  191. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/random_sequence/random_sequence.rb +245 -187
  192. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/restriction_enzymes/restriction_enzymes.rb +207 -137
  193. data/lib/bioroebe/gui/universal_widgets/shell/shell.rb +288 -0
  194. data/lib/bioroebe/gui/{gtk3/show_codon_table/misc.rb → universal_widgets/show_codon_table/show_codon_table.rb} +290 -110
  195. data/lib/bioroebe/gui/{shared_code/show_codon_usage/show_codon_usage_module.rb → universal_widgets/show_codon_usage/show_codon_usage.rb} +228 -47
  196. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/sizeseq/sizeseq.rb +151 -69
  197. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/three_to_one/three_to_one.rb +190 -127
  198. data/lib/bioroebe/gui/{gtk3 → universal_widgets}/www_finder/www_finder.rb +211 -152
  199. data/lib/bioroebe/images/images.html +953 -1170
  200. data/lib/bioroebe/images/misc/README.md +6 -0
  201. data/lib/bioroebe/images/misc/activation.avif +0 -0
  202. data/lib/bioroebe/images/misc/inhibition.avif +0 -0
  203. data/lib/bioroebe/images/misc/small_virus_logo.avif +0 -0
  204. data/lib/bioroebe/{constants/base_directory.rb → log_directory/log_directory.rb} +79 -59
  205. data/lib/bioroebe/matplotlib/matplotlib_generator.rb +1 -1
  206. data/lib/bioroebe/misc/quiz/three_letter_to_aminoacid.rb +1 -1
  207. data/lib/bioroebe/misc/ruler.rb +5 -5
  208. data/lib/bioroebe/misc/useful_formulas.rb +3 -3
  209. data/lib/bioroebe/ncbi/efetch.rb +1 -2
  210. data/lib/bioroebe/ngs/phred_quality_score_table.rb +3 -3
  211. data/lib/bioroebe/nucleotides/complementary_dna_strand.rb +3 -6
  212. data/lib/bioroebe/nucleotides/molecular_weight_of_nucleotides.rb +3 -3
  213. data/lib/bioroebe/nucleotides/most_likely_nucleotide_sequence_for_this_aminoacid_sequence.rb +6 -10
  214. data/lib/bioroebe/nucleotides/{show_nucleotide_sequence.rb → show_nucleotide_sequence/show_nucleotide_sequence.rb} +377 -255
  215. data/lib/bioroebe/palindromes/palindrome_2D_structure.rb +1 -1
  216. data/lib/bioroebe/palindromes/palindrome_finder.rb +1 -1
  217. data/lib/bioroebe/palindromes/palindrome_generator.rb +2 -10
  218. data/lib/bioroebe/parsers/biolang_parser.rb +1 -1
  219. data/lib/bioroebe/parsers/blosum_parser.rb +14 -19
  220. data/lib/bioroebe/parsers/genbank_parser.rb +2 -6
  221. data/lib/bioroebe/parsers/gff.rb +9 -9
  222. data/lib/bioroebe/parsers/parse_embl.rb +2 -6
  223. data/lib/bioroebe/parsers/stride_parser.rb +4 -12
  224. data/lib/bioroebe/patterns/analyse_glycosylation_pattern.rb +2 -2
  225. data/lib/bioroebe/patterns/is_this_sequence_a_EGF2_pattern.rb +6 -3
  226. data/lib/bioroebe/patterns/profile_pattern.rb +2 -2
  227. data/lib/bioroebe/patterns/rgg_scanner.rb +4 -2
  228. data/lib/bioroebe/{protein_structure → pdb_and_protein_structure}/alpha_helix.rb +2 -2
  229. data/lib/bioroebe/{pdb → pdb_and_protein_structure}/download_this_pdb.rb +2 -3
  230. data/lib/bioroebe/{pdb → pdb_and_protein_structure}/fetch_fasta_sequence_from_pdb.rb +4 -4
  231. data/lib/bioroebe/{protein_structure → pdb_and_protein_structure}/helical_wheel.rb +2 -2
  232. data/lib/bioroebe/{pdb → pdb_and_protein_structure}/parse_mmCIF_file.rb +1 -1
  233. data/lib/bioroebe/{pdb → pdb_and_protein_structure}/parse_pdb_file.rb +3 -3
  234. data/lib/bioroebe/{pdb → pdb_and_protein_structure}/report_secondary_structures_from_this_pdb_file.rb +3 -3
  235. data/lib/bioroebe/project/project.rb +3 -1
  236. data/lib/bioroebe/raw_sequence/README.md +8 -8
  237. data/lib/bioroebe/raw_sequence/raw_sequence.rb +11 -2
  238. data/lib/bioroebe/regexes/regexes.rb +1 -2
  239. data/lib/bioroebe/requires/commandline_application.rb +3 -1
  240. data/lib/bioroebe/requires/require_all_pdb_files.rb +1 -1
  241. data/lib/bioroebe/requires/require_all_taxonomy_files.rb +1 -1
  242. data/lib/bioroebe/requires/require_all_utility_scripts_files.rb +10 -0
  243. data/lib/bioroebe/requires/require_colours.rb +1 -1
  244. data/lib/bioroebe/requires/require_the_bioroebe_project.rb +5 -7
  245. data/lib/bioroebe/requires/require_the_bioroebe_sinatra_components.rb +1 -1
  246. data/lib/bioroebe/requires/require_the_constants.rb +2 -14
  247. data/lib/bioroebe/requires/require_yaml.rb +7 -5
  248. data/lib/bioroebe/sequence/alignment.rb +1 -1
  249. data/lib/bioroebe/sequence/dna.rb +4 -2
  250. data/lib/bioroebe/sequence/nucleotide_module/nucleotide_module.rb +22 -8
  251. data/lib/bioroebe/sequence/protein.rb +2 -2
  252. data/lib/bioroebe/sequence/reverse_complement.rb +3 -3
  253. data/lib/bioroebe/sequence/rna.rb +9 -8
  254. data/lib/bioroebe/sequence/sequence.rb +3 -3
  255. data/lib/bioroebe/shell/configuration/additionally_set_xorg_buffer.yml +0 -0
  256. data/lib/bioroebe/shell/configuration/may_we_show_the_startup_information.yml +0 -0
  257. data/lib/bioroebe/shell/configuration/upcase_nucleotides.yml +0 -0
  258. data/lib/bioroebe/shell/configuration/use_silent_startup.yml +1 -1
  259. data/lib/bioroebe/shell/help/class.rb +68 -19
  260. data/lib/bioroebe/shell/menu.rb +5244 -5322
  261. data/lib/bioroebe/shell/{readline/readline.rb → readline.rb} +1 -3
  262. data/lib/bioroebe/shell/shell.rb +11240 -453
  263. data/lib/bioroebe/siRNA/siRNA.rb +3 -3
  264. data/lib/bioroebe/{gui/shared_code/blosum_matrix_viewer/blosum_matrix_viewer_module.rb → sinatra/sinatra_interface.rb} +28 -19
  265. data/lib/bioroebe/{www/sinatra/sinatra.rb → sinatra/sinatra_wrapper.rb} +731 -754
  266. data/lib/bioroebe/string_matching/find_longest_substring.rb +2 -10
  267. data/lib/bioroebe/string_matching/find_longest_substring_via_LCS_algorithm.rb +4 -14
  268. data/lib/bioroebe/string_matching/hamming_distance.rb +11 -10
  269. data/lib/bioroebe/string_matching/levensthein.rb +5 -17
  270. data/lib/bioroebe/string_matching/simple_string_comparer.rb +48 -4
  271. data/lib/bioroebe/string_matching/smith_waterman.rb +11 -6
  272. data/lib/bioroebe/svg/glyph.rb +4 -1
  273. data/lib/bioroebe/svg/mini_feature.rb +1 -1
  274. data/lib/bioroebe/svg/page.rb +18 -7
  275. data/lib/bioroebe/svg/svgee.rb +22 -13
  276. data/lib/bioroebe/svg/track.rb +20 -4
  277. data/lib/bioroebe/taxonomy/chart.rb +2 -2
  278. data/lib/bioroebe/taxonomy/class_methods.rb +5 -6
  279. data/lib/bioroebe/taxonomy/constants.rb +1 -1
  280. data/lib/bioroebe/taxonomy/info/info.rb +1 -1
  281. data/lib/bioroebe/taxonomy/info/is_dna.rb +1 -1
  282. data/lib/bioroebe/taxonomy/interactive.rb +1 -2
  283. data/lib/bioroebe/taxonomy/menu.rb +1 -1
  284. data/lib/bioroebe/taxonomy/node.rb +1 -1
  285. data/lib/bioroebe/taxonomy/parse_fasta.rb +4 -2
  286. data/lib/bioroebe/taxonomy/shared.rb +5 -4
  287. data/lib/bioroebe/taxonomy/taxonomy.rb +2 -4
  288. data/lib/bioroebe/toplevel_methods/fasta_and_fastq.rb +3 -45
  289. data/lib/bioroebe/toplevel_methods/{is_on_roebe.rb → roebe.rb} +1 -11
  290. data/lib/bioroebe/toplevel_methods/taxonomy.rb +6 -12
  291. data/lib/bioroebe/toplevel_methods/toplevel_methods.rb +5568 -0
  292. data/lib/bioroebe/utility_scripts/align_open_reading_frames.rb +4 -3
  293. data/lib/bioroebe/utility_scripts/analyse_local_dataset.rb +2 -2
  294. data/lib/bioroebe/utility_scripts/check_for_mismatches/check_for_mismatches.rb +16 -9
  295. data/lib/bioroebe/utility_scripts/compacter/compacter.rb +4 -2
  296. data/lib/bioroebe/utility_scripts/compare_these_two_sequences_via_blosum.rb +119 -0
  297. data/lib/bioroebe/utility_scripts/compseq/compseq.rb +11 -9
  298. data/lib/bioroebe/utility_scripts/{consensus_sequence.rb → consensus_sequence/consensus_sequence.rb} +13 -4
  299. data/lib/bioroebe/utility_scripts/{create_batch_entrez_file.rb → create_batch_entrez_file/create_batch_entrez_file.rb} +5 -5
  300. data/lib/bioroebe/utility_scripts/{determine_antigenic_areas.rb → determine_antigenic_areas/determine_antigenic_areas.rb} +5 -5
  301. data/lib/bioroebe/utility_scripts/{determine_missing_nucleotides_percentage.rb → determine_missing_nucleotides_percentage/determine_missing_nucleotides_percentage.rb} +16 -15
  302. data/lib/bioroebe/utility_scripts/display_open_reading_frames/display_open_reading_frames.rb +7 -7
  303. data/lib/bioroebe/utility_scripts/display_open_reading_frames/misc.rb +1 -1
  304. data/lib/bioroebe/utility_scripts/display_open_reading_frames/report.rb +2 -0
  305. data/lib/bioroebe/utility_scripts/{dot_alignment.rb → dot_alignment/dot_alignment.rb} +3 -3
  306. data/lib/bioroebe/utility_scripts/{download_files_from_rebase.rb → download_files_from_rebase/download_files_from_rebase.rb} +5 -5
  307. data/lib/bioroebe/utility_scripts/fetch_data_from_uniprot/fetch_data_from_uniprot.rb +269 -0
  308. data/lib/bioroebe/utility_scripts/find_gene.rb +4 -2
  309. data/lib/bioroebe/utility_scripts/{mirror_repeat.rb → mirror_repeat/mirror_repeat.rb} +5 -5
  310. data/lib/bioroebe/utility_scripts/move_file_to_its_correct_location.rb +3 -3
  311. data/lib/bioroebe/utility_scripts/{parse_taxonomy.rb → parse_taxonomy/parse_taxonomy.rb} +15 -6
  312. data/lib/bioroebe/utility_scripts/{pathways.rb → pathways/pathways.rb} +4 -3
  313. data/lib/bioroebe/utility_scripts/{permutations.rb → permutations/permutations.rb} +3 -3
  314. data/lib/bioroebe/utility_scripts/punnet/punnet.rb +4 -2
  315. data/lib/bioroebe/utility_scripts/{show_this_dna_sequence.rb → show_this_dna_sequence/show_this_dna_sequence.rb} +1 -1
  316. data/lib/bioroebe/utility_scripts/showorf/showorf.rb +406 -10
  317. data/lib/bioroebe/version/version.rb +2 -2
  318. data/lib/bioroebe/viennarna/rnafold_wrapper.rb +5 -13
  319. data/lib/bioroebe/virus/individual_viruses/README.md +15 -0
  320. data/lib/bioroebe/virus/individual_viruses/tobacco_mosaic_virus.rb +40 -0
  321. data/lib/bioroebe/virus/virus.rb +76 -0
  322. data/lib/bioroebe/www/bioroebe.cgi +4 -3
  323. data/lib/bioroebe/www/embeddable_interface.rb +85 -49
  324. data/lib/bioroebe/yaml/agarose/agarose_concentrations.yml +6 -6
  325. data/lib/bioroebe/yaml/antisense/antisense.yml +2 -0
  326. data/lib/bioroebe/yaml/blosum/blosum50.yml +6 -0
  327. data/lib/bioroebe/yaml/blosum/blosum90.yml +2 -1
  328. data/lib/bioroebe/yaml/chromosomes/chromosome_numbers.yml +2 -2
  329. data/lib/bioroebe/yaml/configuration/temp_dir.yml +1 -1
  330. data/lib/bioroebe/yaml/consensus_sequences/consensus_sequences.yml +1 -0
  331. data/lib/bioroebe/yaml/enzymes/enzyme_classes.yml +7 -6
  332. data/lib/bioroebe/yaml/humans/human_chromosomes.yml +3 -3
  333. data/lib/bioroebe/yaml/mRNA/mRNA.yml +1 -5
  334. data/lib/bioroebe/yaml/nucleotides/abbreviations_for_nucleotides.yml +1 -0
  335. data/lib/bioroebe/yaml/nucleotides/nucleotide_density.yml +2 -1
  336. data/lib/bioroebe/yaml/promoters/35S.yml +3 -1
  337. data/lib/bioroebe/yaml/proteases/proteases.yml +3 -1
  338. data/lib/bioroebe/yaml/proteins/ubiquitin.yml +4 -1
  339. data/lib/bioroebe/yaml/restriction_enzymes/restriction_enzymes.yml +7 -7
  340. data/spec/testing_toplevel_method_editor.rb +1 -1
  341. data/spec/testing_toplevel_method_verbose.rb +1 -1
  342. data/test/testing_dna_to_rna_conversion.rb +1 -1
  343. metadata +127 -235
  344. data/doc/blosum.md +0 -5
  345. data/lib/bioroebe/base/commandline_application/aminoacids.rb +0 -33
  346. data/lib/bioroebe/base/commandline_application/directory.rb +0 -33
  347. data/lib/bioroebe/base/commandline_application/extract.rb +0 -22
  348. data/lib/bioroebe/base/commandline_application/misc.rb +0 -502
  349. data/lib/bioroebe/base/commandline_application/opn.rb +0 -47
  350. data/lib/bioroebe/base/commandline_application/reset.rb +0 -42
  351. data/lib/bioroebe/base/commandline_application/warnings.rb +0 -36
  352. data/lib/bioroebe/base/commandline_application/write_what_into.rb +0 -29
  353. data/lib/bioroebe/base/initialize.rb +0 -18
  354. data/lib/bioroebe/base/misc.rb +0 -129
  355. data/lib/bioroebe/base/namespace.rb +0 -16
  356. data/lib/bioroebe/base/prototype/e_and_ee.rb +0 -24
  357. data/lib/bioroebe/base/prototype/misc.rb +0 -114
  358. data/lib/bioroebe/base/prototype/mkdir.rb +0 -20
  359. data/lib/bioroebe/base/prototype/reset.rb +0 -36
  360. data/lib/bioroebe/colours/misc_colours.rb +0 -80
  361. data/lib/bioroebe/colours/rev.rb +0 -44
  362. data/lib/bioroebe/colours/sdir.rb +0 -21
  363. data/lib/bioroebe/colours/sfancy.rb +0 -21
  364. data/lib/bioroebe/colours/sfile.rb +0 -21
  365. data/lib/bioroebe/colours/simp.rb +0 -21
  366. data/lib/bioroebe/colours/swarn.rb +0 -29
  367. data/lib/bioroebe/constants/aminoacids_and_proteins.rb +0 -147
  368. data/lib/bioroebe/constants/carriage_return.rb +0 -14
  369. data/lib/bioroebe/constants/codon_tables.rb +0 -77
  370. data/lib/bioroebe/constants/database_constants.rb +0 -107
  371. data/lib/bioroebe/constants/files_and_directories.rb +0 -606
  372. data/lib/bioroebe/constants/misc.rb +0 -209
  373. data/lib/bioroebe/constants/newline.rb +0 -14
  374. data/lib/bioroebe/constants/nucleotides.rb +0 -121
  375. data/lib/bioroebe/constants/regex.rb +0 -28
  376. data/lib/bioroebe/constants/roebe.rb +0 -38
  377. data/lib/bioroebe/constants/row_terminator.rb +0 -16
  378. data/lib/bioroebe/constants/tabulator.rb +0 -14
  379. data/lib/bioroebe/constants/unicode.rb +0 -12
  380. data/lib/bioroebe/constants/urls.rb +0 -50
  381. data/lib/bioroebe/gui/gtk +0 -1
  382. data/lib/bioroebe/gui/gtk3/README.md +0 -2
  383. data/lib/bioroebe/gui/gtk3/alignment/alignment.rb +0 -306
  384. data/lib/bioroebe/gui/gtk3/anti_sense_strand/anti_sense_strand.rb +0 -29
  385. data/lib/bioroebe/gui/gtk3/blosum_matrix_viewer/blosum_matrix_viewer.rb +0 -195
  386. data/lib/bioroebe/gui/gtk3/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.rb +0 -105
  387. data/lib/bioroebe/gui/gtk3/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.rb +0 -188
  388. data/lib/bioroebe/gui/gtk3/fasta_table_widget/fasta_table_widget.rb +0 -322
  389. data/lib/bioroebe/gui/gtk3/gene/gene.rb +0 -181
  390. data/lib/bioroebe/gui/gtk3/hamming_distance/hamming_distance.rb +0 -383
  391. data/lib/bioroebe/gui/gtk3/levensthein_distance/levensthein_distance.rb +0 -174
  392. data/lib/bioroebe/gui/gtk3/protein_to_DNA/protein_to_DNA.rb +0 -181
  393. data/lib/bioroebe/gui/gtk3/show_codon_table/show_codon_table.rb +0 -101
  394. data/lib/bioroebe/gui/gtk3/show_codon_usage/show_codon_usage.rb +0 -145
  395. data/lib/bioroebe/gui/gtk3/three_to_one/title.rb +0 -23
  396. data/lib/bioroebe/gui/jruby/alignment/alignment.rb +0 -165
  397. data/lib/bioroebe/gui/jruby/aminoacid_composition/aminoacid_composition.rb +0 -166
  398. data/lib/bioroebe/gui/jruby/blosum_matrix_viewer/blosum_matrix_viewer.rb +0 -82
  399. data/lib/bioroebe/gui/libui/README.md +0 -4
  400. data/lib/bioroebe/gui/libui/alignment/alignment.rb +0 -116
  401. data/lib/bioroebe/gui/libui/blosum_matrix_viewer/blosum_matrix_viewer.rb +0 -112
  402. data/lib/bioroebe/gui/libui/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.rb +0 -60
  403. data/lib/bioroebe/gui/libui/controller/controller.rb +0 -116
  404. data/lib/bioroebe/gui/libui/dna_to_aminoacid_widget/dna_to_aminoacid_widget.rb +0 -161
  405. data/lib/bioroebe/gui/libui/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.rb +0 -76
  406. data/lib/bioroebe/gui/libui/hamming_distance/hamming_distance.rb +0 -135
  407. data/lib/bioroebe/gui/libui/levensthein_distance/levensthein_distance.rb +0 -118
  408. data/lib/bioroebe/gui/libui/protein_to_DNA/protein_to_DNA.rb +0 -115
  409. data/lib/bioroebe/gui/libui/random_sequence/random_sequence.rb +0 -190
  410. data/lib/bioroebe/gui/libui/show_codon_table/show_codon_table.rb +0 -134
  411. data/lib/bioroebe/gui/libui/show_codon_usage/show_codon_usage.rb +0 -89
  412. data/lib/bioroebe/gui/libui/three_to_one/three_to_one.rb +0 -113
  413. data/lib/bioroebe/gui/shared_code/alignment/alignment_module.rb +0 -102
  414. data/lib/bioroebe/gui/shared_code/aminoacid_composition/aminoacid_composition_module.rb +0 -94
  415. data/lib/bioroebe/gui/shared_code/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria_module.rb +0 -216
  416. data/lib/bioroebe/gui/shared_code/protein_to_DNA/protein_to_DNA_module.rb +0 -192
  417. data/lib/bioroebe/gui/shared_code/show_codon_table/show_codon_table_module.rb +0 -72
  418. data/lib/bioroebe/gui/tk/aminoacid_composition/aminoacid_composition.rb +0 -206
  419. data/lib/bioroebe/gui/tk/blosum_matrix_viewer/blosum_matrix_viewer.rb +0 -140
  420. data/lib/bioroebe/gui/tk/hamming_distance/hamming_distance.rb +0 -262
  421. data/lib/bioroebe/gui/tk/levensthein_distance/levensthein_distance.rb +0 -243
  422. data/lib/bioroebe/gui/tk/three_to_one/three_to_one.rb +0 -199
  423. data/lib/bioroebe/gui/unified_widgets/anti_sense_strand/anti_sense_strand.rb +0 -519
  424. data/lib/bioroebe/shell/colours/colours.rb +0 -235
  425. data/lib/bioroebe/shell/help/help.rb +0 -25
  426. data/lib/bioroebe/shell/misc.rb +0 -10227
  427. data/lib/bioroebe/toplevel_methods/ad_hoc_task.rb +0 -56
  428. data/lib/bioroebe/toplevel_methods/aminoacids_and_proteins.rb +0 -722
  429. data/lib/bioroebe/toplevel_methods/atomic_composition.rb +0 -198
  430. data/lib/bioroebe/toplevel_methods/base_composition.rb +0 -121
  431. data/lib/bioroebe/toplevel_methods/blast.rb +0 -153
  432. data/lib/bioroebe/toplevel_methods/calculate_n50_value.rb +0 -57
  433. data/lib/bioroebe/toplevel_methods/cat.rb +0 -71
  434. data/lib/bioroebe/toplevel_methods/chunked_display.rb +0 -92
  435. data/lib/bioroebe/toplevel_methods/cliner.rb +0 -81
  436. data/lib/bioroebe/toplevel_methods/complement.rb +0 -58
  437. data/lib/bioroebe/toplevel_methods/convert_global_env.rb +0 -39
  438. data/lib/bioroebe/toplevel_methods/databases.rb +0 -73
  439. data/lib/bioroebe/toplevel_methods/delimiter.rb +0 -19
  440. data/lib/bioroebe/toplevel_methods/digest.rb +0 -81
  441. data/lib/bioroebe/toplevel_methods/download_and_fetch_data.rb +0 -146
  442. data/lib/bioroebe/toplevel_methods/e.rb +0 -20
  443. data/lib/bioroebe/toplevel_methods/editor.rb +0 -21
  444. data/lib/bioroebe/toplevel_methods/esystem.rb +0 -22
  445. data/lib/bioroebe/toplevel_methods/exponential_growth.rb +0 -74
  446. data/lib/bioroebe/toplevel_methods/extract.rb +0 -56
  447. data/lib/bioroebe/toplevel_methods/file_and_directory_related_actions.rb +0 -269
  448. data/lib/bioroebe/toplevel_methods/frequencies.rb +0 -99
  449. data/lib/bioroebe/toplevel_methods/hamming_distance.rb +0 -60
  450. data/lib/bioroebe/toplevel_methods/infer.rb +0 -66
  451. data/lib/bioroebe/toplevel_methods/leading_five_prime_and_trailing_three_prime.rb +0 -101
  452. data/lib/bioroebe/toplevel_methods/levensthein.rb +0 -63
  453. data/lib/bioroebe/toplevel_methods/log_directory.rb +0 -109
  454. data/lib/bioroebe/toplevel_methods/longest_common_substring.rb +0 -55
  455. data/lib/bioroebe/toplevel_methods/map_ncbi_entry_to_eutils_id.rb +0 -88
  456. data/lib/bioroebe/toplevel_methods/matches.rb +0 -259
  457. data/lib/bioroebe/toplevel_methods/misc.rb +0 -596
  458. data/lib/bioroebe/toplevel_methods/nucleotides.rb +0 -787
  459. data/lib/bioroebe/toplevel_methods/number_of_clones.rb +0 -63
  460. data/lib/bioroebe/toplevel_methods/open_in_browser.rb +0 -79
  461. data/lib/bioroebe/toplevel_methods/open_reading_frames.rb +0 -236
  462. data/lib/bioroebe/toplevel_methods/opn.rb +0 -34
  463. data/lib/bioroebe/toplevel_methods/palindromes.rb +0 -155
  464. data/lib/bioroebe/toplevel_methods/parse.rb +0 -59
  465. data/lib/bioroebe/toplevel_methods/phred_error_probability.rb +0 -68
  466. data/lib/bioroebe/toplevel_methods/rds.rb +0 -24
  467. data/lib/bioroebe/toplevel_methods/remove.rb +0 -86
  468. data/lib/bioroebe/toplevel_methods/return_source_code_of_this_method.rb +0 -35
  469. data/lib/bioroebe/toplevel_methods/return_subsequence_based_on_indices.rb +0 -68
  470. data/lib/bioroebe/toplevel_methods/rna_splicing.rb +0 -73
  471. data/lib/bioroebe/toplevel_methods/rnalfold.rb +0 -69
  472. data/lib/bioroebe/toplevel_methods/searching_and_finding.rb +0 -116
  473. data/lib/bioroebe/toplevel_methods/shuffleseq.rb +0 -37
  474. data/lib/bioroebe/toplevel_methods/statistics.rb +0 -53
  475. data/lib/bioroebe/toplevel_methods/sum_of_odd_integers.rb +0 -62
  476. data/lib/bioroebe/toplevel_methods/three_delimiter.rb +0 -34
  477. data/lib/bioroebe/toplevel_methods/time_and_date.rb +0 -53
  478. data/lib/bioroebe/toplevel_methods/to_camelcase.rb +0 -31
  479. data/lib/bioroebe/toplevel_methods/truncate.rb +0 -48
  480. data/lib/bioroebe/toplevel_methods/url.rb +0 -36
  481. data/lib/bioroebe/toplevel_methods/verbose.rb +0 -59
  482. data/lib/bioroebe/utility_scripts/showorf/constants.rb +0 -31
  483. data/lib/bioroebe/utility_scripts/showorf/help.rb +0 -33
  484. data/lib/bioroebe/utility_scripts/showorf/initialize.rb +0 -52
  485. data/lib/bioroebe/utility_scripts/showorf/menu.rb +0 -68
  486. data/lib/bioroebe/utility_scripts/showorf/reset.rb +0 -36
  487. data/lib/bioroebe/utility_scripts/showorf/run.rb +0 -152
  488. data/lib/bioroebe/utility_scripts/showorf/show.rb +0 -97
  489. /data/doc/{german_names_for_the_aminoacids.md → german_names_for_the_aminoacids/german_names_for_the_aminoacids.md} +0 -0
  490. /data/doc/{pdb_ATOM_entry.md → pdb_ATOM_entry/pdb_ATOM_entry.md} +0 -0
  491. /data/doc/{resources.md → resources/resources.md} +0 -0
  492. /data/lib/bioroebe/gui/{gtk3 → universal_widgets}/aminoacid_composition/customized_dialog.rb +0 -0
  493. /data/lib/bioroebe/gui/{gtk3 → universal_widgets}/anti_sense_strand/anti_sense_strand.config +0 -0
  494. /data/lib/bioroebe/gui/{gtk3 → universal_widgets}/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.config +0 -0
  495. /data/lib/bioroebe/gui/{gtk3 → universal_widgets}/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.config +0 -0
  496. /data/lib/bioroebe/gui/{gtk3 → universal_widgets}/hamming_distance/hamming_distance.config +0 -0
  497. /data/lib/bioroebe/gui/{gtk3 → universal_widgets}/levensthein_distance/levensthein_distance.config +0 -0
  498. /data/lib/bioroebe/gui/{gtk3 → universal_widgets}/protein_to_DNA/protein_to_DNA.config +0 -0
  499. /data/lib/bioroebe/gui/{gtk3 → universal_widgets}/restriction_enzymes/restriction_enzymes.config +0 -0
  500. /data/lib/bioroebe/gui/{gtk3 → universal_widgets}/www_finder/www_finder.config +0 -0
  501. /data/lib/bioroebe/yaml/{base_composition_of_dna.yml → base_composition_of_dna/base_composition_of_dna.yml} +0 -0
  502. /data/lib/bioroebe/yaml/{nuclear_localization_sequences.yml → nuclear_localization_sequences/nuclear_localization_sequences.yml} +0 -0
  503. /data/lib/bioroebe/yaml/{talens.yml → talens/talens.yml} +0 -0
@@ -15,17 +15,12 @@
15
15
  # =========================================================================== #
16
16
  # require 'bioroebe/string_matching/find_longest_substring.rb'
17
17
  # =========================================================================== #
18
- require 'bioroebe/base/commandline_application/commandline_application.rb'
18
+ require 'bioroebe/requires/commandline_application.rb'
19
19
 
20
20
  module Bioroebe
21
21
 
22
22
  class FindLongestSubstring < ::Bioroebe::CommandlineApplication # === Bioroebe::FindLongestSubstring
23
23
 
24
- # ========================================================================= #
25
- # === NAMESPACE
26
- # ========================================================================= #
27
- NAMESPACE = inspect
28
-
29
24
  # ========================================================================= #
30
25
  # === STRING1
31
26
  # ========================================================================= #
@@ -56,10 +51,7 @@ class FindLongestSubstring < ::Bioroebe::CommandlineApplication # === Bioroebe::
56
51
  # ========================================================================= #
57
52
  def reset
58
53
  super()
59
- # ======================================================================= #
60
- # === @namespace
61
- # ======================================================================= #
62
- @namespace = NAMESPACE
54
+ infer_the_namespace
63
55
  # ======================================================================= #
64
56
  # === @start_position
65
57
  # ======================================================================= #
@@ -19,19 +19,12 @@
19
19
  # =========================================================================== #
20
20
  # require 'bioroebe/string_matching/find_longest_substring_via_LCS_algorithm.rb'
21
21
  # =========================================================================== #
22
- require 'bioroebe/base/commandline_application/commandline_application.rb'
22
+ require 'bioroebe/requires/commandline_application.rb'
23
23
 
24
24
  module Bioroebe
25
25
 
26
26
  class FindLongestSubstringViaLCSalgorithm < ::Bioroebe::CommandlineApplication # === Bioroebe::FindLongestSubstring
27
27
 
28
- require 'bioroebe/toplevel_methods/matches.rb'
29
-
30
- # ========================================================================= #
31
- # === NAMESPACE
32
- # ========================================================================= #
33
- NAMESPACE = inspect
34
-
35
28
  # ========================================================================= #
36
29
  # === initialize
37
30
  # ========================================================================= #
@@ -57,10 +50,7 @@ class FindLongestSubstringViaLCSalgorithm < ::Bioroebe::CommandlineApplication #
57
50
  # ========================================================================= #
58
51
  def reset
59
52
  super()
60
- # ======================================================================= #
61
- # === @namespace
62
- # ======================================================================= #
63
- @namespace = NAMESPACE
53
+ infer_the_namespace
64
54
  # ======================================================================= #
65
55
  # === @string1
66
56
  # ======================================================================= #
@@ -147,9 +137,9 @@ class FindLongestSubstringViaLCSalgorithm < ::Bioroebe::CommandlineApplication #
147
137
  e " #{sfancy(lcs)}#{rev} (#{sfancy(lcs.size)}#{rev} characters)"
148
138
  e
149
139
  else
150
- opnn; erev 'The gem '+sfancy('diff-lcs')+rev+' is not installed. '\
140
+ opnerev 'The gem '+sfancy('diff-lcs')+rev+' is not installed. '\
151
141
  'Please install it if you'
152
- opnn; erev 'wish to make use of this gem here.'
142
+ opnerev 'wish to make use of this gem here.'
153
143
  end
154
144
  end
155
145
 
@@ -14,7 +14,7 @@
14
14
  # require 'bioroebe/string_matching/hamming_distance.rb'
15
15
  # Bioroebe::HammingDistance.new(ARGV[0], ARGV[1])
16
16
  # =========================================================================== #
17
- require 'bioroebe/base/commandline_application/commandline_application.rb'
17
+ require 'bioroebe/requires/commandline_application.rb'
18
18
 
19
19
  module Bioroebe
20
20
 
@@ -40,8 +40,9 @@ class HammingDistance < ::Bioroebe::CommandlineApplication
40
40
  # ======================================================================= #
41
41
  if block_given?
42
42
  case yield
43
+ # === :be_quiet
43
44
  when :be_quiet
44
- @be_verbose = false
45
+ set_be_quiet
45
46
  end
46
47
  end
47
48
  run if run_already
@@ -59,12 +60,12 @@ class HammingDistance < ::Bioroebe::CommandlineApplication
59
60
  @input = nil
60
61
  reset_spacer
61
62
  # ======================================================================= #
62
- # === @be_verbose
63
+ # === :be_verbose
63
64
  #
64
65
  # The @be_verbose variable can also be set to :short, in which case
65
66
  # this class will only output a number.
66
67
  # ======================================================================= #
67
- @be_verbose = true # If this is true then we will also show the amount of differences.
68
+ set_be_verbose # If this is true then we will also show the amount of differences.
68
69
  end
69
70
 
70
71
  # ========================================================================= #
@@ -208,7 +209,7 @@ class HammingDistance < ::Bioroebe::CommandlineApplication
208
209
  # === report_result
209
210
  # ========================================================================= #
210
211
  def report_result
211
- if @be_verbose and !(@be_verbose == :short)
212
+ if be_verbose? and !(be_verbose? == :short)
212
213
  _ = rev.dup
213
214
  if @n_differences > 1
214
215
  _ << 'These '+colourize_in_red(@n_differences)+rev+
@@ -224,7 +225,6 @@ class HammingDistance < ::Bioroebe::CommandlineApplication
224
225
  _ << ', was found.'
225
226
  end
226
227
  e _
227
- e
228
228
  end
229
229
  counter = 0
230
230
  # ======================================================================= #
@@ -261,15 +261,16 @@ class HammingDistance < ::Bioroebe::CommandlineApplication
261
261
  # Finally, output the two different Arrays here. But only do so if
262
262
  # the verbosity level is not set to short.
263
263
  # ===================================================================== #
264
- case @be_verbose
264
+ case be_verbose?
265
265
  when true, :default
266
+ padding_to_use = ' '
266
267
  e
267
- e rev+inner_array1.join
268
- e submatch.map {|entry|
268
+ e rev+padding_to_use+inner_array1.join
269
+ e padding_to_use+submatch.map {|entry|
269
270
  entry.gsub(/\|/,
270
271
  colourize_in_green('|')+rev)
271
272
  }.join
272
- e rev+inner_array2.join
273
+ e rev+padding_to_use+inner_array2.join
273
274
  e
274
275
  # ===================================================================== #
275
276
  # === :short_style
@@ -15,7 +15,7 @@
15
15
  # require 'bioroebe/string_matching/levensthein.rb'
16
16
  # Bioroebe::Levensthein.new(ARGV)
17
17
  # =========================================================================== #
18
- require 'bioroebe/base/commandline_application/commandline_application.rb'
18
+ require 'bioroebe/requires/commandline_application.rb'
19
19
 
20
20
  module Bioroebe
21
21
 
@@ -23,11 +23,6 @@ class Levensthein < ::Bioroebe::CommandlineApplication # === Bioroebe::Levensthe
23
23
 
24
24
  require 'bioroebe/calculate/calculate_levensthein_distance.rb'
25
25
 
26
- # ========================================================================= #
27
- # === NAMESPACE
28
- # ========================================================================= #
29
- NAMESPACE = inspect
30
-
31
26
  # ========================================================================= #
32
27
  # === DEFAULT_MATCH_COST
33
28
  #
@@ -85,7 +80,7 @@ class Levensthein < ::Bioroebe::CommandlineApplication # === Bioroebe::Levensthe
85
80
  # === :be_quiet
86
81
  # ===================================================================== #
87
82
  when :be_quiet
88
- @be_verbose = false
83
+ set_be_quiet
89
84
  end
90
85
  end
91
86
  run if run_already
@@ -96,18 +91,11 @@ class Levensthein < ::Bioroebe::CommandlineApplication # === Bioroebe::Levensthe
96
91
  # ========================================================================= #
97
92
  def reset
98
93
  super()
94
+ infer_the_namespace
99
95
  # ======================================================================= #
100
- # === @namespace
101
- # ======================================================================= #
102
- @namespace = NAMESPACE
103
- # ======================================================================= #
104
- # === @be_verbose
105
- # ======================================================================= #
106
- @be_verbose = true
107
- # ======================================================================= #
108
- # === @internal_hash
96
+ # === :be_verbose
109
97
  # ======================================================================= #
110
- @internal_hash = {}
98
+ set_be_verbose
111
99
  # ======================================================================= #
112
100
  # === :string1
113
101
  # ======================================================================= #
@@ -21,7 +21,7 @@
21
21
  # =========================================================================== #
22
22
  # require 'bioroebe/string_matching/simple_string_comparer.rb'
23
23
  # =========================================================================== #
24
- require 'bioroebe/base/commandline_application/commandline_application.rb'
24
+ require 'bioroebe/requires/commandline_application.rb'
25
25
 
26
26
  module Bioroebe
27
27
 
@@ -63,6 +63,7 @@ class SimpleStringComparer < ::Bioroebe::CommandlineApplication # === Bioroebe::
63
63
  &block
64
64
  )
65
65
  reset
66
+ set_commandline_arguments(i)
66
67
  case i
67
68
  when nil # Pass through in this case.
68
69
  when :dont_run_yet
@@ -109,6 +110,7 @@ class SimpleStringComparer < ::Bioroebe::CommandlineApplication # === Bioroebe::
109
110
  @n_matches = 0
110
111
  set_match_token
111
112
  @non_match_token = '.' # This is the token that will be displayed for non-matches.
113
+ set_colour_for_a_match
112
114
  end
113
115
 
114
116
  # ========================================================================= #
@@ -127,10 +129,14 @@ class SimpleStringComparer < ::Bioroebe::CommandlineApplication # === Bioroebe::
127
129
  else
128
130
  splitted = i
129
131
  end
132
+ if splitted and splitted.first.include?('|')
133
+ splitted = splitted.first
134
+ end
130
135
  splitted = splitted.split(N) unless splitted.is_a? Array
131
136
  splitted.map!(&:strip) # Get rid of trailing and leading newspaces.
132
137
  if splitted.is_a? Array
133
- if splitted.size == 1
138
+ case splitted.size
139
+ when 1
134
140
  if splitted.first.include? '|'
135
141
  splitted = splitted.first.split('|')
136
142
  end
@@ -252,7 +258,11 @@ class SimpleStringComparer < ::Bioroebe::CommandlineApplication # === Bioroebe::
252
258
  }.each_slice(80).to_a.map {|entry|
253
259
  entry.join
254
260
  }.map {|line|
255
- line.gsub(/\|/, seagreen(match_token?)+rev) # Colourize the match-token in the colour seagreen.
261
+ line.gsub(
262
+ /\|/,
263
+ send(@colour_for_a_match.to_sym, match_token?)+
264
+ rev
265
+ ) # Colourize the match-token in the colour seagreen.
256
266
  }
257
267
  0.upto(array1.size-1) {|index|
258
268
  e array1[index]
@@ -263,6 +273,19 @@ class SimpleStringComparer < ::Bioroebe::CommandlineApplication # === Bioroebe::
263
273
  e
264
274
  end; alias compare do_compare # === compare
265
275
 
276
+ # ========================================================================= #
277
+ # === set_colour_for_a_match
278
+ # ========================================================================= #
279
+ def set_colour_for_a_match(
280
+ i = :default
281
+ )
282
+ case i
283
+ when :default
284
+ i = :seagreen
285
+ end
286
+ @colour_for_a_match = i
287
+ end
288
+
266
289
  # ========================================================================= #
267
290
  # === consider_notifying_the_user_if_the_sequences_are_not_equal_in_length
268
291
  # ========================================================================= #
@@ -278,10 +301,30 @@ class SimpleStringComparer < ::Bioroebe::CommandlineApplication # === Bioroebe::
278
301
  end
279
302
  end
280
303
 
304
+ # ========================================================================= #
305
+ # === menu (menu tag)
306
+ # ========================================================================= #
307
+ def menu(
308
+ i = commandline_arguments_with_leading_hyphens?
309
+ )
310
+ if i.is_a? Array
311
+ i.each {|entry| menu(entry) }
312
+ else
313
+ case i # case tag
314
+ # ===================================================================== #
315
+ # === --colour-for-a-match=lightblue
316
+ # ===================================================================== #
317
+ when /^-?-?colour(-|_| )?for(-|_| )?a(-|_| )?match=(.+)$/ # === $4
318
+ set_colour_for_a_match($4.to_s.dup)
319
+ end
320
+ end
321
+ end
322
+
281
323
  # ========================================================================= #
282
324
  # === run (run tag)
283
325
  # ========================================================================= #
284
326
  def run
327
+ menu(commandline_arguments_with_leading_hyphens?)
285
328
  do_compare
286
329
  end
287
330
 
@@ -291,4 +334,5 @@ if __FILE__ == $PROGRAM_NAME
291
334
  Bioroebe::SimpleStringComparer.new(ARGV)
292
335
  end # sstringcompare
293
336
  # sstringcompare "AAAAAAAAAAAAAATTTTTTTTTTTAAAAAAAAAAAATATA|GAAAAAAAAAAAAAAAATATTTTTTTTTTTTTTTTTTTTTT"
294
- # scompare "acgagagaccagtaacgagagaccagta|gtcaggagccagtagtcaggagccagta"
337
+ # scompare "acgagagaccagtaacgagagaccagta|gtcaggagccagtagtcaggagccagta"
338
+ # scompare "acgagagaccagtaacgagagaccagta|gtcaggagccagtagtcaggagccagta" --colour-for-a-match=lightblue
@@ -86,9 +86,11 @@ class SmithWaterman # === Bioroebe::SmithWaterman
86
86
  alignment.each_with_index { |pos, i|
87
87
  next if i == 0
88
88
  case alignment[i-1][2]
89
+ # === :down
89
90
  when :down
90
91
  la << [ str_a_arr[pos[0]-1] ].pack('U*')
91
92
  lb << '-'
93
+ # === :right
92
94
  when :right
93
95
  la << '-'
94
96
  lb << [ str_b_arr[pos[1]-1] ].pack('U*')
@@ -171,7 +173,9 @@ class SmithWaterman # === Bioroebe::SmithWaterman
171
173
  # ========================================================================= #
172
174
  # === assign_cell
173
175
  # ========================================================================= #
174
- def assign_cell(i, j)
176
+ def assign_cell(
177
+ i, j
178
+ )
175
179
  score = (str_a_arr[i-1] == str_b_arr[j-1]) ? SCORE_MATCH : SCORE_MISS
176
180
  value = [
177
181
  0,
@@ -263,14 +267,15 @@ end; end
263
267
 
264
268
  if __FILE__ == $PROGRAM_NAME
265
269
  # Determine our two main sequences next:
270
+ alias e puts
266
271
  _ = Bioroebe::SmithWaterman.new(
267
272
  'ACACACTA',
268
273
  'AGCACACA'
269
274
  )
270
275
  _.do_perform_the_alignment
271
- puts
272
- puts _.mat.inspect
273
- puts _.alignment_inspect
274
- puts _.alignment.inspect
275
- puts "Highest SCORE = #{_.score}"
276
+ e
277
+ e _.mat.inspect
278
+ e _.alignment_inspect
279
+ e _.alignment.inspect
280
+ e "Highest SCORE = #{_.score}"
276
281
  end # rb smith_waterman.rb
@@ -93,7 +93,8 @@ class Glyph # === Bioroebe::SVG::Glyph
93
93
  # :y_round = y-axis radius of the ellipse used to round off the corners of the rectangle (default = 1)
94
94
  # :style = an arbitrary SVG compliant style string eg "fill-opacity:0.4;"
95
95
  # :x = x coordinate of the feature in pixels, usually added by the Bioroebe::SVG::Page object
96
- # :y = y coordinate of the feature in pixels, usually added by the Bioroebe::SVG::Page object
96
+ # :y = y coordinate of the feature in pixels, usually
97
+ # added by the Bioroebe::SVG::Page object
97
98
  #
98
99
  # Will return:
99
100
  #
@@ -654,8 +655,10 @@ class Glyph # === Bioroebe::SVG::Glyph
654
655
  # ========================================================================= #
655
656
  def self.gradient(gradient)
656
657
  type, color = case gradient
658
+ # === :red_white_h
657
659
  when :red_white_h
658
660
  [:linear, 'red']
661
+ # === :green_white_h
659
662
  when :green_white_h
660
663
  [:linear, 'green']
661
664
  when :blue_white_h
@@ -105,7 +105,7 @@ class MiniFeature # === Bioroebe::SVG::MiniFeature
105
105
  # ======================================================================= #
106
106
  # === @block_gaps
107
107
  # ======================================================================= #
108
- @block_gaps = []
108
+ @block_gaps = []
109
109
  end
110
110
 
111
111
  end; end; end
@@ -69,9 +69,14 @@ class Page # === Bioroebe::SVG::Page
69
69
  @track_top = 30
70
70
  # ======================================================================= #
71
71
  # === @tracks
72
+ #
73
+ # Array of track objects with loads of features in it.
74
+ # ======================================================================= #
75
+ @tracks = []
72
76
  # ======================================================================= #
73
- @tracks = [] # Array of track objects with loads of features in it.
74
- @scale_start = 1.0/0.0
77
+ # === @scale_start
78
+ # ======================================================================= #
79
+ @scale_start = 1.0 / 0.0
75
80
  @scale_stop = -1.0/0.0
76
81
  @nt_per_percent = 1
77
82
  end
@@ -181,7 +186,7 @@ class Page # === Bioroebe::SVG::Page
181
186
  # Adds a new Bioroebe::SVG::Track object to the current Bioroebe::SVG::Page
182
187
  # object.
183
188
  #
184
- #==args
189
+ # Arguments:
185
190
  #
186
191
  #* :glyph = one of Bioroebe::SVG::Glyphs#glyphs currently
187
192
  # [:generic, :directed, :transcript, :scale, :label, :histogram, :circle, :down_triangle, :up_triangle, :span]
@@ -236,9 +241,11 @@ class Page # === Bioroebe::SVG::Page
236
241
  # :opacity => 1
237
242
  # }, ]
238
243
  # }
239
- #* :utr_stroke = the outline colour of the utr part of the glyph (default = "black"), can be any SVG colour eg rgb(256,0,0) or #FF0000
240
- #* :utr_stroke_width = The width of the outline stroke for the utr part of the glyph (default = 1)
241
- #* :exon_fill_color = the fill colour of the utr part of the glyph (default = 'red'), can be any SVG colour eg rgb(256,0,0) or #FF0000, or one of the built in gradient types Bioroebe::SVG::Glyph#gradients or a custom definition of a gradient
244
+ # * :utr_stroke = the outline colour of the utr part of
245
+ # the glyph (default = "black"), can be
246
+ # any SVG colour eg rgb(256,0,0) or #FF0000
247
+ # * :utr_stroke_width = The width of the outline stroke for the utr part of the glyph (default = 1)
248
+ # * :exon_fill_color = the fill colour of the utr part of the glyph (default = 'red'), can be any SVG colour eg rgb(256,0,0) or #FF0000, or one of the built in gradient types Bioroebe::SVG::Glyph#gradients or a custom definition of a gradient
242
249
  # [:red_white_h, :green_white_h, :blue_white_h, :yellow_white_h, :red_white_radial, :green_white_radial, :blue_white_radial, :yellow_white_radial ]
243
250
  #or a custom definition of a gradient
244
251
  # {:type => :radial,
@@ -278,7 +285,11 @@ class Page # === Bioroebe::SVG::Page
278
285
  # ======================================================================= #
279
286
  # Sort out the colour/gradient options
280
287
  # ======================================================================= #
281
- [:fill_color, :exon_fill_color, :utr_fill_color].each { |colour_tag|
288
+ [
289
+ :fill_color,
290
+ :exon_fill_color,
291
+ :utr_fill_color
292
+ ].each { |colour_tag|
282
293
  if Glyph.gradients.include?(args[colour_tag])
283
294
  @svg.gradient(Glyph.gradient(args[colour_tag]))
284
295
  args[colour_tag] = "url(##{args[colour_tag]})"
@@ -7,14 +7,14 @@
7
7
  # The Bioroebe::SVG::SVGEE class takes argument information in
8
8
  # a hash and creates SVG Markup tags, which it will draw.
9
9
  # =========================================================================== #
10
- require 'bioroebe/svg/primitive.rb'
11
-
12
10
  module Bioroebe
13
11
 
14
12
  class SVG
15
13
 
16
14
  class SVGEE # === Bioroebe::SVG::SVGEE
17
15
 
16
+ require 'bioroebe/svg/primitive.rb'
17
+
18
18
  # ========================================================================= #
19
19
  # === initialize
20
20
  #
@@ -31,8 +31,8 @@ class SVGEE # === Bioroebe::SVG::SVGEE
31
31
  def initialize(args = {})
32
32
  reset
33
33
  opts = {
34
- :width => '100%',
35
- :height => '100%'
34
+ width: '100%',
35
+ height: '100%'
36
36
  }
37
37
  if args
38
38
  opts.merge!(args) unless args.empty?
@@ -98,15 +98,15 @@ class SVGEE # === Bioroebe::SVG::SVGEE
98
98
  # ========================================================================= #
99
99
  # === update_height
100
100
  # ========================================================================= #
101
- def update_height(new_height)
102
- @height = new_height
101
+ def update_height(i)
102
+ @height = i
103
103
  end
104
104
 
105
105
  # ========================================================================= #
106
106
  # === update_width
107
107
  # ========================================================================= #
108
- def update_width(new_width)
109
- @width = new_width
108
+ def update_width(i)
109
+ @width = i
110
110
  end
111
111
 
112
112
  # ========================================================================= #
@@ -285,7 +285,7 @@ class SVGEE # === Bioroebe::SVG::SVGEE
285
285
  end
286
286
 
287
287
  # ========================================================================= #
288
- # === draw (draw tag)
288
+ # === draw (draw tag)
289
289
  #
290
290
  # Produces the svg text to display all the features on a Page.
291
291
  # ========================================================================= #
@@ -304,10 +304,15 @@ if __FILE__ == $PROGRAM_NAME
304
304
  # ========================================================================= #
305
305
  # === How to use SVGEE
306
306
  # ========================================================================= #
307
- puts 'How to use SVGEE:'
307
+ alias e puts
308
+ e 'How to use SVGEE:'
308
309
  s = Bioroebe::SVG::SVGEE.new
309
310
  s.gradient(
310
- :radial => 'grad1', :cx => 50, :cy => 50, :r => 50, :fx => 50, :fy => 50, :stops => [ {:offset => 0, :color => 'rgb(255,255,255)', :opacity => 0}, {:offset => 100, :color => 'rgb(0,0,255)', :opacity => 1},]
311
+ :radial => 'grad1',
312
+ :cx => 50,
313
+ :cy => 50,
314
+ :r => 50,
315
+ :fx => 50, :fy => 50, :stops => [ {:offset => 0, :color => 'rgb(255,255,255)', :opacity => 0}, {:offset => 100, :color => 'rgb(0,0,255)', :opacity => 1},]
311
316
  )
312
317
  s.circle(:x_center => 40, :y_center => 40, :radius => 20, :fill_color => "url(#grad1)")
313
318
  s.circle(:x_center => 250, :y_center => 250, :radius => 20, :fill_color => "url(#grad1)", :link => {:href => "http://www.bbc.co.uk"})
@@ -317,10 +322,14 @@ if __FILE__ == $PROGRAM_NAME
317
322
  s.line(:x1 => 10, :y1 => 10, :x2 => 145, :y2 => 145, :stroke_width => 5, :stroke => 'blue')
318
323
  s.polyline(:points => '2,2 400,440 600,440', :stroke_width => 10, :stroke => "#f00", :fill => "none")
319
324
  s.text(
320
- :x => 100, :y => 100, :fill => 'red', :text => 'Look! It is a circle!', :style => 'letter-spacing:2;font-family:Arial'
325
+ :x => 100,
326
+ :y => 100,
327
+ :fill => 'red',
328
+ :text => 'Look! It is a circle!',
329
+ :style => 'letter-spacing:2;font-family:Arial'
321
330
  )
322
331
  s.text(:x => 100, :y => 400, :fill => 'green', :text => "This one is a link", :link => {:href => "http://www.bbc.co.uk"})
323
332
  prim.update(x_center: 200)
324
333
  s.add_primitive(prim) #add one of the returned, updated Primitive objects
325
- puts s.draw
334
+ e s.draw
326
335
  end
@@ -19,7 +19,6 @@ class Track # === Bioroebe::SVG::Track
19
19
 
20
20
  attr_reader :args
21
21
  attr_reader :glyph
22
- attr_reader :max_y
23
22
 
24
23
  attr_accessor :features
25
24
  attr_accessor :feature_rows
@@ -157,11 +156,28 @@ class Track # === Bioroebe::SVG::Track
157
156
  # === @feature_height
158
157
  # ======================================================================= #
159
158
  @feature_height = @args[:feature_height]
160
- @number_of_rows = 1
161
159
  @max_y = args[:max_y]
162
160
  @min_width = args[:min_width]
161
+ reset
163
162
  end
164
163
 
164
+ # ========================================================================= #
165
+ # === reset
166
+ # ========================================================================= #
167
+ def reset
168
+ # ======================================================================= #
169
+ # === @number_of_rows
170
+ # ======================================================================= #
171
+ @number_of_rows = 1
172
+ end
173
+
174
+ # ========================================================================= #
175
+ # === max_y?
176
+ # ========================================================================= #
177
+ def max_y?
178
+ @max_y
179
+ end; alias max_y max_y? # === max_y
180
+
165
181
  # ========================================================================= #
166
182
  # === scale?
167
183
  # ========================================================================= #
@@ -209,13 +225,13 @@ class Track # === Bioroebe::SVG::Track
209
225
  current_row = 1
210
226
  begin
211
227
  found = true
212
- rows[current_row].each_with_index do |f2, j|
228
+ rows[current_row].each_with_index { |f2, j|
213
229
  if overlaps(f1, f2, page)
214
230
  found = false
215
231
  current_row += 1
216
232
  break
217
233
  end
218
- end
234
+ }
219
235
  end until found
220
236
  @feature_rows[i] = current_row
221
237
  rows[current_row] << f1
@@ -13,7 +13,7 @@
13
13
  # x = Bioroebe::Taxonomy::Chart.new; x.find_id 55
14
14
  #
15
15
  # =========================================================================== #
16
- require 'bioroebe/base/commandline_application/commandline_application.rb'
16
+ require 'bioroebe/requires/commandline_application.rb'
17
17
 
18
18
  module Bioroebe
19
19
 
@@ -87,7 +87,7 @@ class Chart < ::Bioroebe::CommandlineApplication
87
87
  # ========================================================================= #
88
88
  # === Bioroebe::Taxonomy::Chart[]
89
89
  # ========================================================================= #
90
- def [](i)
90
+ def [](i = ARGV)
91
91
  i = i.to_sym unless i.is_a? Fixnum # For now these are symbols.
92
92
  return @hash[i]
93
93
  end; alias find_id [] # === find_id
@@ -8,14 +8,12 @@ module Bioroebe
8
8
 
9
9
  module Taxonomy # === Bioroebe::Taxonomy
10
10
 
11
+ require 'bioroebe/colours/colours.rb'
11
12
  require 'bioroebe/taxonomy/shared.rb'
12
- require 'bioroebe/colours/rev.rb'
13
13
  require 'bioroebe/taxonomy/constants.rb'
14
14
 
15
- require 'bioroebe/toplevel_methods/extract.rb'
16
- require 'bioroebe/toplevel_methods/time_and_date.rb'
15
+ require 'bioroebe/toplevel_methods/toplevel_methods.rb'
17
16
  require 'bioroebe/toplevel_methods/taxonomy.rb'
18
- require 'bioroebe/toplevel_methods/file_and_directory_related_actions.rb'
19
17
 
20
18
  extend Colours::E
21
19
  extend Colours
@@ -57,9 +55,10 @@ module Taxonomy # === Bioroebe::Taxonomy
57
55
  }
58
56
  end
59
57
 
60
- require 'bioroebe/toplevel_methods/download_and_fetch_data.rb' # Needed for wget-like functionality.
61
58
  # ========================================================================= #
62
59
  # === Bioroebe::Taxonomy.download_directory?
60
+ #
61
+ # This method is needed for wget-like functionality.
63
62
  # ========================================================================= #
64
63
  def self.download_directory?
65
64
  DOWNLOAD_DIR
@@ -98,7 +97,7 @@ module Taxonomy # === Bioroebe::Taxonomy
98
97
  # Get rid of some .sql files through this method here.
99
98
  # ========================================================================= #
100
99
  def self.cleanup
101
- e 'Trying to remove some files now.'
100
+ erev 'Trying to remove some files now.'
102
101
  i = 'names.sql'
103
102
  remove_file(i) if File.exist? i
104
103
  i = 'nodes.sql'
@@ -10,7 +10,7 @@ module Taxonomy
10
10
 
11
11
  module Constants # === Bioroebe::Taxonomy::Constants
12
12
 
13
- require 'bioroebe/toplevel_methods/log_directory.rb'
13
+ require 'bioroebe/log_directory/log_directory.rb'
14
14
 
15
15
  # ========================================================================= #
16
16
  # === FILE_USE_THIS_DATABASE
@@ -16,7 +16,7 @@
16
16
  # =========================================================================== #
17
17
  # require 'bioroebe/taxonomy/info.rb'
18
18
  # =========================================================================== #
19
- require 'bioroebe/base/commandline_application/commandline_application.rb'
19
+ require 'bioroebe/requires/commandline_application.rb'
20
20
 
21
21
  module Bioroebe
22
22