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
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bioroebe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.24
4
+ version: 0.13.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert A. Heiler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-12 00:00:00.000000000 Z
11
+ date: 2024-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chemistry_paradise
@@ -94,17 +94,17 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description: "\nThis is the bioroebe-0.12.x release series. It is recommended\nto
98
- use ruby 3.x for this series, as it is the most tested \nversion of ruby in regards
99
- to this project.\n\nThe bioroebe-project is a software suite focusing on bio-related\nlife
100
- sciences in general - in particular molecular biology, molecular\ngenetics, bioinformatics,
101
- biotechnology, system biology, synthetic\nbiology and related topics close to the
102
- life sciences in general.\n\nThe primary objective for the bioroebe project is to
103
- provide a\n\"practical glue\" between these different topics while also focusing\non
104
- \"getting real work done\", as a toolset-project, trying to\nefficiently solve existing
105
- problems.\n\nFor additional information about this project, have a look at the\nlink
106
- called \"documentation\" on the rubygems webpage of this gem,\non the very bottom
107
- right side (The direct URL is: \nhttps://www.rubydoc.info/gems/bioroebe/ ).\n\n"
97
+ description: "\nThis is the bioroebe-0.13.x release series. It is encouraged\nto use
98
+ ruby 3.2.x (or higher) for this series.\n\nThe bioroebe-project is a software suite
99
+ focusing on bio-related\nlife science topics in general, such as molecular biology,
100
+ molecular\ngenetics, bioinformatics, biotechnology, system biology, synthetic\nbiology
101
+ and similar topics related to the life sciences field.\n\nThe primary objective
102
+ for the bioroebe project is to provide a\n\"practical glue\" between these different
103
+ topics while also focusing\non \"getting real work done\", as a toolset-project,
104
+ trying to\nefficiently solve existing problems.\n\nFor additional information about
105
+ this project, have a look at the\nlink called \"documentation\" on the rubygems
106
+ webpage of this gem,\non the very bottom right side (The direct URL is: \nhttps://www.rubydoc.info/gems/bioroebe/
107
+ ).\n\n"
108
108
  email: shevy@inbox.lt
109
109
  executables:
110
110
  - advanced_dotplot
@@ -118,11 +118,14 @@ executables:
118
118
  - batch_create_windows_executables
119
119
  - biomart_console
120
120
  - bioroebe
121
+ - bioroebe_cat
121
122
  - bioroebe_controller
122
123
  - bioroebe_hash
123
124
  - bioshell
124
125
  - blosum_2D_table
126
+ - calculate_exponential_growth
125
127
  - calculate_n50_value
128
+ - calculate_the_frequencies_of_this_species
126
129
  - chunked_display
127
130
  - codon_frequency
128
131
  - codon_to_aminoacid
@@ -182,12 +185,14 @@ executables:
182
185
  - show_nucleotide_sequence
183
186
  - show_this_codon_table
184
187
  - show_this_dna_sequence
188
+ - show_time_now
185
189
  - showorf
186
190
  - simplify_fasta
187
191
  - sort_aminoacid_based_on_its_hydrophobicity
188
192
  - split_this_fasta_file_into_chromosomes
189
193
  - strict_filter_away_invalid_aminoacids
190
194
  - taxonomy
195
+ - three_delimiter
191
196
  - three_to_one
192
197
  - to_rna
193
198
  - trailing_three_prime
@@ -209,11 +214,14 @@ files:
209
214
  - bin/batch_create_windows_executables
210
215
  - bin/biomart_console
211
216
  - bin/bioroebe
217
+ - bin/bioroebe_cat
212
218
  - bin/bioroebe_controller
213
219
  - bin/bioroebe_hash
214
220
  - bin/bioshell
215
221
  - bin/blosum_2D_table
222
+ - bin/calculate_exponential_growth
216
223
  - bin/calculate_n50_value
224
+ - bin/calculate_the_frequencies_of_this_species
217
225
  - bin/chunked_display
218
226
  - bin/codon_frequency
219
227
  - bin/codon_to_aminoacid
@@ -273,12 +281,14 @@ files:
273
281
  - bin/show_nucleotide_sequence
274
282
  - bin/show_this_codon_table
275
283
  - bin/show_this_dna_sequence
284
+ - bin/show_time_now
276
285
  - bin/showorf
277
286
  - bin/simplify_fasta
278
287
  - bin/sort_aminoacid_based_on_its_hydrophobicity
279
288
  - bin/split_this_fasta_file_into_chromosomes
280
289
  - bin/strict_filter_away_invalid_aminoacids
281
290
  - bin/taxonomy
291
+ - bin/three_delimiter
282
292
  - bin/three_to_one
283
293
  - bin/to_rna
284
294
  - bin/trailing_three_prime
@@ -288,24 +298,24 @@ files:
288
298
  - doc/IUPAC_aminoacids_code.md
289
299
  - doc/IUPAC_nucleotide_code.md
290
300
  - doc/README.gen
291
- - doc/blosum.md
301
+ - doc/blosum/blosum.md
292
302
  - doc/compatibility/BIO_PHP.md
293
303
  - doc/compatibility/README.md
294
304
  - doc/compatibility/emboss.md
295
- - doc/extensive_usage_example.md
296
- - doc/german_names_for_the_aminoacids.md
297
- - doc/instructions_for_the_taxonomy_subproject.md
298
- - doc/legacy_paths.md
299
- - doc/pdb_ATOM_entry.md
305
+ - doc/extensive_usage_example/extensive_usage_example.md
306
+ - doc/german_names_for_the_aminoacids/german_names_for_the_aminoacids.md
307
+ - doc/instructions_for_the_taxonomy_subproject/instructions_for_the_taxonomy_subproject.md
308
+ - doc/legacy_paths/legacy_paths.md
309
+ - doc/pdb_ATOM_entry/pdb_ATOM_entry.md
300
310
  - doc/quality_control/README.md
301
311
  - doc/quality_control/commandline_applications.md
302
- - doc/resources.md
312
+ - doc/resources/resources.md
303
313
  - doc/statistics/statistics.md
304
314
  - doc/todo/README.md
305
315
  - doc/todo/bioroebe_GUI_todo.md
306
316
  - doc/todo/bioroebe_java_todo.md
307
317
  - doc/todo/bioroebe_todo.md
308
- - doc/using_biomart.md
318
+ - doc/using_biomart/using_biomart.md
309
319
  - html/test.html
310
320
  - lib/bioroebe.rb
311
321
  - lib/bioroebe/C++/DNA.cpp
@@ -329,27 +339,12 @@ files:
329
339
  - lib/bioroebe/base/colours.rb
330
340
  - lib/bioroebe/base/colours_for_base/colours_for_base.rb
331
341
  - lib/bioroebe/base/commandline_application/README.md
332
- - lib/bioroebe/base/commandline_application/aminoacids.rb
333
342
  - lib/bioroebe/base/commandline_application/commandline_application.rb
334
343
  - lib/bioroebe/base/commandline_application/commandline_arguments.rb
335
- - lib/bioroebe/base/commandline_application/directory.rb
336
- - lib/bioroebe/base/commandline_application/extract.rb
337
- - lib/bioroebe/base/commandline_application/misc.rb
338
- - lib/bioroebe/base/commandline_application/opn.rb
339
- - lib/bioroebe/base/commandline_application/reset.rb
340
- - lib/bioroebe/base/commandline_application/warnings.rb
341
- - lib/bioroebe/base/commandline_application/write_what_into.rb
342
- - lib/bioroebe/base/initialize.rb
344
+ - lib/bioroebe/base/infer_the_namespace_module/infer_the_namespace_module.rb
343
345
  - lib/bioroebe/base/internal_hash_module/internal_hash_module.rb
344
- - lib/bioroebe/base/misc.rb
345
- - lib/bioroebe/base/namespace.rb
346
346
  - lib/bioroebe/base/prototype/README.md
347
- - lib/bioroebe/base/prototype/e_and_ee.rb
348
- - lib/bioroebe/base/prototype/misc.rb
349
- - lib/bioroebe/base/prototype/mkdir.rb
350
347
  - lib/bioroebe/base/prototype/prototype.rb
351
- - lib/bioroebe/base/prototype/reset.rb
352
- - lib/bioroebe/base/reset.rb
353
348
  - lib/bioroebe/biomart/LICENSE.md
354
349
  - lib/bioroebe/biomart/attribute.rb
355
350
  - lib/bioroebe/biomart/biomart.rb
@@ -366,11 +361,17 @@ files:
366
361
  - lib/bioroebe/calculate/calculate_the_position_specific_scoring_matrix.rb
367
362
  - lib/bioroebe/cell/README.md
368
363
  - lib/bioroebe/cell/cell.rb
364
+ - lib/bioroebe/cell/specialized_cells/B_cell.rb
365
+ - lib/bioroebe/cell/specialized_cells/Macrophage.rb
366
+ - lib/bioroebe/cell/specialized_cells/README.md
367
+ - lib/bioroebe/cell/specialized_cells/T_cell.rb
369
368
  - lib/bioroebe/cleave_and_digest/README.md
370
369
  - lib/bioroebe/cleave_and_digest/cleave.rb
371
370
  - lib/bioroebe/cleave_and_digest/digestion.rb
372
371
  - lib/bioroebe/cleave_and_digest/trypsin.rb
373
372
  - lib/bioroebe/codon_tables/README.md
373
+ - lib/bioroebe/codon_tables/frequencies/10090_Mus_musculus.yml
374
+ - lib/bioroebe/codon_tables/frequencies/107243_Thlaspi_caerulescens.yml
374
375
  - lib/bioroebe/codon_tables/frequencies/287_Pseudomonas_aeruginosa.yml
375
376
  - lib/bioroebe/codon_tables/frequencies/3702_Arabidopsis_thaliana.yml
376
377
  - lib/bioroebe/codon_tables/frequencies/4932_Saccharomyces_cerevisiae.yml
@@ -407,34 +408,14 @@ files:
407
408
  - lib/bioroebe/colours/colour_schemes/taylor.rb
408
409
  - lib/bioroebe/colours/colour_schemes/turn.rb
409
410
  - lib/bioroebe/colours/colour_schemes/zappo.rb
411
+ - lib/bioroebe/colours/colourize_related_code.rb
410
412
  - lib/bioroebe/colours/colourize_sequence.rb
411
413
  - lib/bioroebe/colours/colours.rb
412
- - lib/bioroebe/colours/misc_colours.rb
413
- - lib/bioroebe/colours/rev.rb
414
- - lib/bioroebe/colours/sdir.rb
415
- - lib/bioroebe/colours/sfancy.rb
416
- - lib/bioroebe/colours/sfile.rb
417
- - lib/bioroebe/colours/simp.rb
418
- - lib/bioroebe/colours/swarn.rb
419
414
  - lib/bioroebe/colours/use_colours.rb
420
415
  - lib/bioroebe/configuration/configuration.rb
421
416
  - lib/bioroebe/configuration/constants.rb
422
417
  - lib/bioroebe/constants/GUIs.rb
423
- - lib/bioroebe/constants/aminoacids_and_proteins.rb
424
- - lib/bioroebe/constants/base_directory.rb
425
- - lib/bioroebe/constants/carriage_return.rb
426
- - lib/bioroebe/constants/codon_tables.rb
427
- - lib/bioroebe/constants/database_constants.rb
428
- - lib/bioroebe/constants/files_and_directories.rb
429
- - lib/bioroebe/constants/misc.rb
430
- - lib/bioroebe/constants/newline.rb
431
- - lib/bioroebe/constants/nucleotides.rb
432
- - lib/bioroebe/constants/regex.rb
433
- - lib/bioroebe/constants/roebe.rb
434
- - lib/bioroebe/constants/row_terminator.rb
435
- - lib/bioroebe/constants/tabulator.rb
436
- - lib/bioroebe/constants/unicode.rb
437
- - lib/bioroebe/constants/urls.rb
418
+ - lib/bioroebe/constants/constants.rb
438
419
  - lib/bioroebe/conversions/README.md
439
420
  - lib/bioroebe/conversions/convert_aminoacid_to_dna.rb
440
421
  - lib/bioroebe/conversions/dna_to_aminoacid_sequence.rb
@@ -544,85 +525,50 @@ files:
544
525
  - lib/bioroebe/genomes/genome_retriever.rb
545
526
  - lib/bioroebe/gui/experimental/README.md
546
527
  - lib/bioroebe/gui/experimental/snapgene/snapgene.rb
547
- - lib/bioroebe/gui/gtk
548
- - lib/bioroebe/gui/gtk3/README.md
549
- - lib/bioroebe/gui/gtk3/alignment/alignment.rb
550
- - lib/bioroebe/gui/gtk3/aminoacid_composition/aminoacid_composition.rb
551
- - lib/bioroebe/gui/gtk3/aminoacid_composition/customized_dialog.rb
552
- - lib/bioroebe/gui/gtk3/anti_sense_strand/anti_sense_strand.config
553
- - lib/bioroebe/gui/gtk3/anti_sense_strand/anti_sense_strand.rb
554
- - lib/bioroebe/gui/gtk3/blosum_matrix_viewer/blosum_matrix_viewer.rb
555
- - lib/bioroebe/gui/gtk3/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.config
556
- - lib/bioroebe/gui/gtk3/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.rb
557
- - lib/bioroebe/gui/gtk3/controller/controller.rb
558
- - lib/bioroebe/gui/gtk3/dna_to_aminoacid_widget/dna_to_aminoacid_widget.rb
559
- - lib/bioroebe/gui/gtk3/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.config
560
- - lib/bioroebe/gui/gtk3/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.rb
561
- - lib/bioroebe/gui/gtk3/fasta_table_widget/fasta_table_widget.rb
562
- - lib/bioroebe/gui/gtk3/format_converter/format_converter.rb
563
- - lib/bioroebe/gui/gtk3/gene/gene.rb
564
- - lib/bioroebe/gui/gtk3/hamming_distance/hamming_distance.config
565
- - lib/bioroebe/gui/gtk3/hamming_distance/hamming_distance.rb
566
- - lib/bioroebe/gui/gtk3/levensthein_distance/levensthein_distance.config
567
- - lib/bioroebe/gui/gtk3/levensthein_distance/levensthein_distance.rb
568
- - lib/bioroebe/gui/gtk3/nucleotide_analyser/nucleotide_analyser.rb
569
- - lib/bioroebe/gui/gtk3/parse_pdb_file/parse_pdb_file.rb
570
- - lib/bioroebe/gui/gtk3/primer_design_widget/primer_design_widget.rb
571
- - lib/bioroebe/gui/gtk3/protein_to_DNA/protein_to_DNA.config
572
- - lib/bioroebe/gui/gtk3/protein_to_DNA/protein_to_DNA.rb
573
- - lib/bioroebe/gui/gtk3/random_sequence/random_sequence.rb
574
- - lib/bioroebe/gui/gtk3/restriction_enzymes/restriction_enzymes.config
575
- - lib/bioroebe/gui/gtk3/restriction_enzymes/restriction_enzymes.rb
576
- - lib/bioroebe/gui/gtk3/show_codon_table/misc.rb
577
- - lib/bioroebe/gui/gtk3/show_codon_table/show_codon_table.rb
578
- - lib/bioroebe/gui/gtk3/show_codon_usage/show_codon_usage.rb
579
- - lib/bioroebe/gui/gtk3/sizeseq/sizeseq.rb
580
- - lib/bioroebe/gui/gtk3/three_to_one/three_to_one.rb
581
- - lib/bioroebe/gui/gtk3/three_to_one/title.rb
582
- - lib/bioroebe/gui/gtk3/www_finder/www_finder.config
583
- - lib/bioroebe/gui/gtk3/www_finder/www_finder.rb
584
528
  - lib/bioroebe/gui/javafx/bioroebe.jar
585
529
  - lib/bioroebe/gui/javafx/bioroebe.mf
586
530
  - lib/bioroebe/gui/javafx/bioroebe/Bioroebe.class
587
531
  - lib/bioroebe/gui/javafx/bioroebe/Bioroebe.java
588
532
  - lib/bioroebe/gui/javafx/module-info.class
589
533
  - lib/bioroebe/gui/javafx/module-info.java
590
- - lib/bioroebe/gui/jruby/alignment/alignment.rb
591
- - lib/bioroebe/gui/jruby/aminoacid_composition/aminoacid_composition.rb
592
- - lib/bioroebe/gui/jruby/blosum_matrix_viewer/blosum_matrix_viewer.rb
593
- - lib/bioroebe/gui/libui/README.md
594
- - lib/bioroebe/gui/libui/alignment/alignment.rb
595
- - lib/bioroebe/gui/libui/blosum_matrix_viewer/blosum_matrix_viewer.rb
596
- - lib/bioroebe/gui/libui/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.rb
597
- - lib/bioroebe/gui/libui/controller/controller.rb
598
- - lib/bioroebe/gui/libui/dna_to_aminoacid_widget/dna_to_aminoacid_widget.rb
599
- - lib/bioroebe/gui/libui/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.rb
600
- - lib/bioroebe/gui/libui/hamming_distance/hamming_distance.rb
601
- - lib/bioroebe/gui/libui/levensthein_distance/levensthein_distance.rb
602
- - lib/bioroebe/gui/libui/protein_to_DNA/protein_to_DNA.rb
603
- - lib/bioroebe/gui/libui/random_sequence/random_sequence.rb
604
- - lib/bioroebe/gui/libui/show_codon_table/show_codon_table.rb
605
- - lib/bioroebe/gui/libui/show_codon_usage/show_codon_usage.rb
606
- - lib/bioroebe/gui/libui/three_to_one/three_to_one.rb
607
- - lib/bioroebe/gui/shared_code/alignment/alignment_module.rb
608
- - lib/bioroebe/gui/shared_code/aminoacid_composition/aminoacid_composition_module.rb
609
- - lib/bioroebe/gui/shared_code/blosum_matrix_viewer/blosum_matrix_viewer_module.rb
610
- - lib/bioroebe/gui/shared_code/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria_module.rb
611
- - lib/bioroebe/gui/shared_code/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget_module.rb
612
- - lib/bioroebe/gui/shared_code/levensthein_distance/levensthein_distance_module.rb
613
- - lib/bioroebe/gui/shared_code/protein_to_DNA/protein_to_DNA_module.rb
614
- - lib/bioroebe/gui/shared_code/show_codon_table/show_codon_table_module.rb
615
- - lib/bioroebe/gui/shared_code/show_codon_usage/show_codon_usage_module.rb
616
534
  - lib/bioroebe/gui/swing/three_to_one/ThreeToOne$1.class
617
535
  - lib/bioroebe/gui/swing/three_to_one/ThreeToOne$CloseListener.class
618
536
  - lib/bioroebe/gui/swing/three_to_one/ThreeToOne.class
619
537
  - lib/bioroebe/gui/swing/three_to_one/ThreeToOne.java
620
- - lib/bioroebe/gui/tk/aminoacid_composition/aminoacid_composition.rb
621
- - lib/bioroebe/gui/tk/blosum_matrix_viewer/blosum_matrix_viewer.rb
622
- - lib/bioroebe/gui/tk/hamming_distance/hamming_distance.rb
623
- - lib/bioroebe/gui/tk/levensthein_distance/levensthein_distance.rb
624
- - lib/bioroebe/gui/tk/three_to_one/three_to_one.rb
625
- - lib/bioroebe/gui/unified_widgets/anti_sense_strand/anti_sense_strand.rb
538
+ - lib/bioroebe/gui/universal_widgets/alignment/alignment.rb
539
+ - lib/bioroebe/gui/universal_widgets/aminoacid_composition/aminoacid_composition.rb
540
+ - lib/bioroebe/gui/universal_widgets/aminoacid_composition/customized_dialog.rb
541
+ - lib/bioroebe/gui/universal_widgets/anti_sense_strand/anti_sense_strand.config
542
+ - lib/bioroebe/gui/universal_widgets/anti_sense_strand/anti_sense_strand.rb
543
+ - lib/bioroebe/gui/universal_widgets/blosum_matrix_viewer/blosum_matrix_viewer.rb
544
+ - lib/bioroebe/gui/universal_widgets/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.config
545
+ - lib/bioroebe/gui/universal_widgets/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.rb
546
+ - lib/bioroebe/gui/universal_widgets/controller/controller.rb
547
+ - lib/bioroebe/gui/universal_widgets/dna_to_aminoacid_widget/dna_to_aminoacid_widget.rb
548
+ - lib/bioroebe/gui/universal_widgets/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.config
549
+ - lib/bioroebe/gui/universal_widgets/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.rb
550
+ - lib/bioroebe/gui/universal_widgets/fasta_table_widget/fasta_table_widget.rb
551
+ - lib/bioroebe/gui/universal_widgets/format_converter/format_converter.rb
552
+ - lib/bioroebe/gui/universal_widgets/gene/gene.rb
553
+ - lib/bioroebe/gui/universal_widgets/hamming_distance/hamming_distance.config
554
+ - lib/bioroebe/gui/universal_widgets/hamming_distance/hamming_distance.rb
555
+ - lib/bioroebe/gui/universal_widgets/levensthein_distance/levensthein_distance.config
556
+ - lib/bioroebe/gui/universal_widgets/levensthein_distance/levensthein_distance.rb
557
+ - lib/bioroebe/gui/universal_widgets/nucleotide_analyser/nucleotide_analyser.rb
558
+ - lib/bioroebe/gui/universal_widgets/parse_pdb_file/parse_pdb_file.rb
559
+ - lib/bioroebe/gui/universal_widgets/primer_design_widget/primer_design_widget.rb
560
+ - lib/bioroebe/gui/universal_widgets/protein_to_DNA/protein_to_DNA.config
561
+ - lib/bioroebe/gui/universal_widgets/protein_to_DNA/protein_to_DNA.rb
562
+ - lib/bioroebe/gui/universal_widgets/random_sequence/random_sequence.rb
563
+ - lib/bioroebe/gui/universal_widgets/restriction_enzymes/restriction_enzymes.config
564
+ - lib/bioroebe/gui/universal_widgets/restriction_enzymes/restriction_enzymes.rb
565
+ - lib/bioroebe/gui/universal_widgets/shell/shell.rb
566
+ - lib/bioroebe/gui/universal_widgets/show_codon_table/show_codon_table.rb
567
+ - lib/bioroebe/gui/universal_widgets/show_codon_usage/show_codon_usage.rb
568
+ - lib/bioroebe/gui/universal_widgets/sizeseq/sizeseq.rb
569
+ - lib/bioroebe/gui/universal_widgets/three_to_one/three_to_one.rb
570
+ - lib/bioroebe/gui/universal_widgets/www_finder/www_finder.config
571
+ - lib/bioroebe/gui/universal_widgets/www_finder/www_finder.rb
626
572
  - lib/bioroebe/images/BIOROEBE.png
627
573
  - lib/bioroebe/images/BIOROEBE_NEW_LOGO.png
628
574
  - lib/bioroebe/images/BlosumMatrixViewer.png
@@ -635,6 +581,10 @@ files:
635
581
  - lib/bioroebe/images/example_of_FASTA_coloured_output.png
636
582
  - lib/bioroebe/images/images.html
637
583
  - lib/bioroebe/images/libui_hamming_distance_widget.png
584
+ - lib/bioroebe/images/misc/README.md
585
+ - lib/bioroebe/images/misc/activation.avif
586
+ - lib/bioroebe/images/misc/inhibition.avif
587
+ - lib/bioroebe/images/misc/small_virus_logo.avif
638
588
  - lib/bioroebe/images/pretty_DNA_picture.png
639
589
  - lib/bioroebe/images/primer_design_widget.png
640
590
  - lib/bioroebe/images/restriction_enzyme_commandline_result.png
@@ -675,6 +625,7 @@ files:
675
625
  - lib/bioroebe/java/bioroebe/src/RemoveNumbers.java
676
626
  - lib/bioroebe/java/bioroebe/src/toplevel_methods/BaseComposition.class
677
627
  - lib/bioroebe/java/bioroebe/src/toplevel_methods/BaseComposition.java
628
+ - lib/bioroebe/log_directory/log_directory.rb
678
629
  - lib/bioroebe/matplotlib/matplotlib_generator.rb
679
630
  - lib/bioroebe/misc/quiz/README.md
680
631
  - lib/bioroebe/misc/quiz/three_letter_to_aminoacid.rb
@@ -688,7 +639,7 @@ files:
688
639
  - lib/bioroebe/nucleotides/molecular_weight_of_nucleotides.rb
689
640
  - lib/bioroebe/nucleotides/most_likely_nucleotide_sequence_for_this_aminoacid_sequence.rb
690
641
  - lib/bioroebe/nucleotides/sanitize_nucleotide_sequence.rb
691
- - lib/bioroebe/nucleotides/show_nucleotide_sequence.rb
642
+ - lib/bioroebe/nucleotides/show_nucleotide_sequence/show_nucleotide_sequence.rb
692
643
  - lib/bioroebe/palindromes/palindrome_2D_structure.rb
693
644
  - lib/bioroebe/palindromes/palindrome_finder.rb
694
645
  - lib/bioroebe/palindromes/palindrome_generator.rb
@@ -704,16 +655,16 @@ files:
704
655
  - lib/bioroebe/patterns/profile_pattern.rb
705
656
  - lib/bioroebe/patterns/rgg_scanner.rb
706
657
  - lib/bioroebe/patterns/scan_for_repeat.rb
707
- - lib/bioroebe/pdb/download_this_pdb.rb
708
- - lib/bioroebe/pdb/fetch_fasta_sequence_from_pdb.rb
709
- - lib/bioroebe/pdb/parse_mmCIF_file.rb
710
- - lib/bioroebe/pdb/parse_pdb_file.rb
711
- - lib/bioroebe/pdb/report_secondary_structures_from_this_pdb_file.rb
658
+ - lib/bioroebe/pdb_and_protein_structure/alpha_helix.rb
659
+ - lib/bioroebe/pdb_and_protein_structure/download_this_pdb.rb
660
+ - lib/bioroebe/pdb_and_protein_structure/fetch_fasta_sequence_from_pdb.rb
661
+ - lib/bioroebe/pdb_and_protein_structure/helical_wheel.rb
662
+ - lib/bioroebe/pdb_and_protein_structure/parse_mmCIF_file.rb
663
+ - lib/bioroebe/pdb_and_protein_structure/parse_pdb_file.rb
664
+ - lib/bioroebe/pdb_and_protein_structure/report_secondary_structures_from_this_pdb_file.rb
712
665
  - lib/bioroebe/perl/README.md
713
666
  - lib/bioroebe/perl/local_to_global.pl
714
667
  - lib/bioroebe/project/project.rb
715
- - lib/bioroebe/protein_structure/alpha_helix.rb
716
- - lib/bioroebe/protein_structure/helical_wheel.rb
717
668
  - lib/bioroebe/python/README.md
718
669
  - lib/bioroebe/python/__pycache__/mymodule.cpython-39.pyc
719
670
  - lib/bioroebe/python/gui/gtk3/all_in_one.css
@@ -776,19 +727,18 @@ files:
776
727
  - lib/bioroebe/sequence/reverse_complement.rb
777
728
  - lib/bioroebe/sequence/rna.rb
778
729
  - lib/bioroebe/sequence/sequence.rb
779
- - lib/bioroebe/shell/colours/colours.rb
780
730
  - lib/bioroebe/shell/configuration/additionally_set_xorg_buffer.yml
781
731
  - lib/bioroebe/shell/configuration/may_we_show_the_startup_information.yml
782
732
  - lib/bioroebe/shell/configuration/upcase_nucleotides.yml
783
733
  - lib/bioroebe/shell/configuration/use_silent_startup.yml
784
734
  - lib/bioroebe/shell/help/class.rb
785
- - lib/bioroebe/shell/help/help.rb
786
735
  - lib/bioroebe/shell/menu.rb
787
- - lib/bioroebe/shell/misc.rb
788
- - lib/bioroebe/shell/readline/readline.rb
736
+ - lib/bioroebe/shell/readline.rb
789
737
  - lib/bioroebe/shell/shell.rb
790
738
  - lib/bioroebe/siRNA/README.md
791
739
  - lib/bioroebe/siRNA/siRNA.rb
740
+ - lib/bioroebe/sinatra/sinatra_interface.rb
741
+ - lib/bioroebe/sinatra/sinatra_wrapper.rb
792
742
  - lib/bioroebe/string_matching/README.md
793
743
  - lib/bioroebe/string_matching/find_longest_substring.rb
794
744
  - lib/bioroebe/string_matching/find_longest_substring_via_LCS_algorithm.rb
@@ -820,74 +770,20 @@ files:
820
770
  - lib/bioroebe/taxonomy/parse_fasta.rb
821
771
  - lib/bioroebe/taxonomy/shared.rb
822
772
  - lib/bioroebe/taxonomy/taxonomy.rb
823
- - lib/bioroebe/toplevel_methods/ad_hoc_task.rb
824
- - lib/bioroebe/toplevel_methods/aminoacids_and_proteins.rb
825
- - lib/bioroebe/toplevel_methods/atomic_composition.rb
826
- - lib/bioroebe/toplevel_methods/base_composition.rb
827
- - lib/bioroebe/toplevel_methods/blast.rb
828
- - lib/bioroebe/toplevel_methods/calculate_n50_value.rb
829
- - lib/bioroebe/toplevel_methods/cat.rb
830
- - lib/bioroebe/toplevel_methods/chunked_display.rb
831
- - lib/bioroebe/toplevel_methods/cliner.rb
832
- - lib/bioroebe/toplevel_methods/colourize_related_methods.rb
833
- - lib/bioroebe/toplevel_methods/complement.rb
834
- - lib/bioroebe/toplevel_methods/convert_global_env.rb
835
- - lib/bioroebe/toplevel_methods/databases.rb
836
- - lib/bioroebe/toplevel_methods/delimiter.rb
837
- - lib/bioroebe/toplevel_methods/digest.rb
838
- - lib/bioroebe/toplevel_methods/download_and_fetch_data.rb
839
- - lib/bioroebe/toplevel_methods/e.rb
840
- - lib/bioroebe/toplevel_methods/editor.rb
841
- - lib/bioroebe/toplevel_methods/esystem.rb
842
- - lib/bioroebe/toplevel_methods/exponential_growth.rb
843
- - lib/bioroebe/toplevel_methods/extract.rb
844
773
  - lib/bioroebe/toplevel_methods/fasta_and_fastq.rb
845
- - lib/bioroebe/toplevel_methods/file_and_directory_related_actions.rb
846
- - lib/bioroebe/toplevel_methods/frequencies.rb
847
- - lib/bioroebe/toplevel_methods/hamming_distance.rb
848
- - lib/bioroebe/toplevel_methods/infer.rb
849
- - lib/bioroebe/toplevel_methods/is_on_roebe.rb
850
- - lib/bioroebe/toplevel_methods/leading_five_prime_and_trailing_three_prime.rb
851
- - lib/bioroebe/toplevel_methods/levensthein.rb
852
- - lib/bioroebe/toplevel_methods/log_directory.rb
853
- - lib/bioroebe/toplevel_methods/longest_common_substring.rb
854
- - lib/bioroebe/toplevel_methods/map_ncbi_entry_to_eutils_id.rb
855
- - lib/bioroebe/toplevel_methods/matches.rb
856
- - lib/bioroebe/toplevel_methods/misc.rb
857
- - lib/bioroebe/toplevel_methods/nucleotides.rb
858
- - lib/bioroebe/toplevel_methods/number_of_clones.rb
859
- - lib/bioroebe/toplevel_methods/open_in_browser.rb
860
- - lib/bioroebe/toplevel_methods/open_reading_frames.rb
861
- - lib/bioroebe/toplevel_methods/opn.rb
862
- - lib/bioroebe/toplevel_methods/palindromes.rb
863
- - lib/bioroebe/toplevel_methods/parse.rb
864
- - lib/bioroebe/toplevel_methods/phred_error_probability.rb
865
- - lib/bioroebe/toplevel_methods/rds.rb
866
- - lib/bioroebe/toplevel_methods/remove.rb
867
- - lib/bioroebe/toplevel_methods/return_source_code_of_this_method.rb
868
- - lib/bioroebe/toplevel_methods/return_subsequence_based_on_indices.rb
869
- - lib/bioroebe/toplevel_methods/rna_splicing.rb
870
- - lib/bioroebe/toplevel_methods/rnalfold.rb
871
- - lib/bioroebe/toplevel_methods/searching_and_finding.rb
872
- - lib/bioroebe/toplevel_methods/shuffleseq.rb
873
- - lib/bioroebe/toplevel_methods/statistics.rb
874
- - lib/bioroebe/toplevel_methods/sum_of_odd_integers.rb
774
+ - lib/bioroebe/toplevel_methods/roebe.rb
875
775
  - lib/bioroebe/toplevel_methods/taxonomy.rb
876
- - lib/bioroebe/toplevel_methods/three_delimiter.rb
877
- - lib/bioroebe/toplevel_methods/time_and_date.rb
878
- - lib/bioroebe/toplevel_methods/to_camelcase.rb
879
- - lib/bioroebe/toplevel_methods/truncate.rb
880
- - lib/bioroebe/toplevel_methods/url.rb
881
- - lib/bioroebe/toplevel_methods/verbose.rb
776
+ - lib/bioroebe/toplevel_methods/toplevel_methods.rb
882
777
  - lib/bioroebe/utility_scripts/align_open_reading_frames.rb
883
778
  - lib/bioroebe/utility_scripts/analyse_local_dataset.rb
884
779
  - lib/bioroebe/utility_scripts/check_for_mismatches/check_for_mismatches.rb
885
780
  - lib/bioroebe/utility_scripts/compacter/compacter.rb
781
+ - lib/bioroebe/utility_scripts/compare_these_two_sequences_via_blosum.rb
886
782
  - lib/bioroebe/utility_scripts/compseq/compseq.rb
887
- - lib/bioroebe/utility_scripts/consensus_sequence.rb
888
- - lib/bioroebe/utility_scripts/create_batch_entrez_file.rb
889
- - lib/bioroebe/utility_scripts/determine_antigenic_areas.rb
890
- - lib/bioroebe/utility_scripts/determine_missing_nucleotides_percentage.rb
783
+ - lib/bioroebe/utility_scripts/consensus_sequence/consensus_sequence.rb
784
+ - lib/bioroebe/utility_scripts/create_batch_entrez_file/create_batch_entrez_file.rb
785
+ - lib/bioroebe/utility_scripts/determine_antigenic_areas/determine_antigenic_areas.rb
786
+ - lib/bioroebe/utility_scripts/determine_missing_nucleotides_percentage/determine_missing_nucleotides_percentage.rb
891
787
  - lib/bioroebe/utility_scripts/display_open_reading_frames/determine.rb
892
788
  - lib/bioroebe/utility_scripts/display_open_reading_frames/display_open_reading_frames.rb
893
789
  - lib/bioroebe/utility_scripts/display_open_reading_frames/initialize.rb
@@ -895,31 +791,27 @@ files:
895
791
  - lib/bioroebe/utility_scripts/display_open_reading_frames/misc.rb
896
792
  - lib/bioroebe/utility_scripts/display_open_reading_frames/report.rb
897
793
  - lib/bioroebe/utility_scripts/display_open_reading_frames/reset.rb
898
- - lib/bioroebe/utility_scripts/dot_alignment.rb
899
- - lib/bioroebe/utility_scripts/download_files_from_rebase.rb
794
+ - lib/bioroebe/utility_scripts/dot_alignment/dot_alignment.rb
795
+ - lib/bioroebe/utility_scripts/download_files_from_rebase/download_files_from_rebase.rb
796
+ - lib/bioroebe/utility_scripts/fetch_data_from_uniprot/fetch_data_from_uniprot.rb
900
797
  - lib/bioroebe/utility_scripts/find_gene.rb
901
- - lib/bioroebe/utility_scripts/mirror_repeat.rb
798
+ - lib/bioroebe/utility_scripts/mirror_repeat/mirror_repeat.rb
902
799
  - lib/bioroebe/utility_scripts/move_file_to_its_correct_location.rb
903
- - lib/bioroebe/utility_scripts/parse_taxonomy.rb
904
- - lib/bioroebe/utility_scripts/pathways.rb
905
- - lib/bioroebe/utility_scripts/permutations.rb
800
+ - lib/bioroebe/utility_scripts/parse_taxonomy/parse_taxonomy.rb
801
+ - lib/bioroebe/utility_scripts/pathways/pathways.rb
802
+ - lib/bioroebe/utility_scripts/permutations/permutations.rb
906
803
  - lib/bioroebe/utility_scripts/punnet/punnet.rb
907
- - lib/bioroebe/utility_scripts/show_this_dna_sequence.rb
908
- - lib/bioroebe/utility_scripts/showorf/constants.rb
909
- - lib/bioroebe/utility_scripts/showorf/help.rb
910
- - lib/bioroebe/utility_scripts/showorf/initialize.rb
911
- - lib/bioroebe/utility_scripts/showorf/menu.rb
912
- - lib/bioroebe/utility_scripts/showorf/reset.rb
913
- - lib/bioroebe/utility_scripts/showorf/run.rb
914
- - lib/bioroebe/utility_scripts/showorf/show.rb
804
+ - lib/bioroebe/utility_scripts/show_this_dna_sequence/show_this_dna_sequence.rb
915
805
  - lib/bioroebe/utility_scripts/showorf/showorf.rb
916
806
  - lib/bioroebe/version/version.rb
917
807
  - lib/bioroebe/viennarna/README.md
918
808
  - lib/bioroebe/viennarna/rnafold_wrapper.rb
809
+ - lib/bioroebe/virus/individual_viruses/README.md
810
+ - lib/bioroebe/virus/individual_viruses/tobacco_mosaic_virus.rb
811
+ - lib/bioroebe/virus/virus.rb
919
812
  - lib/bioroebe/with_gui.rb
920
813
  - lib/bioroebe/www/bioroebe.cgi
921
814
  - lib/bioroebe/www/embeddable_interface.rb
922
- - lib/bioroebe/www/sinatra/sinatra.rb
923
815
  - lib/bioroebe/yaml/agarose/agarose_concentrations.yml
924
816
  - lib/bioroebe/yaml/aminoacids/amino_acids.yml
925
817
  - lib/bioroebe/yaml/aminoacids/amino_acids_abbreviations.yml
@@ -937,7 +829,7 @@ files:
937
829
  - lib/bioroebe/yaml/aminoacids/simple_aminoacids.yml
938
830
  - lib/bioroebe/yaml/aminoacids/weight_of_common_proteins.yml
939
831
  - lib/bioroebe/yaml/antisense/antisense.yml
940
- - lib/bioroebe/yaml/base_composition_of_dna.yml
832
+ - lib/bioroebe/yaml/base_composition_of_dna/base_composition_of_dna.yml
941
833
  - lib/bioroebe/yaml/blosum/blosum45.yml
942
834
  - lib/bioroebe/yaml/blosum/blosum50.yml
943
835
  - lib/bioroebe/yaml/blosum/blosum62.yml
@@ -992,7 +884,7 @@ files:
992
884
  - lib/bioroebe/yaml/laboratory/README.md
993
885
  - lib/bioroebe/yaml/laboratory/pipettes.yml
994
886
  - lib/bioroebe/yaml/mRNA/mRNA.yml
995
- - lib/bioroebe/yaml/nuclear_localization_sequences.yml
887
+ - lib/bioroebe/yaml/nuclear_localization_sequences/nuclear_localization_sequences.yml
996
888
  - lib/bioroebe/yaml/nucleotides/abbreviations_for_nucleotides.yml
997
889
  - lib/bioroebe/yaml/nucleotides/nucleotide_density.yml
998
890
  - lib/bioroebe/yaml/nucleotides/nucleotides.yml
@@ -1013,7 +905,7 @@ files:
1013
905
  - lib/bioroebe/yaml/restriction_enzymes/restriction_enzymes.yml
1014
906
  - lib/bioroebe/yaml/sequences/JX472995_Green_fluorescent_protein_from_Aequorea_victoria.fasta
1015
907
  - lib/bioroebe/yaml/sequences/README.md
1016
- - lib/bioroebe/yaml/talens.yml
908
+ - lib/bioroebe/yaml/talens/talens.yml
1017
909
  - lib/bioroebe/yaml/viruses/ecoli_phages.yml
1018
910
  - lib/bioroebe/yaml/viruses/viruses.yml
1019
911
  - spec/README.md
@@ -1032,7 +924,7 @@ files:
1032
924
  - test/testing_taxonomy.rb
1033
925
  homepage: https://rubygems.org/gems/bioroebe
1034
926
  licenses:
1035
- - LGPL-2.1
927
+ - LGPL-2.1-only
1036
928
  metadata: {}
1037
929
  post_install_message: |2+
1038
930
 
@@ -1062,7 +954,7 @@ post_install_message: |2+
1062
954
 
1063
955
  For more documentation, have a look at:
1064
956
 
1065
- https://www.rubydoc.info/gems/bioroebe/0.12.24
957
+ https://www.rubydoc.info/gems/bioroebe/0.13.31
1066
958
 
1067
959
  rdoc_options: []
1068
960
  require_paths:
@@ -1071,26 +963,26 @@ required_ruby_version: !ruby/object:Gem::Requirement
1071
963
  requirements:
1072
964
  - - ">="
1073
965
  - !ruby/object:Gem::Version
1074
- version: 2.7.6
966
+ version: 3.2.2
1075
967
  required_rubygems_version: !ruby/object:Gem::Requirement
1076
968
  requirements:
1077
969
  - - ">="
1078
970
  - !ruby/object:Gem::Version
1079
- version: 3.4.18
971
+ version: 3.5.6
1080
972
  requirements: []
1081
- rubygems_version: 3.4.18
973
+ rubygems_version: 3.5.6
1082
974
  signing_key:
1083
975
  specification_version: 4
1084
- summary: 'This is the bioroebe-0.12.x release series. It is recommended to use ruby
1085
- 3.x for this series, as it is the most tested version of ruby in regards to this
1086
- project. The bioroebe-project is a software suite focusing on bio-related life
1087
- sciences in general - in particular molecular biology, molecular genetics, bioinformatics,
1088
- biotechnology, system biology, synthetic biology and related topics close to the
1089
- life sciences in general. The primary objective for the bioroebe project is to
1090
- provide a "practical glue" between these different topics while also focusing on
1091
- "getting real work done", as a toolset-project, trying to efficiently solve existing
1092
- problems. For additional information about this project, have a look at the link
1093
- called "documentation" on the rubygems webpage of this gem, on the very bottom right
1094
- side (The direct URL is: https://www.rubydoc.info/gems/bioroebe/ ).'
976
+ summary: 'This is the bioroebe-0.13.x release series. It is encouraged to use ruby
977
+ 3.2.x (or higher) for this series. The bioroebe-project is a software suite focusing
978
+ on bio-related life science topics in general, such as molecular biology, molecular
979
+ genetics, bioinformatics, biotechnology, system biology, synthetic biology and similar
980
+ topics related to the life sciences field. The primary objective for the bioroebe
981
+ project is to provide a "practical glue" between these different topics while also
982
+ focusing on "getting real work done", as a toolset-project, trying to efficiently
983
+ solve existing problems. For additional information about this project, have a
984
+ look at the link called "documentation" on the rubygems webpage of this gem, on
985
+ the very bottom right side (The direct URL is: https://www.rubydoc.info/gems/bioroebe/
986
+ ).'
1095
987
  test_files: []
1096
988
  ...
data/doc/blosum.md DELETED
@@ -1,5 +0,0 @@
1
- This file describes the references towards BLOSUM.
2
-
3
- There are different BLOSUM matrices out there and they can
4
- be found in either blosum/ or the yaml/ subdirectory of
5
- the bioroebe project.