bioroebe 0.10.80

Sign up to get free protection for your applications and to get access to all the features.
Files changed (802) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +428 -0
  3. data/README.md +9280 -0
  4. data/bin/advanced_dotplot +7 -0
  5. data/bin/align_open_reading_frames +12 -0
  6. data/bin/all_positions_of_this_nucleotide +7 -0
  7. data/bin/aminoacid_composition +7 -0
  8. data/bin/aminoacid_frequencies +12 -0
  9. data/bin/aminoacid_substitution +7 -0
  10. data/bin/automatically_rename_this_fasta_file +7 -0
  11. data/bin/base_composition +7 -0
  12. data/bin/batch_create_windows_executables +7 -0
  13. data/bin/biomart_console +11 -0
  14. data/bin/bioroebe +27 -0
  15. data/bin/bioroebe_controller +10 -0
  16. data/bin/bioshell +26 -0
  17. data/bin/blosum_2D_table +12 -0
  18. data/bin/calculate_n50_value +12 -0
  19. data/bin/chunked_display +12 -0
  20. data/bin/codon_frequency +9 -0
  21. data/bin/codon_to_aminoacid +30 -0
  22. data/bin/colourize_this_fasta_sequence +14 -0
  23. data/bin/compact_fasta_file +7 -0
  24. data/bin/complement +7 -0
  25. data/bin/complementary_dna_strand +12 -0
  26. data/bin/complementary_rna_strand +12 -0
  27. data/bin/compseq +7 -0
  28. data/bin/consensus_sequence +17 -0
  29. data/bin/count_AT +12 -0
  30. data/bin/count_GC +12 -0
  31. data/bin/create_random_aminoacids +7 -0
  32. data/bin/decode_this_aminoacid_sequence +20 -0
  33. data/bin/deduce_aminoacid_sequence +13 -0
  34. data/bin/deduce_most_likely_aminoacid_sequence +7 -0
  35. data/bin/display_aminoacid_table +12 -0
  36. data/bin/display_open_reading_frames +7 -0
  37. data/bin/dna_to_aminoacid_sequence +7 -0
  38. data/bin/dna_to_rna +7 -0
  39. data/bin/downcase_chunked_display +12 -0
  40. data/bin/download_this_pdb +7 -0
  41. data/bin/fasta_index +7 -0
  42. data/bin/fetch_data_from_uniprot +12 -0
  43. data/bin/filter_away_invalid_nucleotides +12 -0
  44. data/bin/find_substring +19 -0
  45. data/bin/genbank_to_fasta +7 -0
  46. data/bin/hamming_distance +12 -0
  47. data/bin/input_as_dna +12 -0
  48. data/bin/is_palindrome +13 -0
  49. data/bin/leading_five_prime +7 -0
  50. data/bin/levensthein +7 -0
  51. data/bin/longest_ORF +14 -0
  52. data/bin/longest_substring +12 -0
  53. data/bin/n_stop_codons_in_this_sequence +15 -0
  54. data/bin/open_reading_frames +14 -0
  55. data/bin/overwrite_fasta_header +7 -0
  56. data/bin/palindrome_2D_structure +7 -0
  57. data/bin/palindrome_generator +7 -0
  58. data/bin/parse_fasta +7 -0
  59. data/bin/partner_nucleotide +9 -0
  60. data/bin/possible_codons_for_this_aminoacid +12 -0
  61. data/bin/random_dna_sequence +12 -0
  62. data/bin/random_sequence +12 -0
  63. data/bin/raw_hamming_distance +12 -0
  64. data/bin/return_longest_substring_via_LCS_algorithm +7 -0
  65. data/bin/reverse_complement +7 -0
  66. data/bin/reverse_sequence +7 -0
  67. data/bin/ruler +12 -0
  68. data/bin/scan_this_input_for_startcodons +12 -0
  69. data/bin/short_aminoacid_letter_from_long_aminoacid_name +7 -0
  70. data/bin/show_atomic_composition +7 -0
  71. data/bin/show_codon_usage +12 -0
  72. data/bin/show_fasta_header +7 -0
  73. data/bin/show_nucleotide_sequence +7 -0
  74. data/bin/show_this_codon_table +7 -0
  75. data/bin/show_this_dna_sequence +7 -0
  76. data/bin/showorf +14 -0
  77. data/bin/simplify_fasta +7 -0
  78. data/bin/sort_aminoacid_based_on_its_hydrophobicity +7 -0
  79. data/bin/split_this_fasta_file_into_chromosomes +7 -0
  80. data/bin/strict_filter_away_invalid_aminoacids +7 -0
  81. data/bin/taxonomy +63 -0
  82. data/bin/three_to_one +7 -0
  83. data/bin/to_rna +7 -0
  84. data/bin/trailing_three_prime +7 -0
  85. data/bin/trypsin_digest +7 -0
  86. data/bin/upcase_this_aminoacid_sequence_and_remove_numbers +7 -0
  87. data/bioroebe.gemspec +97 -0
  88. data/doc/IUPAC_aminoacids_code.md +36 -0
  89. data/doc/IUPAC_nucleotide_code.md +19 -0
  90. data/doc/README.gen +9237 -0
  91. data/doc/blosum.md +5 -0
  92. data/doc/compatibility/BIO_PHP.md +37 -0
  93. data/doc/compatibility/README.md +3 -0
  94. data/doc/compatibility/emboss.md +56 -0
  95. data/doc/extensive_usage_example.md +35 -0
  96. data/doc/german_names_for_the_aminoacids.md +27 -0
  97. data/doc/instructions_for_the_taxonomy_subproject.md +504 -0
  98. data/doc/legacy_paths.md +9 -0
  99. data/doc/pdb_ATOM_entry.md +33 -0
  100. data/doc/quality_control/README.md +2 -0
  101. data/doc/quality_control/commandline_applications.md +13 -0
  102. data/doc/resources.md +23 -0
  103. data/doc/setup.rb +1655 -0
  104. data/doc/statistics/statistics.md +41 -0
  105. data/doc/todo/README.md +5 -0
  106. data/doc/todo/bioroebe_GUI_todo.md +15 -0
  107. data/doc/todo/bioroebe_todo.md +2823 -0
  108. data/doc/using_biomart.md +258 -0
  109. data/html/test.html +144 -0
  110. data/lib/bioroebe/aminoacids/aminoacid_substitution.rb +118 -0
  111. data/lib/bioroebe/aminoacids/aminoacids_mass_table.rb +118 -0
  112. data/lib/bioroebe/aminoacids/codon_percentage.rb +189 -0
  113. data/lib/bioroebe/aminoacids/colourize_hydrophilic_and_hydrophobic_aminoacids.rb +110 -0
  114. data/lib/bioroebe/aminoacids/create_random_aminoacids.rb +221 -0
  115. data/lib/bioroebe/aminoacids/deduce_aminoacid_sequence.rb +460 -0
  116. data/lib/bioroebe/aminoacids/display_aminoacid_table.rb +231 -0
  117. data/lib/bioroebe/aminoacids/show_hydrophobicity.rb +184 -0
  118. data/lib/bioroebe/annotations/README.md +2 -0
  119. data/lib/bioroebe/annotations/create_annotation_format.rb +208 -0
  120. data/lib/bioroebe/autoinclude.rb +7 -0
  121. data/lib/bioroebe/base/base.rb +35 -0
  122. data/lib/bioroebe/base/colours.rb +14 -0
  123. data/lib/bioroebe/base/colours_for_base/colours_for_base.rb +275 -0
  124. data/lib/bioroebe/base/commandline_application/README.md +7 -0
  125. data/lib/bioroebe/base/commandline_application/aminoacids.rb +33 -0
  126. data/lib/bioroebe/base/commandline_application/commandline_application.rb +37 -0
  127. data/lib/bioroebe/base/commandline_application/commandline_arguments.rb +144 -0
  128. data/lib/bioroebe/base/commandline_application/directory.rb +33 -0
  129. data/lib/bioroebe/base/commandline_application/extract.rb +22 -0
  130. data/lib/bioroebe/base/commandline_application/misc.rb +485 -0
  131. data/lib/bioroebe/base/commandline_application/opn.rb +47 -0
  132. data/lib/bioroebe/base/commandline_application/reset.rb +40 -0
  133. data/lib/bioroebe/base/commandline_application/warnings.rb +36 -0
  134. data/lib/bioroebe/base/commandline_application/write_what_into.rb +29 -0
  135. data/lib/bioroebe/base/initialize.rb +18 -0
  136. data/lib/bioroebe/base/misc.rb +94 -0
  137. data/lib/bioroebe/base/namespace.rb +16 -0
  138. data/lib/bioroebe/base/prototype/README.md +12 -0
  139. data/lib/bioroebe/base/prototype/e_and_ee.rb +24 -0
  140. data/lib/bioroebe/base/prototype/misc.rb +108 -0
  141. data/lib/bioroebe/base/prototype/mkdir.rb +20 -0
  142. data/lib/bioroebe/base/prototype/prototype.rb +21 -0
  143. data/lib/bioroebe/base/prototype/reset.rb +26 -0
  144. data/lib/bioroebe/base/reset.rb +11 -0
  145. data/lib/bioroebe/biomart/LICENSE.md +27 -0
  146. data/lib/bioroebe/biomart/attribute.rb +77 -0
  147. data/lib/bioroebe/biomart/biomart.rb +227 -0
  148. data/lib/bioroebe/biomart/database.rb +128 -0
  149. data/lib/bioroebe/biomart/dataset.rb +572 -0
  150. data/lib/bioroebe/biomart/filter.rb +97 -0
  151. data/lib/bioroebe/biomart/server.rb +152 -0
  152. data/lib/bioroebe/blosum/blosum.rb +88 -0
  153. data/lib/bioroebe/calculate/calculate_blosum_score.rb +145 -0
  154. data/lib/bioroebe/calculate/calculate_gc_content.rb +301 -0
  155. data/lib/bioroebe/calculate/calculate_levensthein_distance.rb +100 -0
  156. data/lib/bioroebe/calculate/calculate_melting_temperature.rb +398 -0
  157. data/lib/bioroebe/calculate/calculate_melting_temperature_for_more_than_thirteen_nucleotides.rb +304 -0
  158. data/lib/bioroebe/calculate/calculate_the_position_specific_scoring_matrix.rb +166 -0
  159. data/lib/bioroebe/cell/README.md +1 -0
  160. data/lib/bioroebe/cell/cell.rb +63 -0
  161. data/lib/bioroebe/cleave_and_digest/README.md +2 -0
  162. data/lib/bioroebe/cleave_and_digest/cleave.rb +80 -0
  163. data/lib/bioroebe/cleave_and_digest/digestion.rb +75 -0
  164. data/lib/bioroebe/cleave_and_digest/trypsin.rb +192 -0
  165. data/lib/bioroebe/codon_tables/README.md +9 -0
  166. data/lib/bioroebe/codon_tables/frequencies/287_Pseudomonas_aeruginosa.yml +101 -0
  167. data/lib/bioroebe/codon_tables/frequencies/3702_Arabidopsis_thaliana.yml +77 -0
  168. data/lib/bioroebe/codon_tables/frequencies/4932_Saccharomyces_cerevisiae.yml +103 -0
  169. data/lib/bioroebe/codon_tables/frequencies/7227_Drosophila_melanogaster.yml +71 -0
  170. data/lib/bioroebe/codon_tables/frequencies/83333_Escherichia_coli_K12.yml +103 -0
  171. data/lib/bioroebe/codon_tables/frequencies/9606_Homo_sapiens.yml +123 -0
  172. data/lib/bioroebe/codon_tables/frequencies/9685_Felis_catus.yml +78 -0
  173. data/lib/bioroebe/codon_tables/frequencies/README.md +10 -0
  174. data/lib/bioroebe/codon_tables/frequencies/parse_frequency_table.rb +337 -0
  175. data/lib/bioroebe/codons/README.md +28 -0
  176. data/lib/bioroebe/codons/codon_table.rb +416 -0
  177. data/lib/bioroebe/codons/codon_tables.rb +123 -0
  178. data/lib/bioroebe/codons/codons.rb +517 -0
  179. data/lib/bioroebe/codons/convert_this_codon_to_that_aminoacid.rb +102 -0
  180. data/lib/bioroebe/codons/detect_minimal_codon.rb +180 -0
  181. data/lib/bioroebe/codons/determine_optimal_codons.rb +74 -0
  182. data/lib/bioroebe/codons/possible_codons_for_this_aminoacid.rb +380 -0
  183. data/lib/bioroebe/codons/sanitize_codon_frequency.rb +144 -0
  184. data/lib/bioroebe/codons/show_codon_tables.rb +130 -0
  185. data/lib/bioroebe/codons/show_codon_usage.rb +197 -0
  186. data/lib/bioroebe/codons/show_this_codon_table.rb +573 -0
  187. data/lib/bioroebe/codons/start_codons.rb +105 -0
  188. data/lib/bioroebe/colours/colour_schemes/README.md +10 -0
  189. data/lib/bioroebe/colours/colour_schemes/array_available_colour_schemes.rb +38 -0
  190. data/lib/bioroebe/colours/colour_schemes/buried.rb +70 -0
  191. data/lib/bioroebe/colours/colour_schemes/colour_scheme.rb +101 -0
  192. data/lib/bioroebe/colours/colour_schemes/colour_scheme_demo.rb +262 -0
  193. data/lib/bioroebe/colours/colour_schemes/helix.rb +65 -0
  194. data/lib/bioroebe/colours/colour_schemes/hydropathy.rb +70 -0
  195. data/lib/bioroebe/colours/colour_schemes/nucleotide.rb +47 -0
  196. data/lib/bioroebe/colours/colour_schemes/score.rb +112 -0
  197. data/lib/bioroebe/colours/colour_schemes/simple.rb +42 -0
  198. data/lib/bioroebe/colours/colour_schemes/strand.rb +65 -0
  199. data/lib/bioroebe/colours/colour_schemes/taylor.rb +58 -0
  200. data/lib/bioroebe/colours/colour_schemes/turn.rb +65 -0
  201. data/lib/bioroebe/colours/colour_schemes/zappo.rb +59 -0
  202. data/lib/bioroebe/colours/colourize_sequence.rb +262 -0
  203. data/lib/bioroebe/colours/colours.rb +119 -0
  204. data/lib/bioroebe/colours/misc_colours.rb +80 -0
  205. data/lib/bioroebe/colours/rev.rb +41 -0
  206. data/lib/bioroebe/colours/sdir.rb +21 -0
  207. data/lib/bioroebe/colours/sfancy.rb +21 -0
  208. data/lib/bioroebe/colours/sfile.rb +21 -0
  209. data/lib/bioroebe/colours/simp.rb +21 -0
  210. data/lib/bioroebe/colours/swarn.rb +29 -0
  211. data/lib/bioroebe/colours/use_colours.rb +27 -0
  212. data/lib/bioroebe/configuration/configuration.rb +114 -0
  213. data/lib/bioroebe/configuration/constants.rb +35 -0
  214. data/lib/bioroebe/constants/GUIs.rb +79 -0
  215. data/lib/bioroebe/constants/aminoacids_and_proteins.rb +146 -0
  216. data/lib/bioroebe/constants/base_directory.rb +120 -0
  217. data/lib/bioroebe/constants/carriage_return.rb +14 -0
  218. data/lib/bioroebe/constants/codon_tables.rb +77 -0
  219. data/lib/bioroebe/constants/database_constants.rb +107 -0
  220. data/lib/bioroebe/constants/files_and_directories.rb +579 -0
  221. data/lib/bioroebe/constants/misc.rb +189 -0
  222. data/lib/bioroebe/constants/newline.rb +14 -0
  223. data/lib/bioroebe/constants/nucleotides.rb +114 -0
  224. data/lib/bioroebe/constants/regex.rb +28 -0
  225. data/lib/bioroebe/constants/roebe.rb +38 -0
  226. data/lib/bioroebe/constants/row_terminator.rb +16 -0
  227. data/lib/bioroebe/constants/tabulator.rb +14 -0
  228. data/lib/bioroebe/constants/unicode.rb +12 -0
  229. data/lib/bioroebe/constants/urls.rb +50 -0
  230. data/lib/bioroebe/conversions/README.md +3 -0
  231. data/lib/bioroebe/conversions/convert_aminoacid_to_dna.rb +298 -0
  232. data/lib/bioroebe/conversions/dna_to_aminoacid_sequence.rb +569 -0
  233. data/lib/bioroebe/count/README.md +1 -0
  234. data/lib/bioroebe/count/count_amount_of_aminoacids.rb +352 -0
  235. data/lib/bioroebe/count/count_amount_of_nucleotides.rb +491 -0
  236. data/lib/bioroebe/count/count_at.rb +39 -0
  237. data/lib/bioroebe/count/count_gc.rb +43 -0
  238. data/lib/bioroebe/css/README.md +5 -0
  239. data/lib/bioroebe/css/project.css +121 -0
  240. data/lib/bioroebe/data/README.md +10 -0
  241. data/lib/bioroebe/data/bam/README.md +1 -0
  242. data/lib/bioroebe/data/data.txt +192 -0
  243. data/lib/bioroebe/data/fasta/GFP_mutant_3_coding_sequence.fasta +12 -0
  244. data/lib/bioroebe/data/fasta/alu_elements.fasta +42 -0
  245. data/lib/bioroebe/data/fasta/lady_slippers_orchid.fasta +1197 -0
  246. data/lib/bioroebe/data/fasta/loxP.fasta +2 -0
  247. data/lib/bioroebe/data/fasta/ls_orchid.fasta +1197 -0
  248. data/lib/bioroebe/data/fasta/pax6_in_mouse.fasta +1 -0
  249. data/lib/bioroebe/data/fasta/test.fasta +7 -0
  250. data/lib/bioroebe/data/fasta/test_DNA.fasta +1 -0
  251. data/lib/bioroebe/data/fastq/fastq_example_file.fastq +32 -0
  252. data/lib/bioroebe/data/fastq/fastq_example_file_SP1.fastq +1000 -0
  253. data/lib/bioroebe/data/fastq/one_random_fastq_entry.fastq +4 -0
  254. data/lib/bioroebe/data/genbank/sample_file.genbank +15 -0
  255. data/lib/bioroebe/data/genbank/standard.fasta +3 -0
  256. data/lib/bioroebe/data/gff/Escherichia_coli_K12_plasmid_F_DNA_NC_002483.1.gff3 +345 -0
  257. data/lib/bioroebe/data/gff/sample.gff +2 -0
  258. data/lib/bioroebe/data/gff/test_gene.gff +4 -0
  259. data/lib/bioroebe/data/gff/transcripts.gff +16 -0
  260. data/lib/bioroebe/data/gtf/README.md +1 -0
  261. data/lib/bioroebe/data/json/example_config.json +48 -0
  262. data/lib/bioroebe/data/pdb/1VII.pdb +754 -0
  263. data/lib/bioroebe/data/pdb/ala_phe_ala.pdb +228 -0
  264. data/lib/bioroebe/data/pdb/rcsb_pdb_1VII.fasta +2 -0
  265. data/lib/bioroebe/data/phylip/README.md +11 -0
  266. data/lib/bioroebe/data/phylip/example.phylip +7 -0
  267. data/lib/bioroebe/data/svg/example.svg +301 -0
  268. data/lib/bioroebe/databases/README.md +1 -0
  269. data/lib/bioroebe/databases/download_taxonomy_database.rb +102 -0
  270. data/lib/bioroebe/dotplots/README.md +5 -0
  271. data/lib/bioroebe/dotplots/advanced_dotplot.rb +256 -0
  272. data/lib/bioroebe/dotplots/dotplot.rb +184 -0
  273. data/lib/bioroebe/electron_microscopy/coordinate_analyzer.rb +191 -0
  274. data/lib/bioroebe/electron_microscopy/fix_pos_file.rb +102 -0
  275. data/lib/bioroebe/electron_microscopy/generate_em2em_file.rb +122 -0
  276. data/lib/bioroebe/electron_microscopy/parse_coordinates.rb +197 -0
  277. data/lib/bioroebe/electron_microscopy/read_file_xmd.rb +282 -0
  278. data/lib/bioroebe/electron_microscopy/simple_star_file_generator.rb +131 -0
  279. data/lib/bioroebe/encoding/README.md +2 -0
  280. data/lib/bioroebe/encoding/encoding.rb +45 -0
  281. data/lib/bioroebe/enzymes/README.md +2 -0
  282. data/lib/bioroebe/enzymes/has_this_restriction_enzyme.rb +46 -0
  283. data/lib/bioroebe/enzymes/restriction_enzyme.rb +200 -0
  284. data/lib/bioroebe/enzymes/restriction_enzymes_file.rb +72 -0
  285. data/lib/bioroebe/enzymes/return_restriction_enzyme_sequence_and_cut_position.rb +80 -0
  286. data/lib/bioroebe/enzymes/return_sequence_that_is_cut_via_restriction_enzyme.rb +65 -0
  287. data/lib/bioroebe/enzymes/show_restriction_enzymes.rb +119 -0
  288. data/lib/bioroebe/exceptions/README.md +2 -0
  289. data/lib/bioroebe/exceptions/exceptions.rb +17 -0
  290. data/lib/bioroebe/ext/LICENCE.md +5 -0
  291. data/lib/bioroebe/ext/README.md +7 -0
  292. data/lib/bioroebe/ext/main.cpp +45 -0
  293. data/lib/bioroebe/ext/nucleotide.cpp +24 -0
  294. data/lib/bioroebe/ext/nussinov_algorithm.cpp +348 -0
  295. data/lib/bioroebe/ext/sequence +0 -0
  296. data/lib/bioroebe/ext/sequence.cpp +162 -0
  297. data/lib/bioroebe/fasta_and_fastq/README.md +6 -0
  298. data/lib/bioroebe/fasta_and_fastq/autocorrect_the_name_of_this_fasta_file.rb +88 -0
  299. data/lib/bioroebe/fasta_and_fastq/compact_fasta_file/compact_fasta_file.rb +151 -0
  300. data/lib/bioroebe/fasta_and_fastq/display_how_many_fasta_entries_are_in_this_directory.rb +111 -0
  301. data/lib/bioroebe/fasta_and_fastq/download_fasta.rb +248 -0
  302. data/lib/bioroebe/fasta_and_fastq/fasta_defline/README.md +2 -0
  303. data/lib/bioroebe/fasta_and_fastq/fasta_defline/fasta_defline.rb +113 -0
  304. data/lib/bioroebe/fasta_and_fastq/fasta_parser.rb +167 -0
  305. data/lib/bioroebe/fasta_and_fastq/fastq_format_explainer.rb +131 -0
  306. data/lib/bioroebe/fasta_and_fastq/length_modifier/length_modifier.rb +87 -0
  307. data/lib/bioroebe/fasta_and_fastq/parse_fasta/constants.rb +50 -0
  308. data/lib/bioroebe/fasta_and_fastq/parse_fasta/initialize.rb +86 -0
  309. data/lib/bioroebe/fasta_and_fastq/parse_fasta/menu.rb +117 -0
  310. data/lib/bioroebe/fasta_and_fastq/parse_fasta/misc.rb +981 -0
  311. data/lib/bioroebe/fasta_and_fastq/parse_fasta/parse_fasta.rb +27 -0
  312. data/lib/bioroebe/fasta_and_fastq/parse_fasta/report.rb +156 -0
  313. data/lib/bioroebe/fasta_and_fastq/parse_fasta/reset.rb +128 -0
  314. data/lib/bioroebe/fasta_and_fastq/parse_fasta/run.rb +20 -0
  315. data/lib/bioroebe/fasta_and_fastq/parse_fastq/parse_fastq.rb +83 -0
  316. data/lib/bioroebe/fasta_and_fastq/return_fasta_subsection_of_this_file.rb +112 -0
  317. data/lib/bioroebe/fasta_and_fastq/show_fasta_headers.rb +135 -0
  318. data/lib/bioroebe/fasta_and_fastq/show_fasta_statistics.rb +188 -0
  319. data/lib/bioroebe/fasta_and_fastq/simplify_fasta_header/simplify_fasta_header.rb +111 -0
  320. data/lib/bioroebe/fasta_and_fastq/split_this_fasta_file_into_chromosomes/constants.rb +26 -0
  321. data/lib/bioroebe/fasta_and_fastq/split_this_fasta_file_into_chromosomes/menu.rb +41 -0
  322. data/lib/bioroebe/fasta_and_fastq/split_this_fasta_file_into_chromosomes/misc.rb +23 -0
  323. data/lib/bioroebe/fasta_and_fastq/split_this_fasta_file_into_chromosomes/reset.rb +68 -0
  324. data/lib/bioroebe/fasta_and_fastq/split_this_fasta_file_into_chromosomes/split_this_fasta_file_into_chromosomes.rb +290 -0
  325. data/lib/bioroebe/genbank/README.md +1 -0
  326. data/lib/bioroebe/genbank/genbank_flat_file_format_generator.rb +275 -0
  327. data/lib/bioroebe/genbank/genbank_parser.rb +291 -0
  328. data/lib/bioroebe/gene/gene.rb +64 -0
  329. data/lib/bioroebe/genomes/genome_pattern.rb +165 -0
  330. data/lib/bioroebe/genomes/genome_retriever.rb +79 -0
  331. data/lib/bioroebe/gui/experimental/README.md +1 -0
  332. data/lib/bioroebe/gui/experimental/snapgene/snapgene.rb +147 -0
  333. data/lib/bioroebe/gui/gtk3/README.md +2 -0
  334. data/lib/bioroebe/gui/gtk3/alignment/alignment.rb +337 -0
  335. data/lib/bioroebe/gui/gtk3/aminoacid_composition/aminoacid_composition.rb +510 -0
  336. data/lib/bioroebe/gui/gtk3/aminoacid_composition/customized_dialog.rb +55 -0
  337. data/lib/bioroebe/gui/gtk3/anti_sense_strand/anti_sense_strand.config +6 -0
  338. data/lib/bioroebe/gui/gtk3/anti_sense_strand/anti_sense_strand.rb +29 -0
  339. data/lib/bioroebe/gui/gtk3/blosum_matrix_viewer/blosum_matrix_viewer.rb +196 -0
  340. data/lib/bioroebe/gui/gtk3/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.config +6 -0
  341. data/lib/bioroebe/gui/gtk3/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.rb +106 -0
  342. data/lib/bioroebe/gui/gtk3/controller/controller.rb +406 -0
  343. data/lib/bioroebe/gui/gtk3/dna_to_aminoacid_widget/dna_to_aminoacid_widget.rb +609 -0
  344. data/lib/bioroebe/gui/gtk3/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.config +6 -0
  345. data/lib/bioroebe/gui/gtk3/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.rb +189 -0
  346. data/lib/bioroebe/gui/gtk3/fasta_table_widget/fasta_table_widget.rb +245 -0
  347. data/lib/bioroebe/gui/gtk3/format_converter/format_converter.rb +346 -0
  348. data/lib/bioroebe/gui/gtk3/gene/gene.rb +182 -0
  349. data/lib/bioroebe/gui/gtk3/hamming_distance/hamming_distance.config +6 -0
  350. data/lib/bioroebe/gui/gtk3/hamming_distance/hamming_distance.rb +370 -0
  351. data/lib/bioroebe/gui/gtk3/levensthein_distance/levensthein_distance.config +6 -0
  352. data/lib/bioroebe/gui/gtk3/levensthein_distance/levensthein_distance.rb +175 -0
  353. data/lib/bioroebe/gui/gtk3/nucleotide_analyser/nucleotide_analyser.rb +428 -0
  354. data/lib/bioroebe/gui/gtk3/parse_pdb_file/parse_pdb_file.rb +342 -0
  355. data/lib/bioroebe/gui/gtk3/primer_design_widget/primer_design_widget.rb +580 -0
  356. data/lib/bioroebe/gui/gtk3/protein_to_DNA/protein_to_DNA.config +6 -0
  357. data/lib/bioroebe/gui/gtk3/protein_to_DNA/protein_to_DNA.rb +182 -0
  358. data/lib/bioroebe/gui/gtk3/random_sequence/random_sequence.rb +566 -0
  359. data/lib/bioroebe/gui/gtk3/restriction_enzymes/restriction_enzymes.config +6 -0
  360. data/lib/bioroebe/gui/gtk3/restriction_enzymes/restriction_enzymes.rb +329 -0
  361. data/lib/bioroebe/gui/gtk3/show_codon_table/misc.rb +556 -0
  362. data/lib/bioroebe/gui/gtk3/show_codon_table/show_codon_table.rb +171 -0
  363. data/lib/bioroebe/gui/gtk3/show_codon_usage/show_codon_usage.rb +146 -0
  364. data/lib/bioroebe/gui/gtk3/sizeseq/sizeseq.rb +207 -0
  365. data/lib/bioroebe/gui/gtk3/three_to_one/three_to_one.rb +279 -0
  366. data/lib/bioroebe/gui/gtk3/three_to_one/title.rb +23 -0
  367. data/lib/bioroebe/gui/gtk3/www_finder/www_finder.config +6 -0
  368. data/lib/bioroebe/gui/gtk3/www_finder/www_finder.rb +368 -0
  369. data/lib/bioroebe/gui/jruby/blosum_matrix_viewer/blosum_matrix_viewer.rb +82 -0
  370. data/lib/bioroebe/gui/libui/README.md +4 -0
  371. data/lib/bioroebe/gui/libui/alignment/alignment.rb +114 -0
  372. data/lib/bioroebe/gui/libui/blosum_matrix_viewer/blosum_matrix_viewer.rb +112 -0
  373. data/lib/bioroebe/gui/libui/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.rb +60 -0
  374. data/lib/bioroebe/gui/libui/dna_to_aminoacid_widget/dna_to_aminoacid_widget.rb +161 -0
  375. data/lib/bioroebe/gui/libui/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.rb +76 -0
  376. data/lib/bioroebe/gui/libui/hamming_distance/hamming_distance.rb +135 -0
  377. data/lib/bioroebe/gui/libui/levensthein_distance/levensthein_distance.rb +118 -0
  378. data/lib/bioroebe/gui/libui/protein_to_DNA/protein_to_DNA.rb +115 -0
  379. data/lib/bioroebe/gui/libui/random_sequence/random_sequence.rb +174 -0
  380. data/lib/bioroebe/gui/libui/show_codon_table/show_codon_table.rb +132 -0
  381. data/lib/bioroebe/gui/libui/show_codon_usage/show_codon_usage.rb +89 -0
  382. data/lib/bioroebe/gui/libui/three_to_one/three_to_one.rb +111 -0
  383. data/lib/bioroebe/gui/shared_code/blosum_matrix_viewer/blosum_matrix_viewer_module.rb +42 -0
  384. data/lib/bioroebe/gui/shared_code/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria_module.rb +216 -0
  385. data/lib/bioroebe/gui/shared_code/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget_module.rb +284 -0
  386. data/lib/bioroebe/gui/shared_code/levensthein_distance/levensthein_distance_module.rb +402 -0
  387. data/lib/bioroebe/gui/shared_code/protein_to_DNA/protein_to_DNA_module.rb +192 -0
  388. data/lib/bioroebe/gui/shared_code/show_codon_table/show_codon_table_module.rb +72 -0
  389. data/lib/bioroebe/gui/shared_code/show_codon_usage/show_codon_usage_module.rb +213 -0
  390. data/lib/bioroebe/gui/tk/aminoacid_composition/aminoacid_composition.rb +206 -0
  391. data/lib/bioroebe/gui/tk/blosum_matrix_viewer/blosum_matrix_viewer.rb +140 -0
  392. data/lib/bioroebe/gui/tk/hamming_distance/hamming_distance.rb +262 -0
  393. data/lib/bioroebe/gui/tk/levensthein_distance/levensthein_distance.rb +243 -0
  394. data/lib/bioroebe/gui/tk/three_to_one/three_to_one.rb +199 -0
  395. data/lib/bioroebe/gui/unified_widgets/anti_sense_strand/anti_sense_strand.rb +519 -0
  396. data/lib/bioroebe/images/BIOROEBE.png +0 -0
  397. data/lib/bioroebe/images/BIOROEBE_NEW_LOGO.png +0 -0
  398. data/lib/bioroebe/images/BlosumMatrixViewer.png +0 -0
  399. data/lib/bioroebe/images/DnaToAminoacidWidget.png +0 -0
  400. data/lib/bioroebe/images/PRINTED_AMINOACID_TABLE.png +0 -0
  401. data/lib/bioroebe/images/class_ConvertAminoacidToDNA.png +0 -0
  402. data/lib/bioroebe/images/class_SimpleStringComparer.png +0 -0
  403. data/lib/bioroebe/images/example_of_FASTA_coloured_output.png +0 -0
  404. data/lib/bioroebe/images/libui_hamming_distance_widget.png +0 -0
  405. data/lib/bioroebe/images/pretty_DNA_picture.png +0 -0
  406. data/lib/bioroebe/images/primer_design_widget.png +0 -0
  407. data/lib/bioroebe/images/restriction_enzyme_commandline_result.png +0 -0
  408. data/lib/bioroebe/images/ruby-gtk_three_to_one_widget.png +0 -0
  409. data/lib/bioroebe/images/small_DNA_logo.png +0 -0
  410. data/lib/bioroebe/images/small_drosophila_image.png +0 -0
  411. data/lib/bioroebe/java/README.md +6 -0
  412. data/lib/bioroebe/java/bioroebe/AllInOne.class +0 -0
  413. data/lib/bioroebe/java/bioroebe/AllInOne.java +214 -0
  414. data/lib/bioroebe/java/bioroebe/Base.class +0 -0
  415. data/lib/bioroebe/java/bioroebe/Base.java +102 -0
  416. data/lib/bioroebe/java/bioroebe/BisulfiteTreatment.class +0 -0
  417. data/lib/bioroebe/java/bioroebe/BisulfiteTreatment.java +23 -0
  418. data/lib/bioroebe/java/bioroebe/Cat.class +0 -0
  419. data/lib/bioroebe/java/bioroebe/Codons.class +0 -0
  420. data/lib/bioroebe/java/bioroebe/Codons.java +22 -0
  421. data/lib/bioroebe/java/bioroebe/Esystem.class +0 -0
  422. data/lib/bioroebe/java/bioroebe/Esystem.java +47 -0
  423. data/lib/bioroebe/java/bioroebe/GUI/BaseFrame.class +0 -0
  424. data/lib/bioroebe/java/bioroebe/GUI/BaseFrame.java +65 -0
  425. data/lib/bioroebe/java/bioroebe/GenerateRandomDnaSequence.class +0 -0
  426. data/lib/bioroebe/java/bioroebe/GenerateRandomDnaSequence.java +32 -0
  427. data/lib/bioroebe/java/bioroebe/IsPalindrome.class +0 -0
  428. data/lib/bioroebe/java/bioroebe/IsPalindrome.java +18 -0
  429. data/lib/bioroebe/java/bioroebe/PartnerNucleotide.class +0 -0
  430. data/lib/bioroebe/java/bioroebe/PartnerNucleotide.java +19 -0
  431. data/lib/bioroebe/java/bioroebe/README.md +4 -0
  432. data/lib/bioroebe/java/bioroebe/RemoveFile.class +0 -0
  433. data/lib/bioroebe/java/bioroebe/RemoveFile.java +24 -0
  434. data/lib/bioroebe/java/bioroebe/RemoveNumbers.class +0 -0
  435. data/lib/bioroebe/java/bioroebe/RemoveNumbers.java +14 -0
  436. data/lib/bioroebe/java/bioroebe/SanitizeNucleotideSequence.class +0 -0
  437. data/lib/bioroebe/java/bioroebe/SanitizeNucleotideSequence.java +20 -0
  438. data/lib/bioroebe/java/bioroebe/SaveFile.java +44 -0
  439. data/lib/bioroebe/java/bioroebe/Sequence.java +28 -0
  440. data/lib/bioroebe/java/bioroebe/ToCamelcase.class +0 -0
  441. data/lib/bioroebe/java/bioroebe/ToCamelcase.java +32 -0
  442. data/lib/bioroebe/java/bioroebe/ToplevelMethods.class +0 -0
  443. data/lib/bioroebe/java/bioroebe/ToplevelMethods.java +15 -0
  444. data/lib/bioroebe/java/bioroebe/enums/DNA.java +6 -0
  445. data/lib/bioroebe/java/bioroebe.jar +0 -0
  446. data/lib/bioroebe/matplotlib/matplotlib_generator.rb +104 -0
  447. data/lib/bioroebe/misc/quiz/README.md +6 -0
  448. data/lib/bioroebe/misc/quiz/three_letter_to_aminoacid.rb +163 -0
  449. data/lib/bioroebe/misc/ruler.rb +244 -0
  450. data/lib/bioroebe/misc/useful_formulas.rb +129 -0
  451. data/lib/bioroebe/ncbi/efetch.rb +253 -0
  452. data/lib/bioroebe/ncbi/ncbi.rb +93 -0
  453. data/lib/bioroebe/ngs/README.md +2 -0
  454. data/lib/bioroebe/ngs/phred_quality_score_table.rb +123 -0
  455. data/lib/bioroebe/nucleotides/complementary_dna_strand.rb +166 -0
  456. data/lib/bioroebe/nucleotides/molecular_weight_of_nucleotides.rb +135 -0
  457. data/lib/bioroebe/nucleotides/most_likely_nucleotide_sequence_for_this_aminoacid_sequence.rb +198 -0
  458. data/lib/bioroebe/nucleotides/sanitize_nucleotide_sequence.rb +133 -0
  459. data/lib/bioroebe/nucleotides/show_nucleotide_sequence.rb +556 -0
  460. data/lib/bioroebe/palindromes/palindrome_2D_structure.rb +139 -0
  461. data/lib/bioroebe/palindromes/palindrome_finder.rb +208 -0
  462. data/lib/bioroebe/palindromes/palindrome_generator.rb +272 -0
  463. data/lib/bioroebe/parsers/biolang_parser.rb +156 -0
  464. data/lib/bioroebe/parsers/blosum_parser.rb +222 -0
  465. data/lib/bioroebe/parsers/genbank_parser.rb +78 -0
  466. data/lib/bioroebe/parsers/gff.rb +346 -0
  467. data/lib/bioroebe/parsers/parse_embl.rb +76 -0
  468. data/lib/bioroebe/parsers/stride_parser.rb +117 -0
  469. data/lib/bioroebe/patterns/README.md +5 -0
  470. data/lib/bioroebe/patterns/analyse_glycosylation_pattern.rb +149 -0
  471. data/lib/bioroebe/patterns/is_this_sequence_a_EGF2_pattern.rb +66 -0
  472. data/lib/bioroebe/patterns/profile_pattern.rb +182 -0
  473. data/lib/bioroebe/patterns/rgg_scanner.rb +160 -0
  474. data/lib/bioroebe/patterns/scan_for_repeat.rb +157 -0
  475. data/lib/bioroebe/pdb/download_this_pdb.rb +67 -0
  476. data/lib/bioroebe/pdb/fetch_fasta_sequence_from_pdb.rb +164 -0
  477. data/lib/bioroebe/pdb/parse_mmCIF_file.rb +63 -0
  478. data/lib/bioroebe/pdb/parse_pdb_file.rb +1086 -0
  479. data/lib/bioroebe/pdb/report_secondary_structures_from_this_pdb_file.rb +225 -0
  480. data/lib/bioroebe/perl/README.md +7 -0
  481. data/lib/bioroebe/perl/local_to_global.pl +694 -0
  482. data/lib/bioroebe/project/project.rb +264 -0
  483. data/lib/bioroebe/protein_structure/alpha_helix.rb +96 -0
  484. data/lib/bioroebe/protein_structure/helical_wheel.rb +205 -0
  485. data/lib/bioroebe/raw_sequence/README.md +17 -0
  486. data/lib/bioroebe/raw_sequence/raw_sequence.rb +557 -0
  487. data/lib/bioroebe/readline/README.md +2 -0
  488. data/lib/bioroebe/readline/readline.rb +31 -0
  489. data/lib/bioroebe/regexes/README.md +2 -0
  490. data/lib/bioroebe/regexes/regexes.rb +34 -0
  491. data/lib/bioroebe/requires/commandline_application.rb +5 -0
  492. data/lib/bioroebe/requires/require_all_aminoacids_files.rb +28 -0
  493. data/lib/bioroebe/requires/require_all_calculate_files.rb +26 -0
  494. data/lib/bioroebe/requires/require_all_codon_files.rb +26 -0
  495. data/lib/bioroebe/requires/require_all_colour_scheme_files.rb +26 -0
  496. data/lib/bioroebe/requires/require_all_count_files.rb +26 -0
  497. data/lib/bioroebe/requires/require_all_dotplot_files.rb +28 -0
  498. data/lib/bioroebe/requires/require_all_electron_microscopy_files.rb +26 -0
  499. data/lib/bioroebe/requires/require_all_enzymes_files.rb +28 -0
  500. data/lib/bioroebe/requires/require_all_fasta_and_fastq_files.rb +32 -0
  501. data/lib/bioroebe/requires/require_all_nucleotides_files.rb +28 -0
  502. data/lib/bioroebe/requires/require_all_palindromes_files.rb +29 -0
  503. data/lib/bioroebe/requires/require_all_parser_files.rb +28 -0
  504. data/lib/bioroebe/requires/require_all_pattern_files.rb +29 -0
  505. data/lib/bioroebe/requires/require_all_pdb_files.rb +26 -0
  506. data/lib/bioroebe/requires/require_all_sequence_files.rb +26 -0
  507. data/lib/bioroebe/requires/require_all_string_matching_files.rb +28 -0
  508. data/lib/bioroebe/requires/require_all_svg_files.rb +12 -0
  509. data/lib/bioroebe/requires/require_all_taxonomy_files.rb +35 -0
  510. data/lib/bioroebe/requires/require_all_utility_scripts_files.rb +32 -0
  511. data/lib/bioroebe/requires/require_cleave_and_digest.rb +24 -0
  512. data/lib/bioroebe/requires/require_colours.rb +20 -0
  513. data/lib/bioroebe/requires/require_encoding.rb +7 -0
  514. data/lib/bioroebe/requires/require_sequence.rb +7 -0
  515. data/lib/bioroebe/requires/require_the_bioroebe_project.rb +162 -0
  516. data/lib/bioroebe/requires/require_the_bioroebe_shell.rb +7 -0
  517. data/lib/bioroebe/requires/require_the_bioroebe_sinatra_components.rb +7 -0
  518. data/lib/bioroebe/requires/require_the_constants.rb +23 -0
  519. data/lib/bioroebe/requires/require_the_toplevel_methods.rb +29 -0
  520. data/lib/bioroebe/requires/require_yaml.rb +94 -0
  521. data/lib/bioroebe/sequence/alignment.rb +214 -0
  522. data/lib/bioroebe/sequence/dna.rb +211 -0
  523. data/lib/bioroebe/sequence/nucleotide_module/nucleotide_module.rb +404 -0
  524. data/lib/bioroebe/sequence/protein.rb +281 -0
  525. data/lib/bioroebe/sequence/reverse_complement.rb +148 -0
  526. data/lib/bioroebe/sequence/sequence.rb +706 -0
  527. data/lib/bioroebe/shell/add.rb +108 -0
  528. data/lib/bioroebe/shell/assign.rb +360 -0
  529. data/lib/bioroebe/shell/chop_and_cut.rb +281 -0
  530. data/lib/bioroebe/shell/colours/colours.rb +235 -0
  531. data/lib/bioroebe/shell/configuration/additionally_set_xorg_buffer.yml +1 -0
  532. data/lib/bioroebe/shell/configuration/may_we_show_the_startup_information.yml +1 -0
  533. data/lib/bioroebe/shell/configuration/upcase_nucleotides.yml +1 -0
  534. data/lib/bioroebe/shell/configuration/use_silent_startup.yml +1 -0
  535. data/lib/bioroebe/shell/constants.rb +166 -0
  536. data/lib/bioroebe/shell/download.rb +335 -0
  537. data/lib/bioroebe/shell/enable_and_disable.rb +158 -0
  538. data/lib/bioroebe/shell/enzymes.rb +310 -0
  539. data/lib/bioroebe/shell/fasta.rb +345 -0
  540. data/lib/bioroebe/shell/gtk.rb +76 -0
  541. data/lib/bioroebe/shell/help/class.rb +443 -0
  542. data/lib/bioroebe/shell/help/help.rb +25 -0
  543. data/lib/bioroebe/shell/history.rb +132 -0
  544. data/lib/bioroebe/shell/initialize.rb +217 -0
  545. data/lib/bioroebe/shell/loop.rb +74 -0
  546. data/lib/bioroebe/shell/menu.rb +5320 -0
  547. data/lib/bioroebe/shell/misc.rb +4341 -0
  548. data/lib/bioroebe/shell/prompt.rb +107 -0
  549. data/lib/bioroebe/shell/random.rb +289 -0
  550. data/lib/bioroebe/shell/readline/readline.rb +91 -0
  551. data/lib/bioroebe/shell/reset.rb +335 -0
  552. data/lib/bioroebe/shell/scan_and_parse.rb +135 -0
  553. data/lib/bioroebe/shell/search.rb +337 -0
  554. data/lib/bioroebe/shell/sequences.rb +200 -0
  555. data/lib/bioroebe/shell/shell.rb +41 -0
  556. data/lib/bioroebe/shell/show_report_and_display.rb +2901 -0
  557. data/lib/bioroebe/shell/startup.rb +127 -0
  558. data/lib/bioroebe/shell/taxonomy.rb +14 -0
  559. data/lib/bioroebe/shell/tk.rb +23 -0
  560. data/lib/bioroebe/shell/user_input.rb +88 -0
  561. data/lib/bioroebe/shell/xorg.rb +45 -0
  562. data/lib/bioroebe/siRNA/README.md +2 -0
  563. data/lib/bioroebe/siRNA/siRNA.rb +93 -0
  564. data/lib/bioroebe/string_matching/README.md +13 -0
  565. data/lib/bioroebe/string_matching/find_longest_substring.rb +162 -0
  566. data/lib/bioroebe/string_matching/find_longest_substring_via_LCS_algorithm.rb +175 -0
  567. data/lib/bioroebe/string_matching/hamming_distance.rb +313 -0
  568. data/lib/bioroebe/string_matching/levensthein.rb +698 -0
  569. data/lib/bioroebe/string_matching/simple_string_comparer.rb +294 -0
  570. data/lib/bioroebe/string_matching/smith_waterman.rb +276 -0
  571. data/lib/bioroebe/svg/README.md +1 -0
  572. data/lib/bioroebe/svg/glyph.rb +719 -0
  573. data/lib/bioroebe/svg/mini_feature.rb +111 -0
  574. data/lib/bioroebe/svg/page.rb +570 -0
  575. data/lib/bioroebe/svg/primitive.rb +70 -0
  576. data/lib/bioroebe/svg/svgee.rb +326 -0
  577. data/lib/bioroebe/svg/track.rb +263 -0
  578. data/lib/bioroebe/taxonomy/README.md +1 -0
  579. data/lib/bioroebe/taxonomy/chart.rb +95 -0
  580. data/lib/bioroebe/taxonomy/class_methods.rb +181 -0
  581. data/lib/bioroebe/taxonomy/colours.rb +26 -0
  582. data/lib/bioroebe/taxonomy/constants.rb +218 -0
  583. data/lib/bioroebe/taxonomy/edit.rb +97 -0
  584. data/lib/bioroebe/taxonomy/help/help.rb +65 -0
  585. data/lib/bioroebe/taxonomy/help/helpline.rb +53 -0
  586. data/lib/bioroebe/taxonomy/info/check_available.rb +143 -0
  587. data/lib/bioroebe/taxonomy/info/info.rb +337 -0
  588. data/lib/bioroebe/taxonomy/info/is_dna.rb +150 -0
  589. data/lib/bioroebe/taxonomy/interactive.rb +1933 -0
  590. data/lib/bioroebe/taxonomy/menu.rb +905 -0
  591. data/lib/bioroebe/taxonomy/node.rb +118 -0
  592. data/lib/bioroebe/taxonomy/parse_fasta.rb +383 -0
  593. data/lib/bioroebe/taxonomy/shared.rb +287 -0
  594. data/lib/bioroebe/taxonomy/taxonomy.rb +521 -0
  595. data/lib/bioroebe/toplevel_methods/ad_hoc_task.rb +56 -0
  596. data/lib/bioroebe/toplevel_methods/aminoacids_and_proteins.rb +715 -0
  597. data/lib/bioroebe/toplevel_methods/atomic_composition.rb +198 -0
  598. data/lib/bioroebe/toplevel_methods/base_composition.rb +121 -0
  599. data/lib/bioroebe/toplevel_methods/blast.rb +153 -0
  600. data/lib/bioroebe/toplevel_methods/calculate_n50_value.rb +57 -0
  601. data/lib/bioroebe/toplevel_methods/cat.rb +71 -0
  602. data/lib/bioroebe/toplevel_methods/chunked_display.rb +92 -0
  603. data/lib/bioroebe/toplevel_methods/cliner.rb +81 -0
  604. data/lib/bioroebe/toplevel_methods/complement.rb +58 -0
  605. data/lib/bioroebe/toplevel_methods/convert_global_env.rb +39 -0
  606. data/lib/bioroebe/toplevel_methods/databases.rb +73 -0
  607. data/lib/bioroebe/toplevel_methods/delimiter.rb +19 -0
  608. data/lib/bioroebe/toplevel_methods/digest.rb +71 -0
  609. data/lib/bioroebe/toplevel_methods/download_and_fetch_data.rb +146 -0
  610. data/lib/bioroebe/toplevel_methods/e.rb +20 -0
  611. data/lib/bioroebe/toplevel_methods/editor.rb +21 -0
  612. data/lib/bioroebe/toplevel_methods/esystem.rb +22 -0
  613. data/lib/bioroebe/toplevel_methods/exponential_growth.rb +74 -0
  614. data/lib/bioroebe/toplevel_methods/extract.rb +56 -0
  615. data/lib/bioroebe/toplevel_methods/fasta_and_fastq.rb +353 -0
  616. data/lib/bioroebe/toplevel_methods/file_and_directory_related_actions.rb +257 -0
  617. data/lib/bioroebe/toplevel_methods/frequencies.rb +92 -0
  618. data/lib/bioroebe/toplevel_methods/hamming_distance.rb +60 -0
  619. data/lib/bioroebe/toplevel_methods/infer.rb +66 -0
  620. data/lib/bioroebe/toplevel_methods/is_on_roebe.rb +39 -0
  621. data/lib/bioroebe/toplevel_methods/leading_five_prime_and_trailing_three_prime.rb +101 -0
  622. data/lib/bioroebe/toplevel_methods/levensthein.rb +63 -0
  623. data/lib/bioroebe/toplevel_methods/log_directory.rb +109 -0
  624. data/lib/bioroebe/toplevel_methods/longest_common_substring.rb +55 -0
  625. data/lib/bioroebe/toplevel_methods/map_ncbi_entry_to_eutils_id.rb +88 -0
  626. data/lib/bioroebe/toplevel_methods/matches.rb +259 -0
  627. data/lib/bioroebe/toplevel_methods/misc.rb +432 -0
  628. data/lib/bioroebe/toplevel_methods/nucleotides.rb +715 -0
  629. data/lib/bioroebe/toplevel_methods/number_of_clones.rb +63 -0
  630. data/lib/bioroebe/toplevel_methods/open_in_browser.rb +77 -0
  631. data/lib/bioroebe/toplevel_methods/open_reading_frames.rb +236 -0
  632. data/lib/bioroebe/toplevel_methods/opn.rb +34 -0
  633. data/lib/bioroebe/toplevel_methods/palindromes.rb +127 -0
  634. data/lib/bioroebe/toplevel_methods/parse.rb +59 -0
  635. data/lib/bioroebe/toplevel_methods/phred_error_probability.rb +68 -0
  636. data/lib/bioroebe/toplevel_methods/rds.rb +24 -0
  637. data/lib/bioroebe/toplevel_methods/remove.rb +86 -0
  638. data/lib/bioroebe/toplevel_methods/return_source_code_of_this_method.rb +35 -0
  639. data/lib/bioroebe/toplevel_methods/return_subsequence_based_on_indices.rb +68 -0
  640. data/lib/bioroebe/toplevel_methods/rna_splicing.rb +73 -0
  641. data/lib/bioroebe/toplevel_methods/rnalfold.rb +69 -0
  642. data/lib/bioroebe/toplevel_methods/searching_and_finding.rb +116 -0
  643. data/lib/bioroebe/toplevel_methods/shuffleseq.rb +37 -0
  644. data/lib/bioroebe/toplevel_methods/statistics.rb +53 -0
  645. data/lib/bioroebe/toplevel_methods/sum_of_odd_integers.rb +62 -0
  646. data/lib/bioroebe/toplevel_methods/taxonomy.rb +187 -0
  647. data/lib/bioroebe/toplevel_methods/three_delimiter.rb +34 -0
  648. data/lib/bioroebe/toplevel_methods/time_and_date.rb +53 -0
  649. data/lib/bioroebe/toplevel_methods/to_camelcase.rb +26 -0
  650. data/lib/bioroebe/toplevel_methods/truncate.rb +48 -0
  651. data/lib/bioroebe/toplevel_methods/url.rb +36 -0
  652. data/lib/bioroebe/toplevel_methods/verbose.rb +59 -0
  653. data/lib/bioroebe/utility_scripts/align_open_reading_frames.rb +191 -0
  654. data/lib/bioroebe/utility_scripts/analyse_local_dataset.rb +119 -0
  655. data/lib/bioroebe/utility_scripts/check_for_mismatches/check_for_mismatches.rb +230 -0
  656. data/lib/bioroebe/utility_scripts/compacter.rb +131 -0
  657. data/lib/bioroebe/utility_scripts/compseq/compseq.rb +529 -0
  658. data/lib/bioroebe/utility_scripts/consensus_sequence.rb +374 -0
  659. data/lib/bioroebe/utility_scripts/create_batch_entrez_file.rb +130 -0
  660. data/lib/bioroebe/utility_scripts/determine_antigenic_areas.rb +115 -0
  661. data/lib/bioroebe/utility_scripts/determine_missing_nucleotides_percentage.rb +137 -0
  662. data/lib/bioroebe/utility_scripts/display_open_reading_frames/determine.rb +73 -0
  663. data/lib/bioroebe/utility_scripts/display_open_reading_frames/display_open_reading_frames.rb +31 -0
  664. data/lib/bioroebe/utility_scripts/display_open_reading_frames/initialize.rb +37 -0
  665. data/lib/bioroebe/utility_scripts/display_open_reading_frames/menu.rb +49 -0
  666. data/lib/bioroebe/utility_scripts/display_open_reading_frames/misc.rb +471 -0
  667. data/lib/bioroebe/utility_scripts/display_open_reading_frames/report.rb +113 -0
  668. data/lib/bioroebe/utility_scripts/display_open_reading_frames/reset.rb +56 -0
  669. data/lib/bioroebe/utility_scripts/dot_alignment.rb +177 -0
  670. data/lib/bioroebe/utility_scripts/download_files_from_rebase.rb +72 -0
  671. data/lib/bioroebe/utility_scripts/find_gene.rb +202 -0
  672. data/lib/bioroebe/utility_scripts/mirror_repeat.rb +235 -0
  673. data/lib/bioroebe/utility_scripts/move_file_to_its_correct_location.rb +151 -0
  674. data/lib/bioroebe/utility_scripts/parse_taxonomy.rb +168 -0
  675. data/lib/bioroebe/utility_scripts/pathways.rb +152 -0
  676. data/lib/bioroebe/utility_scripts/permutations.rb +145 -0
  677. data/lib/bioroebe/utility_scripts/punnet/punnet.rb +126 -0
  678. data/lib/bioroebe/utility_scripts/show_this_dna_sequence.rb +148 -0
  679. data/lib/bioroebe/utility_scripts/showorf/constants.rb +36 -0
  680. data/lib/bioroebe/utility_scripts/showorf/help.rb +33 -0
  681. data/lib/bioroebe/utility_scripts/showorf/initialize.rb +52 -0
  682. data/lib/bioroebe/utility_scripts/showorf/menu.rb +68 -0
  683. data/lib/bioroebe/utility_scripts/showorf/reset.rb +39 -0
  684. data/lib/bioroebe/utility_scripts/showorf/run.rb +152 -0
  685. data/lib/bioroebe/utility_scripts/showorf/show.rb +97 -0
  686. data/lib/bioroebe/utility_scripts/showorf/showorf.rb +488 -0
  687. data/lib/bioroebe/version/version.rb +44 -0
  688. data/lib/bioroebe/viennarna/README.md +3 -0
  689. data/lib/bioroebe/viennarna/rnafold_wrapper.rb +196 -0
  690. data/lib/bioroebe/with_gui.rb +18 -0
  691. data/lib/bioroebe/www/bioroebe.cgi +44 -0
  692. data/lib/bioroebe/www/embeddable_interface.rb +686 -0
  693. data/lib/bioroebe/www/sinatra/sinatra.rb +1013 -0
  694. data/lib/bioroebe/yaml/agarose/agarose_concentrations.yml +21 -0
  695. data/lib/bioroebe/yaml/aminoacids/amino_acids.yml +92 -0
  696. data/lib/bioroebe/yaml/aminoacids/amino_acids_abbreviations.yml +31 -0
  697. data/lib/bioroebe/yaml/aminoacids/amino_acids_average_mass_table.yml +33 -0
  698. data/lib/bioroebe/yaml/aminoacids/amino_acids_classification.yml +18 -0
  699. data/lib/bioroebe/yaml/aminoacids/amino_acids_english.yml +26 -0
  700. data/lib/bioroebe/yaml/aminoacids/amino_acids_frequency.yml +44 -0
  701. data/lib/bioroebe/yaml/aminoacids/amino_acids_long_name_to_one_letter.yml +61 -0
  702. data/lib/bioroebe/yaml/aminoacids/amino_acids_molecular_formula.yml +32 -0
  703. data/lib/bioroebe/yaml/aminoacids/amino_acids_monoisotopic_mass_table.yml +38 -0
  704. data/lib/bioroebe/yaml/aminoacids/amino_acids_reste.yml +35 -0
  705. data/lib/bioroebe/yaml/aminoacids/amino_acids_three_to_one.yml +34 -0
  706. data/lib/bioroebe/yaml/aminoacids/hydropathy_table.yml +44 -0
  707. data/lib/bioroebe/yaml/aminoacids/molecular_weight.yml +29 -0
  708. data/lib/bioroebe/yaml/aminoacids/simple_aminoacids.yml +66 -0
  709. data/lib/bioroebe/yaml/aminoacids/weight_of_common_proteins.yml +33 -0
  710. data/lib/bioroebe/yaml/antisense/antisense.yml +9 -0
  711. data/lib/bioroebe/yaml/base_composition_of_dna.yml +37 -0
  712. data/lib/bioroebe/yaml/blosum/blosum45.yml +36 -0
  713. data/lib/bioroebe/yaml/blosum/blosum50.yml +34 -0
  714. data/lib/bioroebe/yaml/blosum/blosum62.yml +35 -0
  715. data/lib/bioroebe/yaml/blosum/blosum80.yml +37 -0
  716. data/lib/bioroebe/yaml/blosum/blosum90.yml +36 -0
  717. data/lib/bioroebe/yaml/blosum/blosum_matrix.yml +200 -0
  718. data/lib/bioroebe/yaml/chromosomes/chromosome_numbers.yml +30 -0
  719. data/lib/bioroebe/yaml/codon_tables/1.yml +113 -0
  720. data/lib/bioroebe/yaml/codon_tables/10.yml +89 -0
  721. data/lib/bioroebe/yaml/codon_tables/11.yml +91 -0
  722. data/lib/bioroebe/yaml/codon_tables/12.yml +89 -0
  723. data/lib/bioroebe/yaml/codon_tables/13.yml +89 -0
  724. data/lib/bioroebe/yaml/codon_tables/14.yml +89 -0
  725. data/lib/bioroebe/yaml/codon_tables/15.yml +94 -0
  726. data/lib/bioroebe/yaml/codon_tables/16.yml +89 -0
  727. data/lib/bioroebe/yaml/codon_tables/2.yml +86 -0
  728. data/lib/bioroebe/yaml/codon_tables/21.yml +89 -0
  729. data/lib/bioroebe/yaml/codon_tables/22.yml +89 -0
  730. data/lib/bioroebe/yaml/codon_tables/23.yml +91 -0
  731. data/lib/bioroebe/yaml/codon_tables/24.yml +89 -0
  732. data/lib/bioroebe/yaml/codon_tables/25.yml +89 -0
  733. data/lib/bioroebe/yaml/codon_tables/26.yml +96 -0
  734. data/lib/bioroebe/yaml/codon_tables/27.yml +104 -0
  735. data/lib/bioroebe/yaml/codon_tables/28.yml +97 -0
  736. data/lib/bioroebe/yaml/codon_tables/29.yml +93 -0
  737. data/lib/bioroebe/yaml/codon_tables/3.yml +98 -0
  738. data/lib/bioroebe/yaml/codon_tables/30.yml +91 -0
  739. data/lib/bioroebe/yaml/codon_tables/31.yml +94 -0
  740. data/lib/bioroebe/yaml/codon_tables/33.yml +101 -0
  741. data/lib/bioroebe/yaml/codon_tables/4.yml +96 -0
  742. data/lib/bioroebe/yaml/codon_tables/5.yml +100 -0
  743. data/lib/bioroebe/yaml/codon_tables/6.yml +96 -0
  744. data/lib/bioroebe/yaml/codon_tables/9.yml +97 -0
  745. data/lib/bioroebe/yaml/codon_tables/overview.yml +42 -0
  746. data/lib/bioroebe/yaml/configuration/README.md +12 -0
  747. data/lib/bioroebe/yaml/configuration/browser.yml +1 -0
  748. data/lib/bioroebe/yaml/configuration/colourize_fasta_sequences.yml +14 -0
  749. data/lib/bioroebe/yaml/configuration/default_colours_for_the_aminoacids.yml +28 -0
  750. data/lib/bioroebe/yaml/configuration/temp_dir.yml +1 -0
  751. data/lib/bioroebe/yaml/configuration/try_to_use_matplotlib.yml +1 -0
  752. data/lib/bioroebe/yaml/configuration/use_opn.yml +1 -0
  753. data/lib/bioroebe/yaml/configuration/use_this_database.yml +1 -0
  754. data/lib/bioroebe/yaml/create_these_directories_on_startup/create_these_directories_on_startup.yml +9 -0
  755. data/lib/bioroebe/yaml/default_dna_input.yml +3 -0
  756. data/lib/bioroebe/yaml/enzymes/enzyme_classes.yml +15 -0
  757. data/lib/bioroebe/yaml/enzymes/pH-Optima.yml +11 -0
  758. data/lib/bioroebe/yaml/fasta_and_fastq/fastq_quality_schemes.yml +44 -0
  759. data/lib/bioroebe/yaml/genomes/README.md +16 -0
  760. data/lib/bioroebe/yaml/humans/README.md +2 -0
  761. data/lib/bioroebe/yaml/humans/human_chromosomes.yml +53 -0
  762. data/lib/bioroebe/yaml/laboratory/README.md +1 -0
  763. data/lib/bioroebe/yaml/laboratory/pipettes.yml +8 -0
  764. data/lib/bioroebe/yaml/mRNA/mRNA.yml +16 -0
  765. data/lib/bioroebe/yaml/nuclear_localization_sequences.yml +15 -0
  766. data/lib/bioroebe/yaml/nucleotides/abbreviations_for_nucleotides.yml +29 -0
  767. data/lib/bioroebe/yaml/nucleotides/nucleotide_density.yml +10 -0
  768. data/lib/bioroebe/yaml/nucleotides/nucleotides.yml +34 -0
  769. data/lib/bioroebe/yaml/nucleotides/nucleotides_weight.yml +12 -0
  770. data/lib/bioroebe/yaml/pathways/README.md +2 -0
  771. data/lib/bioroebe/yaml/pathways/citric_acid_cycle.yml +16 -0
  772. data/lib/bioroebe/yaml/pathways/glycolysis.yml +20 -0
  773. data/lib/bioroebe/yaml/pathways/shikimate_pathway.yml +23 -0
  774. data/lib/bioroebe/yaml/pathways/urea_cycle.yml +11 -0
  775. data/lib/bioroebe/yaml/primers/README.md +4 -0
  776. data/lib/bioroebe/yaml/primers/primers.yml +3 -0
  777. data/lib/bioroebe/yaml/promoters/35S.yml +15 -0
  778. data/lib/bioroebe/yaml/promoters/strong_promoters.yml +24 -0
  779. data/lib/bioroebe/yaml/proteases/proteases.yml +3 -0
  780. data/lib/bioroebe/yaml/proteins/ubiquitin.yml +4 -0
  781. data/lib/bioroebe/yaml/remote_urls/README.md +4 -0
  782. data/lib/bioroebe/yaml/remote_urls/remote_urls.yml +3 -0
  783. data/lib/bioroebe/yaml/restriction_enzymes/restriction_enzymes.yml +630 -0
  784. data/lib/bioroebe/yaml/sequences/JX472995_Green_fluorescent_protein_from_Aequorea_victoria.fasta +14 -0
  785. data/lib/bioroebe/yaml/sequences/README.md +2 -0
  786. data/lib/bioroebe/yaml/talens.yml +22 -0
  787. data/lib/bioroebe/yaml/viruses/ecoli_phages.yml +63 -0
  788. data/lib/bioroebe/yaml/viruses/viruses.yml +6 -0
  789. data/lib/bioroebe.rb +5 -0
  790. data/spec/testing_toplevel_method_editor.rb +20 -0
  791. data/spec/testing_toplevel_method_url.rb +15 -0
  792. data/spec/testing_toplevel_method_verbose.rb +13 -0
  793. data/test/advanced_svg_example.rb +307 -0
  794. data/test/testing_bioroebe.rb +25 -0
  795. data/test/testing_codons.rb +45 -0
  796. data/test/testing_dna_to_rna_conversion.rb +15 -0
  797. data/test/testing_parse_pdb_file.rb +23 -0
  798. data/test/testing_reverse_complement.rb +32 -0
  799. data/test/testing_svg_component_of_bioroebe.rb +311 -0
  800. data/test/testing_svg_component_of_bioroebe_from_json_dataset.rb +34 -0
  801. data/test/testing_taxonomy.rb +22 -0
  802. metadata +1059 -0
@@ -0,0 +1,301 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="1000" height="2266" style="" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+
3
+ <defs>
4
+
5
+ <linearGradient id="red_white_h" x1="0%" x2="0%" y1="0%" y2="100%">
6
+ <stop offset="0%" style="stop-color:red;stop-opacity:1" />
7
+ <stop offset="100%" style="stop-color:white;stop-opacity:1" /></linearGradient>
8
+ <radialGradient id="yellow_white_radial" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
9
+ <stop offset="0%" style="stop-color:white;stop-opacity:0" />
10
+ <stop offset="100%" style="stop-color:yellow;stop-opacity:1" /></radialGradient>
11
+ <linearGradient id="red_white_h" x1="0%" x2="0%" y1="0%" y2="100%">
12
+ <stop offset="0%" style="stop-color:red;stop-opacity:1" />
13
+ <stop offset="100%" style="stop-color:white;stop-opacity:1" /></linearGradient>
14
+ <radialGradient id="custom" cx="5%" cy="5%" r="50%" fx="50%" fy="50%">
15
+ <stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:0" />
16
+ <stop offset="100%" style="stop-color:rgb(0,127,200);stop-opacity:1" /></radialGradient>
17
+ <linearGradient id="green_white_h" x1="0%" x2="0%" y1="0%" y2="100%">
18
+ <stop offset="0%" style="stop-color:green;stop-opacity:1" />
19
+ <stop offset="100%" style="stop-color:white;stop-opacity:1" /></linearGradient>
20
+ <linearGradient id="blue_white_h" x1="0%" x2="0%" y1="0%" y2="100%">
21
+ <stop offset="0%" style="stop-color:blue;stop-opacity:1" />
22
+ <stop offset="100%" style="stop-color:white;stop-opacity:1" /></linearGradient>
23
+ <radialGradient id="red_white_radial" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
24
+ <stop offset="0%" style="stop-color:white;stop-opacity:0" />
25
+ <stop offset="100%" style="stop-color:red;stop-opacity:1" /></radialGradient>
26
+
27
+ </defs>
28
+
29
+ <line x1="1" y1="20" x2="880.0" y2="20" stroke="black" stroke-width="1" style=""/>
30
+ <rect x="0.0" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
31
+ <text x="0.0" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">400</text>
32
+ <rect x="80.6129032258064" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
33
+ <text x="80.6129032258064" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">2899</text>
34
+ <rect x="161.225806451613" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
35
+ <text x="161.225806451613" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">5398</text>
36
+ <rect x="241.838709677419" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
37
+ <text x="241.838709677419" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">7897</text>
38
+ <rect x="322.451612903226" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
39
+ <text x="322.451612903226" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">10396</text>
40
+ <rect x="403.064516129032" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
41
+ <text x="403.064516129032" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">12895</text>
42
+ <rect x="483.677419354839" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
43
+ <text x="483.677419354839" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">15394</text>
44
+ <rect x="564.290322580645" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
45
+ <text x="564.290322580645" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">17893</text>
46
+ <rect x="644.903225806452" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
47
+ <text x="644.903225806452" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">20392</text>
48
+ <rect x="725.516129032258" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
49
+ <text x="725.516129032258" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">22891</text>
50
+ <rect x="806.129032258065" y="20" width="1" height="5" fill="" rx="" ry="" stroke="black" stroke-width="1" style=""/>
51
+ <text x="806.129032258065" y="40" fill="black" transform="" style="font-family:Arial;font-style:italic">25390</text>
52
+ <text x="3" y="60" fill="black" transform="" style="font-family:monospace;">generic_features</text>
53
+ <rect x="16.7366694667787" y="100" width="41.2496499859994" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
54
+ <text x="59.9863194527781" y="100" fill="black" transform="" style="font-family:monospace;">MyFeature</text>
55
+ <rect x="2.14408576343054" y="80" width="24.544981799272" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
56
+ <rect x="371.214848593944" y="140" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
57
+ <rect x="371.214848593944" y="120" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
58
+ <rect x="371.214848593944" y="100" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
59
+ <rect x="371.214848593944" y="80" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
60
+ <text x="3" y="190" fill="black" transform="" style="font-family:monospace;">more_generic_features</text>
61
+ <rect x="16.7366694667787" y="230" width="41.2496499859994" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
62
+ <rect x="113.124524980999" y="230" width="8.86435457418297" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
63
+ <rect x="2.14408576343054" y="210" width="465.074602984119" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
64
+ <text x="3" y="280" fill="black" transform="" style="font-family:monospace;">yet_more_generic_features</text>
65
+ <rect x="16.7366694667787" y="340" width="41.2496499859994" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
66
+ <rect x="2.14408576343054" y="320" width="24.544981799272" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
67
+ <rect x="371.214848593944" y="340" width="0.960038401536061" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
68
+ <rect x="371.214848593944" y="320" width="0.960038401536061" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
69
+ <rect x="2.14408576343054" y="300" width="465.074602984119" height="10" fill="yellow" rx="10" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
70
+ <text x="3" y="390" fill="black" transform="" style="font-family:monospace;">directed_features gradient</text>
71
+ <polygon points="2.14408576343054,430 24.6890675627025,430 26.6890675627025,435 24.6890675627025,440 2.14408576343054,440" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
72
+ <polygon points="16.7366694667787,410 57.9863194527781,410 57.9863194527781,420 16.7366694667787,420 14.7366694667787,415" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
73
+ <text x="3" y="480" fill="black" transform="" style="font-family:monospace;">generic_features</text>
74
+ <rect x="16.7366694667787" y="520" width="41.2496499859994" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
75
+ <rect x="2.14408576343054" y="500" width="24.544981799272" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
76
+ <rect x="371.214848593944" y="560" width="-319.052762110484" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
77
+ <rect x="371.214848593944" y="540" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
78
+ <rect x="371.214848593944" y="520" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
79
+ <rect x="371.214848593944" y="500" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
80
+ <text x="3" y="610" fill="black" transform="" style="font-family:monospace;">more_generic_features</text>
81
+ <rect x="16.7366694667787" y="650" width="41.2496499859994" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
82
+ <rect x="113.124524980999" y="650" width="8.86435457418297" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
83
+ <rect x="2.14408576343054" y="630" width="465.074602984119" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
84
+ <text x="3" y="700" fill="black" transform="" style="font-family:monospace;">yet_more_generic_features</text>
85
+ <rect x="16.7366694667787" y="760" width="41.2496499859994" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
86
+ <rect x="2.14408576343054" y="740" width="24.544981799272" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
87
+ <rect x="371.214848593944" y="760" width="0.960038401536061" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
88
+ <rect x="371.214848593944" y="740" width="0.960038401536061" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
89
+ <rect x="2.14408576343054" y="720" width="465.074602984119" height="10" fill="yellow" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
90
+ <text x="3" y="810" fill="black" transform="" style="font-family:monospace;">directed_features</text>
91
+ <polygon points="2.14408576343054,850 24.6890675627025,850 26.6890675627025,855 24.6890675627025,860 2.14408576343054,860" fill="red" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
92
+ <polygon points="16.7366694667787,830 57.9863194527781,830 57.9863194527781,840 16.7366694667787,840 14.7366694667787,835" fill="red" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
93
+ <text x="3" y="900" fill="black" transform="" style="font-family:monospace;">generic_features</text>
94
+ <rect x="16.7366694667787" y="940" width="41.2496499859994" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
95
+ <rect x="2.14408576343054" y="920" width="24.544981799272" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
96
+ <rect x="371.214848593944" y="980" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
97
+ <rect x="371.214848593944" y="960" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
98
+ <rect x="371.214848593944" y="940" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
99
+ <rect x="371.214848593944" y="920" width="0.960038401536061" height="10" fill="red" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
100
+ <text x="3" y="1030" fill="black" transform="" style="font-family:monospace;">more_generic_features</text>
101
+ <rect x="16.7366694667787" y="1070" width="41.2496499859994" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
102
+ <rect x="113.124524980999" y="1070" width="8.86435457418297" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
103
+ <rect x="2.14408576343054" y="1050" width="465.074602984119" height="10" fill="green" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
104
+ <text x="3" y="1120" fill="black" transform="" style="font-family:monospace;">yet_more_generic_features</text>
105
+ <rect x="16.7366694667787" y="1180" width="41.2496499859994" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
106
+ <rect x="2.14408576343054" y="1160" width="24.544981799272" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
107
+ <rect x="371.214848593944" y="1180" width="0.960038401536061" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
108
+ <rect x="371.214848593944" y="1160" width="0.960038401536061" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
109
+ <rect x="2.14408576343054" y="1140" width="465.074602984119" height="10" fill="url(#yellow_white_radial)" rx="4" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
110
+ <text x="3" y="1230" fill="black" transform="" style="font-family:monospace;">directed_features fat ones</text>
111
+ <polygon points="2.14408576343054,1486 20.2890675627025,1486 26.6890675627025,1502 20.2890675627025,1518 2.14408576343054,1518" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
112
+ <polygon points="16.7366694667787,1422 57.9863194527781,1422 57.9863194527781,1454 16.7366694667787,1454 10.3366694667787,1438" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
113
+ <polygon points="2.14408576343054,1358 20.2890675627025,1358 26.6890675627025,1374 20.2890675627025,1390 2.14408576343054,1390" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
114
+ <polygon points="16.7366694667787,1294 57.9863194527781,1294 57.9863194527781,1326 16.7366694667787,1326 10.3366694667787,1310" fill="url(#red_white_h)" stroke="black" stroke-width="1" style="fill-opacity:0.4;" />
115
+ <text x="3" y="1536" fill="black" transform="" style="font-family:monospace;">transcripts (grouped models)</text>
116
+ <polygon points="16.7366694667787,1616 19.2007680307212,1616 19.2007680307212,1636 16.7366694667787,1636 12.7366694667787,1626" fill="url(#custom)" stroke="black" stroke-width="1" style="" />
117
+ <rect x="51.2020480819233" y="1616" width="11.0404416176647" height="20" fill="url(#custom)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
118
+ <rect x="19.2007680307212" y="1616" width="6.40025601024041" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
119
+ <rect x="44.8017920716829" y="1616" width="6.40025601024041" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
120
+ <line x1="16.7366694667787" y1="1626" x2="62.242489699588" y2="1626" stroke="black" stroke-width="1" style=""/>
121
+ <polygon points="448.017920716829,1576 460.01856074243,1576 464.01856074243,1586 460.01856074243,1596 448.017920716829,1596" fill="url(#custom)" stroke="black" stroke-width="1" style="" />
122
+ <rect x="2.14408576343054" y="1576" width="17.0566822672907" height="20" fill="url(#custom)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
123
+ <rect x="419.216768670747" y="1576" width="16.000640025601" height="20" fill="url(#custom)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
124
+ <rect x="35.2014080563223" y="1576" width="32.001280051202" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
125
+ <rect x="83.2033281331253" y="1576" width="128.005120204808" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
126
+ <rect x="275.211008440338" y="1576" width="96.0038401536061" height="20" fill="green" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
127
+ <line x1="2.14408576343054" y1="1586" x2="467.21868874755" y2="1586" stroke="black" stroke-width="1" style=""/>
128
+ <text x="469.21868874755" y="1576" fill="black" transform="" style="font-family:monospace;">MyTranscript</text>
129
+ <text x="3" y="1666" fill="black" transform="" style="font-family:monospace;">transcripts (grouped models)</text>
130
+ <polygon points="16.7366694667787,1746 19.2007680307212,1746 19.2007680307212,1766 16.7366694667787,1766 12.7366694667787,1756" fill="url(#blue_white_h)" stroke="black" stroke-width="1" style="" />
131
+ <rect x="51.2020480819233" y="1746" width="11.0404416176647" height="20" fill="url(#blue_white_h)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
132
+ <rect x="19.2007680307212" y="1746" width="6.40025601024041" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
133
+ <rect x="44.8017920716829" y="1746" width="6.40025601024041" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
134
+ <polyline points="25.6010240409616,1756 35.2014080563223,1746 44.8017920716829,1756" fill="none" stroke="black" stroke-width="1" style="" />
135
+ <polygon points="419.216768670747,1706 431.217408696348,1706 435.217408696348,1716 431.217408696348,1726 419.216768670747,1726" fill="url(#blue_white_h)" stroke="black" stroke-width="1" style="" />
136
+ <rect x="2.14408576343054" y="1706" width="17.0566822672907" height="20" fill="url(#blue_white_h)" rx="" ry="" stroke="black" stroke-width="1" style=""/>
137
+ <rect x="35.2014080563223" y="1706" width="32.001280051202" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
138
+ <rect x="83.2033281331253" y="1706" width="128.005120204808" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
139
+ <rect x="275.211008440338" y="1706" width="96.0038401536061" height="20" fill="url(#green_white_h)" rx="" ry="" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
140
+ <polyline points="19.2007680307212,1716 27.2010880435217,1706 35.2014080563223,1716" fill="none" stroke="black" stroke-width="1" style="" />
141
+ <polyline points="67.2026881075243,1716 75.2030081203248,1706 83.2033281331253,1716" fill="none" stroke="black" stroke-width="1" style="" />
142
+ <polyline points="211.208448337934,1716 243.209728389136,1706 275.211008440338,1716" fill="none" stroke="black" stroke-width="1" style="" />
143
+ <polyline points="371.214848593944,1716 395.215808632345,1706 419.216768670747,1716" fill="none" stroke="black" stroke-width="1" style="" />
144
+ <text x="3" y="1796" fill="black" transform="" style="font-family:monospace;">data track</text>
145
+ <text x="805.0" y="1801" fill="black" transform="" style="font-family:monospace;">29</text>
146
+ <text x="805.0" y="1951" fill="black" transform="" style="font-family:monospace;">0</text>
147
+ <rect x="0.0" y="1821.68965517241" width="31.9692787711508" height="129.310344827586" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
148
+ <rect x="32.001280051202" y="1930.31034482759" width="31.9692787711508" height="20.6896551724138" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
149
+ <rect x="64.0025601024041" y="1816.51724137931" width="31.9692787711508" height="134.48275862069" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
150
+ <rect x="96.0038401536061" y="1801.0" width="31.9692787711508" height="150.0" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
151
+ <rect x="128.005120204808" y="1806.1724137931" width="31.9692787711508" height="144.827586206897" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
152
+ <rect x="160.00640025601" y="1801.0" width="31.9692787711508" height="150.0" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
153
+ <rect x="192.007680307212" y="1863.06896551724" width="31.9692787711508" height="87.9310344827586" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
154
+ <rect x="224.008960358414" y="1868.24137931034" width="31.9692787711508" height="82.7586206896552" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
155
+ <rect x="256.010240409616" y="1930.31034482759" width="31.9692787711508" height="20.6896551724138" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
156
+ <rect x="288.011520460818" y="1883.75862068966" width="31.9692787711508" height="67.2413793103448" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
157
+ <rect x="320.01280051202" y="1842.37931034483" width="31.9692787711508" height="108.620689655172" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
158
+ <rect x="352.014080563223" y="1826.86206896552" width="31.9692787711508" height="124.137931034483" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
159
+ <rect x="384.015360614425" y="1816.51724137931" width="31.9692787711508" height="134.48275862069" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
160
+ <rect x="416.016640665627" y="1899.27586206897" width="31.9692787711508" height="51.7241379310345" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
161
+ <rect x="448.017920716829" y="1919.96551724138" width="31.9692787711508" height="31.0344827586207" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
162
+ <rect x="480.019200768031" y="1832.03448275862" width="31.9692787711508" height="118.965517241379" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
163
+ <rect x="512.020480819233" y="1811.34482758621" width="31.9692787711508" height="139.655172413793" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
164
+ <rect x="544.021760870435" y="1945.8275862069" width="31.9692787711508" height="5.17241379310345" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
165
+ <rect x="576.023040921637" y="1945.8275862069" width="31.9692787711508" height="5.17241379310345" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
166
+ <rect x="608.024320972839" y="1811.34482758621" width="31.9692787711508" height="139.655172413793" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
167
+ <rect x="640.025601024041" y="1930.31034482759" width="31.9692787711508" height="20.6896551724138" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
168
+ <rect x="672.026881075243" y="1873.41379310345" width="31.9692787711508" height="77.5862068965517" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
169
+ <rect x="704.028161126445" y="1806.1724137931" width="31.9692787711508" height="144.827586206897" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
170
+ <rect x="736.029441177647" y="1930.31034482759" width="31.9692787711508" height="20.6896551724138" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
171
+ <rect x="768.030721228849" y="1873.41379310345" width="31.9692787711508" height="77.5862068965517" fill="gold" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
172
+ <text x="3" y="1996" fill="black" transform="" style="font-family:monospace;">data track</text>
173
+ <text x="805.0" y="2001" fill="black" transform="" style="font-family:monospace;">29</text>
174
+ <text x="805.0" y="2151" fill="black" transform="" style="font-family:monospace;">0</text>
175
+ <rect x="0.0" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
176
+ <rect x="6.40025601024041" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
177
+ <rect x="12.8005120204808" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
178
+ <rect x="19.2007680307212" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
179
+ <rect x="25.6010240409616" y="2001.0" width="6.40025601024041" height="150.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
180
+ <rect x="32.001280051202" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
181
+ <rect x="38.4015360614425" y="2099.27586206897" width="6.40025601024041" height="51.7241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
182
+ <rect x="44.8017920716829" y="2026.86206896552" width="6.40025601024041" height="124.137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
183
+ <rect x="51.2020480819233" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
184
+ <rect x="57.6023040921637" y="2109.62068965517" width="6.40025601024041" height="41.3793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
185
+ <rect x="64.0025601024041" y="2042.37931034483" width="6.40025601024041" height="108.620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
186
+ <rect x="70.4028161126445" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
187
+ <rect x="76.8030721228849" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
188
+ <rect x="83.2033281331253" y="2052.72413793103" width="6.40025601024041" height="98.2758620689655" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
189
+ <rect x="89.6035841433657" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
190
+ <rect x="96.0038401536061" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
191
+ <rect x="102.404096163847" y="2140.65517241379" width="6.40025601024041" height="10.3448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
192
+ <rect x="108.804352174087" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
193
+ <rect x="115.204608184327" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
194
+ <rect x="121.604864194568" y="2047.55172413793" width="6.40025601024041" height="103.448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
195
+ <rect x="128.005120204808" y="2011.34482758621" width="6.40025601024041" height="139.655172413793" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
196
+ <rect x="134.405376215049" y="2047.55172413793" width="6.40025601024041" height="103.448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
197
+ <rect x="140.805632225289" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
198
+ <rect x="147.205888235529" y="2021.68965517241" width="6.40025601024041" height="129.310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
199
+ <rect x="153.60614424577" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
200
+ <rect x="160.00640025601" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
201
+ <rect x="166.406656266251" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
202
+ <rect x="172.806912276491" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
203
+ <rect x="179.207168286731" y="2026.86206896552" width="6.40025601024041" height="124.137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
204
+ <rect x="185.607424296972" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
205
+ <rect x="192.007680307212" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
206
+ <rect x="198.407936317453" y="2021.68965517241" width="6.40025601024041" height="129.310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
207
+ <rect x="204.808192327693" y="2006.1724137931" width="6.40025601024041" height="144.827586206897" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
208
+ <rect x="211.208448337934" y="2037.20689655172" width="6.40025601024041" height="113.793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
209
+ <rect x="217.608704348174" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
210
+ <rect x="224.008960358414" y="2032.03448275862" width="6.40025601024041" height="118.965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
211
+ <rect x="230.409216368655" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
212
+ <rect x="236.809472378895" y="2083.75862068966" width="6.40025601024041" height="67.2413793103448" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
213
+ <rect x="243.209728389136" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
214
+ <rect x="249.609984399376" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
215
+ <rect x="256.010240409616" y="2068.24137931034" width="6.40025601024041" height="82.7586206896552" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
216
+ <rect x="262.410496419857" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
217
+ <rect x="268.810752430097" y="2021.68965517241" width="6.40025601024041" height="129.310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
218
+ <rect x="275.211008440338" y="2145.8275862069" width="6.40025601024041" height="5.17241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
219
+ <rect x="281.611264450578" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
220
+ <rect x="288.011520460818" y="2145.8275862069" width="6.40025601024041" height="5.17241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
221
+ <rect x="294.411776471059" y="2145.8275862069" width="6.40025601024041" height="5.17241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
222
+ <rect x="300.812032481299" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
223
+ <rect x="307.21228849154" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
224
+ <rect x="313.61254450178" y="2099.27586206897" width="6.40025601024041" height="51.7241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
225
+ <rect x="320.01280051202" y="2021.68965517241" width="6.40025601024041" height="129.310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
226
+ <rect x="326.413056522261" y="2088.93103448276" width="6.40025601024041" height="62.0689655172414" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
227
+ <rect x="332.813312532501" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
228
+ <rect x="339.213568542742" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
229
+ <rect x="345.613824552982" y="2037.20689655172" width="6.40025601024041" height="113.793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
230
+ <rect x="352.014080563223" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
231
+ <rect x="358.414336573463" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
232
+ <rect x="364.814592583703" y="2068.24137931034" width="6.40025601024041" height="82.7586206896552" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
233
+ <rect x="371.214848593944" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
234
+ <rect x="377.615104604184" y="2037.20689655172" width="6.40025601024041" height="113.793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
235
+ <rect x="384.015360614425" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
236
+ <rect x="390.415616624665" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
237
+ <rect x="396.815872634905" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
238
+ <rect x="403.216128645146" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
239
+ <rect x="409.616384655386" y="2109.62068965517" width="6.40025601024041" height="41.3793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
240
+ <rect x="416.016640665627" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
241
+ <rect x="422.416896675867" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
242
+ <rect x="428.817152686107" y="2063.06896551724" width="6.40025601024041" height="87.9310344827586" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
243
+ <rect x="435.217408696348" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
244
+ <rect x="441.617664706588" y="2088.93103448276" width="6.40025601024041" height="62.0689655172414" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
245
+ <rect x="448.017920716829" y="2032.03448275862" width="6.40025601024041" height="118.965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
246
+ <rect x="454.418176727069" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
247
+ <rect x="460.818432737309" y="2068.24137931034" width="6.40025601024041" height="82.7586206896552" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
248
+ <rect x="467.21868874755" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
249
+ <rect x="473.61894475779" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
250
+ <rect x="480.019200768031" y="2130.31034482759" width="6.40025601024041" height="20.6896551724138" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
251
+ <rect x="486.419456778271" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
252
+ <rect x="492.819712788512" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
253
+ <rect x="499.219968798752" y="2104.44827586207" width="6.40025601024041" height="46.551724137931" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
254
+ <rect x="505.620224808992" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
255
+ <rect x="512.020480819233" y="2001.0" width="6.40025601024041" height="150.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
256
+ <rect x="518.420736829473" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
257
+ <rect x="524.820992839714" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
258
+ <rect x="531.221248849954" y="2042.37931034483" width="6.40025601024041" height="108.620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
259
+ <rect x="537.621504860194" y="2083.75862068966" width="6.40025601024041" height="67.2413793103448" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
260
+ <rect x="544.021760870435" y="2032.03448275862" width="6.40025601024041" height="118.965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
261
+ <rect x="550.422016880675" y="2016.51724137931" width="6.40025601024041" height="134.48275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
262
+ <rect x="556.822272890916" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
263
+ <rect x="563.222528901156" y="2083.75862068966" width="6.40025601024041" height="67.2413793103448" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
264
+ <rect x="569.622784911396" y="2006.1724137931" width="6.40025601024041" height="144.827586206897" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
265
+ <rect x="576.023040921637" y="2001.0" width="6.40025601024041" height="150.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
266
+ <rect x="582.423296931877" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
267
+ <rect x="588.823552942118" y="2042.37931034483" width="6.40025601024041" height="108.620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
268
+ <rect x="595.223808952358" y="2104.44827586207" width="6.40025601024041" height="46.551724137931" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
269
+ <rect x="601.624064962598" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
270
+ <rect x="608.024320972839" y="2151.0" width="6.40025601024041" height="0.0" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
271
+ <rect x="614.424576983079" y="2032.03448275862" width="6.40025601024041" height="118.965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
272
+ <rect x="620.82483299332" y="2099.27586206897" width="6.40025601024041" height="51.7241379310345" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
273
+ <rect x="627.22508900356" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
274
+ <rect x="633.6253450138" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
275
+ <rect x="640.025601024041" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
276
+ <rect x="646.425857034281" y="2119.96551724138" width="6.40025601024041" height="31.0344827586207" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
277
+ <rect x="652.826113044522" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
278
+ <rect x="659.226369054762" y="2037.20689655172" width="6.40025601024041" height="113.793103448276" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
279
+ <rect x="665.626625065003" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
280
+ <rect x="672.026881075243" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
281
+ <rect x="678.427137085483" y="2083.75862068966" width="6.40025601024041" height="67.2413793103448" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
282
+ <rect x="684.827393095724" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
283
+ <rect x="691.227649105964" y="2104.44827586207" width="6.40025601024041" height="46.551724137931" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
284
+ <rect x="697.627905116205" y="2057.89655172414" width="6.40025601024041" height="93.1034482758621" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
285
+ <rect x="704.028161126445" y="2088.93103448276" width="6.40025601024041" height="62.0689655172414" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
286
+ <rect x="710.428417136685" y="2078.58620689655" width="6.40025601024041" height="72.4137931034483" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
287
+ <rect x="716.828673146926" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
288
+ <rect x="723.228929157166" y="2094.10344827586" width="6.40025601024041" height="56.8965517241379" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
289
+ <rect x="729.629185167407" y="2125.13793103448" width="6.40025601024041" height="25.8620689655172" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
290
+ <rect x="736.029441177647" y="2073.41379310345" width="6.40025601024041" height="77.5862068965517" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
291
+ <rect x="742.429697187888" y="2006.1724137931" width="6.40025601024041" height="144.827586206897" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
292
+ <rect x="748.829953198128" y="2130.31034482759" width="6.40025601024041" height="20.6896551724138" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
293
+ <rect x="755.230209208368" y="2140.65517241379" width="6.40025601024041" height="10.3448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
294
+ <rect x="761.630465218609" y="2135.48275862069" width="6.40025601024041" height="15.5172413793103" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
295
+ <rect x="768.030721228849" y="2140.65517241379" width="6.40025601024041" height="10.3448275862069" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
296
+ <rect x="774.43097723909" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
297
+ <rect x="780.83123324933" y="2114.79310344828" width="6.40025601024041" height="36.2068965517241" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
298
+ <rect x="787.23148925957" y="2104.44827586207" width="6.40025601024041" height="46.551724137931" fill="url(#red_white_radial)" rx="1" ry="1" stroke="black" stroke-width="1" style="fill-opacity:0.4;"/>
299
+
300
+ </svg>
301
+
@@ -0,0 +1 @@
1
+ Code related to databases may be stored in this subdirectory.
@@ -0,0 +1,102 @@
1
+ #!/usr/bin/ruby -w
2
+ # Encoding: UTF-8
3
+ # frozen_string_literal: true
4
+ # =========================================================================== #
5
+ # === Bioroebe::DownloadTaxonomyDatabase
6
+ #
7
+ # This file bundles download-related functionality into a small, mostly
8
+ # standalone-class. This class will download the taxonomy-database
9
+ # made available by NCBI.
10
+ # =========================================================================== #
11
+ # require 'bioroebe/databases/download_taxonomy_database.rb'
12
+ # =========================================================================== #
13
+ require 'bioroebe/base/commandline_application/commandline_application.rb'
14
+
15
+ module Bioroebe
16
+
17
+ class DownloadTaxonomyDatabase < ::Bioroebe::CommandlineApplication # === Bioroebe::DownloadTaxonomyDatabase
18
+
19
+ # ========================================================================= #
20
+ # === initialize
21
+ # ========================================================================= #
22
+ def initialize(
23
+ url = FTP_NCBI_TAXONOMY_DATABASE,
24
+ run_already = true
25
+ )
26
+ reset
27
+ set_url(url)
28
+ run if run_already
29
+ end
30
+
31
+ # ========================================================================= #
32
+ # === reset
33
+ # ========================================================================= #
34
+ def reset
35
+ super()
36
+ end
37
+
38
+ # ========================================================================= #
39
+ # === set_url
40
+ # ========================================================================= #
41
+ def set_url(i)
42
+ @url = i
43
+ end
44
+
45
+ # ========================================================================= #
46
+ # === determine_download_location
47
+ #
48
+ # Determine the instance variable @download_location here.
49
+ # ========================================================================= #
50
+ def determine_download_location
51
+ @download_location = taxonomy_download_directory?+
52
+ File.basename(@url)
53
+ end
54
+
55
+ # ========================================================================= #
56
+ # === download_location?
57
+ # ========================================================================= #
58
+ def download_location? # We will store the file here.
59
+ @download_location
60
+ end
61
+
62
+ # ========================================================================= #
63
+ # === report_that_we_have_finished_the_download
64
+ # ========================================================================= #
65
+ def report_that_we_have_finished_the_download
66
+ e "Finished downloading into `#{sdir(@download_location)}`."
67
+ end
68
+
69
+ # ========================================================================= #
70
+ # === run
71
+ # ========================================================================= #
72
+ def run
73
+ determine_download_location
74
+ this_dir = taxonomy_download_directory?
75
+ unless File.directory? this_dir
76
+ mkdir(this_dir) { :be_quiet }
77
+ cd this_dir
78
+ end
79
+ erev 'Downloading into `'+sdir(this_dir)+rev+'` next.'
80
+ esystem "wget #{@url}"
81
+ report_that_we_have_finished_the_download if be_verbose?
82
+ if is_on_roebe? # Extract it at once on my home system.
83
+ extract(File.basename(@url))
84
+ end
85
+ end
86
+
87
+ end
88
+
89
+ # =========================================================================== #
90
+ # === Bioroebe.download_taxonomy_database
91
+ # =========================================================================== #
92
+ def self.download_taxonomy_database(
93
+ i = ::Bioroebe::FTP_NCBI_TAXONOMY_DATABASE
94
+ )
95
+ DownloadTaxonomyDatabase.new(i)
96
+ end
97
+
98
+ end
99
+
100
+ if __FILE__ == $PROGRAM_NAME
101
+ Bioroebe.download_taxonomy_database
102
+ end # downloadtaxonomydatabase
@@ -0,0 +1,5 @@
1
+ This directory holds code that may be used to draw a dotplot.
2
+
3
+ For now I recommend to use the class Bioroebe::AdvancedDotplot -
4
+ it was written in August 2016 and may be better than the other
5
+ class called Bioroebe::Dotplot.