bioroebe 0.10.80 → 0.12.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3946 -2817
- data/bin/bioroebe +13 -2
- data/bin/bioroebe_hash +7 -0
- data/bin/codon_to_aminoacid +6 -4
- data/bin/compacter +7 -0
- data/bin/plain_palindrome +7 -0
- data/bioroebe.gemspec +3 -3
- data/doc/README.gen +3918 -2793
- data/doc/quality_control/commandline_applications.md +3 -3
- data/doc/statistics/statistics.md +7 -7
- data/doc/todo/bioroebe_GUI_todo.md +19 -14
- data/doc/todo/bioroebe_java_todo.md +22 -0
- data/doc/todo/bioroebe_todo.md +2075 -2620
- data/lib/bioroebe/C++/DNA.cpp +69 -0
- data/lib/bioroebe/C++/RNA.cpp +58 -0
- data/lib/bioroebe/C++/sequence.cpp +35 -0
- data/lib/bioroebe/abstract/README.md +1 -0
- data/lib/bioroebe/abstract/features.rb +29 -0
- data/lib/bioroebe/aminoacids/aminoacid_substitution.rb +1 -9
- data/lib/bioroebe/aminoacids/codon_percentage.rb +1 -9
- data/lib/bioroebe/aminoacids/deduce_aminoacid_sequence.rb +1 -9
- data/lib/bioroebe/aminoacids/display_aminoacid_table.rb +1 -0
- data/lib/bioroebe/aminoacids/show_hydrophobicity.rb +1 -6
- data/lib/bioroebe/base/base_module/base_module.rb +36 -0
- data/lib/bioroebe/base/colours_for_base/colours_for_base.rb +18 -8
- data/lib/bioroebe/base/commandline_application/commandline_application.rb +13 -9
- data/lib/bioroebe/base/commandline_application/commandline_arguments.rb +24 -19
- data/lib/bioroebe/base/commandline_application/misc.rb +66 -49
- data/lib/bioroebe/base/commandline_application/opn.rb +8 -8
- data/lib/bioroebe/base/commandline_application/reset.rb +5 -3
- data/lib/bioroebe/base/internal_hash_module/internal_hash_module.rb +42 -0
- data/lib/bioroebe/base/misc.rb +35 -0
- data/lib/bioroebe/base/prototype/misc.rb +15 -9
- data/lib/bioroebe/base/prototype/reset.rb +10 -0
- data/lib/bioroebe/cleave_and_digest/digestion.rb +10 -2
- data/lib/bioroebe/cleave_and_digest/trypsin.rb +104 -50
- data/lib/bioroebe/codon_tables/frequencies/parse_frequency_table.rb +2 -10
- data/lib/bioroebe/codons/codons.rb +1 -1
- data/lib/bioroebe/codons/convert_this_codon_to_that_aminoacid.rb +208 -59
- data/lib/bioroebe/codons/possible_codons_for_this_aminoacid.rb +1 -9
- data/lib/bioroebe/codons/show_codon_tables.rb +8 -3
- data/lib/bioroebe/codons/show_codon_usage.rb +15 -4
- data/lib/bioroebe/colours/rev.rb +4 -1
- data/lib/bioroebe/constants/aminoacids_and_proteins.rb +1 -0
- data/lib/bioroebe/constants/database_constants.rb +1 -1
- data/lib/bioroebe/constants/files_and_directories.rb +31 -4
- data/lib/bioroebe/constants/misc.rb +20 -0
- data/lib/bioroebe/constants/nucleotides.rb +7 -0
- data/lib/bioroebe/conversions/dna_to_aminoacid_sequence.rb +109 -39
- data/lib/bioroebe/count/count_amount_of_aminoacids.rb +3 -2
- data/lib/bioroebe/count/count_amount_of_nucleotides.rb +3 -0
- data/lib/bioroebe/cpp +1 -0
- data/lib/bioroebe/crystal/README.md +2 -0
- data/lib/bioroebe/crystal/to_rna.cr +19 -0
- data/lib/bioroebe/data/README.md +11 -8
- data/lib/bioroebe/data/electron_microscopy/pos_example.pos +396 -0
- data/lib/bioroebe/data/electron_microscopy/test_particles.star +36 -0
- data/lib/bioroebe/data/fasta/human/Homo_sapiens_hemoglobin_subunit_alpha_HBB_mRNA.fasta +9 -0
- data/lib/bioroebe/data/fasta/human/Homo_sapiens_hemoglobin_subunit_beta_HBB_mRNA.fasta +8 -0
- data/lib/bioroebe/data/fasta/human/README.md +2 -0
- data/lib/bioroebe/dotplots/advanced_dotplot.rb +1 -1
- data/lib/bioroebe/electron_microscopy/coordinate_analyzer.rb +15 -18
- data/lib/bioroebe/{fasta_and_fastq/parse_fasta/run.rb → electron_microscopy/electron_microscopy_module.rb} +16 -8
- data/lib/bioroebe/electron_microscopy/fix_pos_file.rb +1 -9
- data/lib/bioroebe/electron_microscopy/flipy.rb +83 -0
- data/lib/bioroebe/electron_microscopy/parse_coordinates.rb +2 -10
- data/lib/bioroebe/electron_microscopy/read_file_xmd.rb +1 -9
- data/lib/bioroebe/electron_microscopy/simple_star_file_generator.rb +4 -9
- data/lib/bioroebe/enzymes/has_this_restriction_enzyme.rb +10 -3
- data/lib/bioroebe/enzymes/restriction_enzyme.rb +23 -1
- data/lib/bioroebe/enzymes/restriction_enzymes/statistics.rb +65 -0
- data/lib/bioroebe/fasta_and_fastq/autocorrect_the_name_of_this_fasta_file.rb +1 -9
- data/lib/bioroebe/fasta_and_fastq/compact_fasta_file/compact_fasta_file.rb +7 -9
- data/lib/bioroebe/fasta_and_fastq/fasta_defline/fasta_defline.rb +1 -5
- data/lib/bioroebe/fasta_and_fastq/fasta_to_yaml/fasta_to_yaml.rb +81 -0
- data/lib/bioroebe/fasta_and_fastq/parse_fasta/parse_fasta.rb +1518 -7
- data/lib/bioroebe/fasta_and_fastq/return_fasta_subsection_of_this_file.rb +11 -2
- data/lib/bioroebe/fasta_and_fastq/show_fasta_headers.rb +27 -12
- data/lib/bioroebe/fasta_and_fastq/simplify_fasta_header/simplify_fasta_header.rb +1 -5
- data/lib/bioroebe/fasta_and_fastq/split_this_fasta_file_into_chromosomes/constants.rb +0 -5
- data/lib/bioroebe/genome/README.md +4 -0
- data/lib/bioroebe/genome/genome.rb +130 -0
- data/lib/bioroebe/genomes/genome_pattern.rb +3 -9
- data/lib/bioroebe/gui/gtk +1 -0
- data/lib/bioroebe/gui/gtk3/alignment/alignment.rb +106 -137
- data/lib/bioroebe/gui/gtk3/aminoacid_composition/aminoacid_composition.rb +27 -61
- data/lib/bioroebe/gui/gtk3/aminoacid_composition/customized_dialog.rb +1 -1
- data/lib/bioroebe/gui/gtk3/blosum_matrix_viewer/blosum_matrix_viewer.rb +1 -2
- data/lib/bioroebe/gui/gtk3/calculate_cell_numbers_of_bacteria/calculate_cell_numbers_of_bacteria.rb +1 -2
- data/lib/bioroebe/gui/gtk3/controller/controller.rb +46 -29
- data/lib/bioroebe/gui/gtk3/dna_to_aminoacid_widget/dna_to_aminoacid_widget.rb +77 -52
- data/lib/bioroebe/gui/gtk3/dna_to_reverse_complement_widget/dna_to_reverse_complement_widget.rb +1 -2
- data/lib/bioroebe/gui/gtk3/fasta_table_widget/fasta_table_widget.rb +100 -23
- data/lib/bioroebe/gui/gtk3/format_converter/format_converter.rb +1 -2
- data/lib/bioroebe/gui/gtk3/gene/gene.rb +1 -2
- data/lib/bioroebe/gui/gtk3/hamming_distance/hamming_distance.rb +43 -30
- data/lib/bioroebe/gui/gtk3/levensthein_distance/levensthein_distance.rb +1 -2
- data/lib/bioroebe/gui/gtk3/nucleotide_analyser/nucleotide_analyser.rb +120 -73
- data/lib/bioroebe/gui/gtk3/primer_design_widget/primer_design_widget.rb +1 -2
- data/lib/bioroebe/gui/gtk3/protein_to_DNA/protein_to_DNA.rb +19 -20
- data/lib/bioroebe/gui/gtk3/random_sequence/random_sequence.rb +20 -13
- data/lib/bioroebe/gui/gtk3/restriction_enzymes/restriction_enzymes.rb +1 -2
- data/lib/bioroebe/gui/gtk3/show_codon_table/misc.rb +97 -22
- data/lib/bioroebe/gui/gtk3/show_codon_table/show_codon_table.rb +3 -73
- data/lib/bioroebe/gui/gtk3/show_codon_usage/show_codon_usage.rb +1 -2
- data/lib/bioroebe/gui/gtk3/sizeseq/sizeseq.rb +1 -2
- data/lib/bioroebe/gui/gtk3/three_to_one/three_to_one.rb +1 -2
- data/lib/bioroebe/gui/gtk3/www_finder/www_finder.rb +1 -2
- data/lib/bioroebe/gui/javafx/bioroebe/Bioroebe.class +0 -0
- data/lib/bioroebe/gui/javafx/bioroebe/Bioroebe.java +104 -0
- data/lib/bioroebe/gui/javafx/bioroebe.jar +0 -0
- data/lib/bioroebe/gui/javafx/bioroebe.mf +1 -0
- data/lib/bioroebe/gui/javafx/module-info.class +0 -0
- data/lib/bioroebe/gui/javafx/module-info.java +5 -0
- data/lib/bioroebe/gui/jruby/alignment/alignment.rb +165 -0
- data/lib/bioroebe/gui/jruby/aminoacid_composition/aminoacid_composition.rb +166 -0
- data/lib/bioroebe/gui/libui/alignment/alignment.rb +3 -1
- data/lib/bioroebe/gui/libui/controller/controller.rb +116 -0
- data/lib/bioroebe/gui/libui/random_sequence/random_sequence.rb +18 -2
- data/lib/bioroebe/gui/libui/show_codon_table/show_codon_table.rb +2 -0
- data/lib/bioroebe/gui/libui/three_to_one/three_to_one.rb +8 -6
- data/lib/bioroebe/gui/shared_code/alignment/alignment_module.rb +102 -0
- data/lib/bioroebe/gui/shared_code/aminoacid_composition/aminoacid_composition_module.rb +94 -0
- data/lib/bioroebe/gui/shared_code/levensthein_distance/levensthein_distance_module.rb +18 -16
- data/lib/bioroebe/gui/shared_code/protein_to_DNA/protein_to_DNA_module.rb +14 -14
- data/lib/bioroebe/gui/swing/three_to_one/ThreeToOne$1.class +0 -0
- data/lib/bioroebe/gui/swing/three_to_one/ThreeToOne$CloseListener.class +0 -0
- data/lib/bioroebe/gui/swing/three_to_one/ThreeToOne.class +0 -0
- data/lib/bioroebe/gui/swing/three_to_one/ThreeToOne.java +141 -0
- data/lib/bioroebe/images/FORWARD_PRIMER.png +0 -0
- data/lib/bioroebe/images/REVERSE_PRIMER.png +0 -0
- data/lib/bioroebe/images/images.html +29845 -0
- data/lib/bioroebe/java/README.md +5 -0
- data/lib/bioroebe/java/bioroebe/AllInOne.java +1 -0
- data/lib/bioroebe/java/bioroebe/Base.class +0 -0
- data/lib/bioroebe/java/bioroebe/Base.java +39 -5
- data/lib/bioroebe/java/bioroebe/IsPalindrome.java +23 -5
- data/lib/bioroebe/java/bioroebe/SanitizeNucleotideSequence.java +0 -0
- data/lib/bioroebe/java/bioroebe/Sequence.java +28 -3
- data/lib/bioroebe/java/bioroebe/ToCamelcase.class +0 -0
- data/lib/bioroebe/java/bioroebe/ToCamelcase.java +16 -4
- data/lib/bioroebe/java/bioroebe/ToRNA.java +43 -0
- data/lib/bioroebe/java/bioroebe/ToplevelMethods.java +6 -0
- data/lib/bioroebe/java/bioroebe/{BisulfiteTreatment.class → src/BisulfiteTreatment.class} +0 -0
- data/lib/bioroebe/java/bioroebe/{Codons.class → src/Codons.class} +0 -0
- data/lib/bioroebe/java/bioroebe/src/Codons.java +35 -0
- data/lib/bioroebe/java/bioroebe/src/Commandline.class +0 -0
- data/lib/bioroebe/java/bioroebe/src/Commandline.java +101 -0
- data/lib/bioroebe/java/bioroebe/{Esystem.class → src/Esystem.class} +0 -0
- data/lib/bioroebe/java/bioroebe/{Esystem.java → src/Esystem.java} +6 -1
- data/lib/bioroebe/java/bioroebe/{GenerateRandomDnaSequence.class → src/GenerateRandomDnaSequence.class} +0 -0
- data/lib/bioroebe/java/bioroebe/{GenerateRandomDnaSequence.java → src/GenerateRandomDnaSequence.java} +8 -2
- data/lib/bioroebe/java/bioroebe/src/PartnerNucleotide.class +0 -0
- data/lib/bioroebe/java/bioroebe/src/PartnerNucleotide.java +56 -0
- data/lib/bioroebe/java/bioroebe/{RemoveFile.java → src/RemoveFile.java} +10 -4
- data/lib/bioroebe/java/bioroebe/{RemoveNumbers.class → src/RemoveNumbers.class} +0 -0
- data/lib/bioroebe/java/bioroebe/{RemoveNumbers.java → src/RemoveNumbers.java} +1 -0
- data/lib/bioroebe/java/bioroebe/src/toplevel_methods/BaseComposition.class +0 -0
- data/lib/bioroebe/java/bioroebe/src/toplevel_methods/BaseComposition.java +75 -0
- data/lib/bioroebe/misc/ruler.rb +11 -2
- data/lib/bioroebe/nucleotides/most_likely_nucleotide_sequence_for_this_aminoacid_sequence.rb +1 -9
- data/lib/bioroebe/nucleotides/sanitize_nucleotide_sequence.rb +59 -18
- data/lib/bioroebe/nucleotides/show_nucleotide_sequence.rb +7 -7
- data/lib/bioroebe/parsers/genbank_parser.rb +347 -26
- data/lib/bioroebe/parsers/gff.rb +1 -9
- data/lib/bioroebe/patterns/scan_for_repeat.rb +1 -5
- data/lib/bioroebe/pdb/fetch_fasta_sequence_from_pdb.rb +1 -9
- data/lib/bioroebe/pdb/parse_mmCIF_file.rb +1 -9
- data/lib/bioroebe/pdb/parse_pdb_file.rb +4 -10
- data/lib/bioroebe/project/project.rb +1 -1
- data/lib/bioroebe/python/README.md +1 -0
- data/lib/bioroebe/python/__pycache__/mymodule.cpython-39.pyc +0 -0
- data/lib/bioroebe/python/gui/gtk3/all_in_one.css +4 -0
- data/lib/bioroebe/python/gui/gtk3/all_in_one.py +59 -0
- data/lib/bioroebe/python/gui/gtk3/widget1.py +20 -0
- data/lib/bioroebe/python/gui/tkinter/all_in_one.py +91 -0
- data/lib/bioroebe/python/mymodule.py +8 -0
- data/lib/bioroebe/python/protein_to_dna.py +33 -0
- data/lib/bioroebe/python/shell/shell.py +19 -0
- data/lib/bioroebe/python/to_rna.py +14 -0
- data/lib/bioroebe/python/toplevel_methods/convert_dna_to_aminoacid_sequence.py +137 -0
- data/lib/bioroebe/python/toplevel_methods/esystem.py +12 -0
- data/lib/bioroebe/python/toplevel_methods/open_in_browser.py +20 -0
- data/lib/bioroebe/python/toplevel_methods/palindromes.py +52 -0
- data/lib/bioroebe/python/toplevel_methods/rds.py +13 -0
- data/lib/bioroebe/python/toplevel_methods/shuffleseq.py +23 -0
- data/lib/bioroebe/python/toplevel_methods/three_delimiter.py +37 -0
- data/lib/bioroebe/python/toplevel_methods/time_and_date.py +43 -0
- data/lib/bioroebe/python/toplevel_methods/to_camelcase.py +21 -0
- data/lib/bioroebe/requires/require_cleave_and_digest.rb +3 -1
- data/lib/bioroebe/requires/require_the_bioroebe_project.rb +3 -1
- data/lib/bioroebe/sequence/alignment.rb +14 -4
- data/lib/bioroebe/sequence/dna.rb +1 -0
- data/lib/bioroebe/sequence/nucleotide_module/nucleotide_module.rb +28 -25
- data/lib/bioroebe/sequence/protein.rb +105 -3
- data/lib/bioroebe/sequence/rna.rb +220 -0
- data/lib/bioroebe/sequence/sequence.rb +128 -40
- data/lib/bioroebe/shell/menu.rb +3815 -3696
- data/lib/bioroebe/shell/misc.rb +9019 -3133
- data/lib/bioroebe/shell/readline/readline.rb +1 -1
- data/lib/bioroebe/shell/shell.rb +1137 -28
- data/lib/bioroebe/siRNA/siRNA.rb +81 -1
- data/lib/bioroebe/string_matching/find_longest_substring.rb +3 -2
- data/lib/bioroebe/string_matching/hamming_distance.rb +1 -9
- data/lib/bioroebe/taxonomy/class_methods.rb +3 -8
- data/lib/bioroebe/taxonomy/constants.rb +4 -3
- data/lib/bioroebe/taxonomy/edit.rb +2 -1
- data/lib/bioroebe/taxonomy/help/help.rb +10 -10
- data/lib/bioroebe/taxonomy/help/helpline.rb +2 -2
- data/lib/bioroebe/taxonomy/info/check_available.rb +15 -9
- data/lib/bioroebe/taxonomy/info/info.rb +18 -11
- data/lib/bioroebe/taxonomy/info/is_dna.rb +46 -36
- data/lib/bioroebe/taxonomy/interactive.rb +140 -104
- data/lib/bioroebe/taxonomy/menu.rb +27 -18
- data/lib/bioroebe/taxonomy/parse_fasta.rb +3 -1
- data/lib/bioroebe/taxonomy/shared.rb +1 -0
- data/lib/bioroebe/taxonomy/taxonomy.rb +1 -0
- data/lib/bioroebe/toplevel_methods/aminoacids_and_proteins.rb +31 -24
- data/lib/bioroebe/toplevel_methods/colourize_related_methods.rb +164 -0
- data/lib/bioroebe/toplevel_methods/databases.rb +1 -1
- data/lib/bioroebe/toplevel_methods/digest.rb +18 -8
- data/lib/bioroebe/toplevel_methods/fasta_and_fastq.rb +107 -63
- data/lib/bioroebe/toplevel_methods/file_and_directory_related_actions.rb +14 -2
- data/lib/bioroebe/toplevel_methods/frequencies.rb +8 -1
- data/lib/bioroebe/toplevel_methods/misc.rb +175 -11
- data/lib/bioroebe/toplevel_methods/nucleotides.rb +118 -46
- data/lib/bioroebe/toplevel_methods/open_in_browser.rb +2 -0
- data/lib/bioroebe/toplevel_methods/palindromes.rb +75 -47
- data/lib/bioroebe/toplevel_methods/taxonomy.rb +3 -3
- data/lib/bioroebe/toplevel_methods/to_camelcase.rb +5 -0
- data/lib/bioroebe/utility_scripts/align_open_reading_frames.rb +1 -9
- data/lib/bioroebe/utility_scripts/check_for_mismatches/check_for_mismatches.rb +1 -9
- data/lib/bioroebe/utility_scripts/compacter/compacter.rb +251 -0
- data/lib/bioroebe/utility_scripts/compseq/compseq.rb +1 -9
- data/lib/bioroebe/utility_scripts/consensus_sequence.rb +6 -6
- data/lib/bioroebe/utility_scripts/create_batch_entrez_file.rb +1 -9
- data/lib/bioroebe/utility_scripts/dot_alignment.rb +1 -9
- data/lib/bioroebe/utility_scripts/move_file_to_its_correct_location.rb +1 -4
- data/lib/bioroebe/utility_scripts/parse_taxonomy.rb +2 -2
- data/lib/bioroebe/utility_scripts/permutations.rb +36 -9
- data/lib/bioroebe/utility_scripts/showorf/constants.rb +0 -5
- data/lib/bioroebe/utility_scripts/showorf/reset.rb +1 -4
- data/lib/bioroebe/version/version.rb +2 -2
- data/lib/bioroebe/www/embeddable_interface.rb +121 -58
- data/lib/bioroebe/www/sinatra/sinatra.rb +186 -71
- data/lib/bioroebe/yaml/aminoacids/amino_acids_long_name_to_one_letter.yml +2 -2
- data/lib/bioroebe/yaml/aminoacids/weight_of_common_proteins.yml +17 -17
- data/lib/bioroebe/yaml/configuration/browser.yml +1 -1
- data/lib/bioroebe/yaml/configuration/temp_dir.yml +1 -1
- data/lib/bioroebe/yaml/consensus_sequences/consensus_sequences.yml +1 -0
- data/lib/bioroebe/yaml/genomes/README.md +3 -4
- data/lib/bioroebe/yaml/nucleotides/nucleotides.yml +5 -0
- data/lib/bioroebe/yaml/restriction_enzymes/restriction_enzymes.yml +57 -57
- data/spec/README.md +6 -0
- data/spec/project_wide_specification/classes.md +5 -0
- metadata +107 -70
- data/doc/setup.rb +0 -1655
- data/lib/bioroebe/fasta_and_fastq/parse_fasta/constants.rb +0 -50
- data/lib/bioroebe/fasta_and_fastq/parse_fasta/initialize.rb +0 -86
- data/lib/bioroebe/fasta_and_fastq/parse_fasta/menu.rb +0 -117
- data/lib/bioroebe/fasta_and_fastq/parse_fasta/misc.rb +0 -981
- data/lib/bioroebe/fasta_and_fastq/parse_fasta/report.rb +0 -156
- data/lib/bioroebe/fasta_and_fastq/parse_fasta/reset.rb +0 -128
- data/lib/bioroebe/genbank/genbank_parser.rb +0 -291
- data/lib/bioroebe/java/bioroebe/AllInOne.class +0 -0
- data/lib/bioroebe/java/bioroebe/Cat.class +0 -0
- data/lib/bioroebe/java/bioroebe/Codons.java +0 -22
- data/lib/bioroebe/java/bioroebe/IsPalindrome.class +0 -0
- data/lib/bioroebe/java/bioroebe/PartnerNucleotide.class +0 -0
- data/lib/bioroebe/java/bioroebe/PartnerNucleotide.java +0 -19
- data/lib/bioroebe/java/bioroebe/SanitizeNucleotideSequence.class +0 -0
- data/lib/bioroebe/java/bioroebe/ToplevelMethods.class +0 -0
- data/lib/bioroebe/java/bioroebe.jar +0 -0
- data/lib/bioroebe/shell/add.rb +0 -108
- data/lib/bioroebe/shell/assign.rb +0 -360
- data/lib/bioroebe/shell/chop_and_cut.rb +0 -281
- data/lib/bioroebe/shell/constants.rb +0 -166
- data/lib/bioroebe/shell/download.rb +0 -335
- data/lib/bioroebe/shell/enable_and_disable.rb +0 -158
- data/lib/bioroebe/shell/enzymes.rb +0 -310
- data/lib/bioroebe/shell/fasta.rb +0 -345
- data/lib/bioroebe/shell/gtk.rb +0 -76
- data/lib/bioroebe/shell/history.rb +0 -132
- data/lib/bioroebe/shell/initialize.rb +0 -217
- data/lib/bioroebe/shell/loop.rb +0 -74
- data/lib/bioroebe/shell/prompt.rb +0 -107
- data/lib/bioroebe/shell/random.rb +0 -289
- data/lib/bioroebe/shell/reset.rb +0 -335
- data/lib/bioroebe/shell/scan_and_parse.rb +0 -135
- data/lib/bioroebe/shell/search.rb +0 -337
- data/lib/bioroebe/shell/sequences.rb +0 -200
- data/lib/bioroebe/shell/show_report_and_display.rb +0 -2901
- data/lib/bioroebe/shell/startup.rb +0 -127
- data/lib/bioroebe/shell/taxonomy.rb +0 -14
- data/lib/bioroebe/shell/tk.rb +0 -23
- data/lib/bioroebe/shell/user_input.rb +0 -88
- data/lib/bioroebe/shell/xorg.rb +0 -45
- data/lib/bioroebe/utility_scripts/compacter.rb +0 -131
- /data/lib/bioroebe/java/bioroebe/{BisulfiteTreatment.java → src/BisulfiteTreatment.java} +0 -0
- /data/lib/bioroebe/java/bioroebe/{RemoveFile.class → src/RemoveFile.class} +0 -0
@@ -107,7 +107,7 @@ class ProteinToDNA < ::Gtk::Box # === Bioroebe::GUI::Gtk::ProteinToDNA
|
|
107
107
|
scrolled_window_right.clear_background
|
108
108
|
scrolled_window_right.width_height(300, 300)
|
109
109
|
scrolled_window_right.bblack1
|
110
|
-
scrolled_window_right.
|
110
|
+
scrolled_window_right.mar2px
|
111
111
|
# ======================================================================= #
|
112
112
|
# === scrolled_window_left
|
113
113
|
# ======================================================================= #
|
@@ -115,7 +115,7 @@ class ProteinToDNA < ::Gtk::Box # === Bioroebe::GUI::Gtk::ProteinToDNA
|
|
115
115
|
scrolled_window_left.clear_background
|
116
116
|
scrolled_window_left.width_height(300, 300)
|
117
117
|
scrolled_window_left.bblack1
|
118
|
-
scrolled_window_left.
|
118
|
+
scrolled_window_left.mar2px
|
119
119
|
top_hpaned = gtk_hpaned(
|
120
120
|
scrolled_window_left,
|
121
121
|
scrolled_window_right
|
@@ -126,22 +126,6 @@ class ProteinToDNA < ::Gtk::Box # === Bioroebe::GUI::Gtk::ProteinToDNA
|
|
126
126
|
@dataset[:top_hbox] = top_hpaned
|
127
127
|
end
|
128
128
|
|
129
|
-
# ========================================================================= #
|
130
|
-
# === connect_skeleton (connect tag)
|
131
|
-
# ========================================================================= #
|
132
|
-
def connect_skeleton
|
133
|
-
abort_on_exception
|
134
|
-
@main_vbox.maximal(@dataset[:top_hbox], 4)
|
135
|
-
@main_vbox.maximal(@middle_bar)
|
136
|
-
button_box = button_box(
|
137
|
-
@dataset[:backtrack_button],
|
138
|
-
@dataset[:quit_button]
|
139
|
-
)
|
140
|
-
button_box.vertical_layout
|
141
|
-
@main_vbox.minimal(button_box)
|
142
|
-
add(@main_vbox)
|
143
|
-
end
|
144
|
-
|
145
129
|
# ========================================================================= #
|
146
130
|
# === create_left_buffer
|
147
131
|
# ========================================================================= #
|
@@ -161,6 +145,22 @@ class ProteinToDNA < ::Gtk::Box # === Bioroebe::GUI::Gtk::ProteinToDNA
|
|
161
145
|
super()
|
162
146
|
end
|
163
147
|
|
148
|
+
# ========================================================================= #
|
149
|
+
# === connect_skeleton (connect tag)
|
150
|
+
# ========================================================================= #
|
151
|
+
def connect_skeleton
|
152
|
+
abort_on_exception
|
153
|
+
@main_vbox.maximal(@dataset[:top_hbox], 4)
|
154
|
+
@main_vbox.maximal(@middle_bar)
|
155
|
+
button_box = button_box(
|
156
|
+
@dataset[:backtrack_button],
|
157
|
+
@dataset[:quit_button]
|
158
|
+
)
|
159
|
+
button_box.vertical_layout
|
160
|
+
@main_vbox.minimal(button_box)
|
161
|
+
add(@main_vbox)
|
162
|
+
end
|
163
|
+
|
164
164
|
# ========================================================================= #
|
165
165
|
# === Bioroebe::GUI::Gtk::ProteinToDNA.run
|
166
166
|
# ========================================================================= #
|
@@ -171,8 +171,7 @@ class ProteinToDNA < ::Gtk::Box # === Bioroebe::GUI::Gtk::ProteinToDNA
|
|
171
171
|
_ = ::Bioroebe::GUI::Gtk::ProteinToDNA.new(i)
|
172
172
|
r = ::Gtk.run
|
173
173
|
r << _
|
174
|
-
r.
|
175
|
-
r.top_left_then_run
|
174
|
+
r.automatic_top_left_then_run
|
176
175
|
end; self.instance_eval { alias run_gtk3_widget run } # === Bioroebe::GUI::Gtk::ProteinToDNA.run_gtk3_widget
|
177
176
|
|
178
177
|
end; end; end; end
|
@@ -43,12 +43,12 @@ class RandomSequence < ::Gtk::Box # === Bioroebe::GUI::Gtk::RandomSequence
|
|
43
43
|
# ========================================================================= #
|
44
44
|
# === WIDTH
|
45
45
|
# ========================================================================= #
|
46
|
-
WIDTH
|
46
|
+
WIDTH = '45% or minimum 1200px'
|
47
47
|
|
48
48
|
# ========================================================================= #
|
49
49
|
# === HEIGHT
|
50
50
|
# ========================================================================= #
|
51
|
-
HEIGHT =
|
51
|
+
HEIGHT = '45% or minimum 980px'
|
52
52
|
|
53
53
|
# ========================================================================= #
|
54
54
|
# === USE_THIS_HEADER
|
@@ -478,8 +478,20 @@ class RandomSequence < ::Gtk::Box # === Bioroebe::GUI::Gtk::RandomSequence
|
|
478
478
|
create_the_entries
|
479
479
|
end
|
480
480
|
|
481
|
+
# ========================================================================= #
|
482
|
+
# === handle_CSS
|
483
|
+
# ========================================================================= #
|
484
|
+
def handle_CSS
|
485
|
+
use_gtk_paradise_project_css_file
|
486
|
+
use_project_css_file
|
487
|
+
apply_the_CSS
|
488
|
+
end
|
489
|
+
|
481
490
|
# ========================================================================= #
|
482
491
|
# === do_generate_a_random_sequence
|
492
|
+
#
|
493
|
+
# This is the method that will be run whenever a new random aminoacid
|
494
|
+
# sequence is to be generated.
|
483
495
|
# ========================================================================= #
|
484
496
|
def do_generate_a_random_sequence(
|
485
497
|
n_aminoacids = :default
|
@@ -521,18 +533,14 @@ class RandomSequence < ::Gtk::Box # === Bioroebe::GUI::Gtk::RandomSequence
|
|
521
533
|
# list-store.
|
522
534
|
# ======================================================================= #
|
523
535
|
array = array1.zip(array2) # Zip it up with 0-values here.
|
536
|
+
# ======================================================================= #
|
537
|
+
# Next, populate the liststore with the new data - since as of July
|
538
|
+
# 2022 we will sort it based on most aminoacids though:
|
539
|
+
# ======================================================================= #
|
540
|
+
array = array.sort_by {|a, b| b }.reverse # This sorts by highest first.
|
524
541
|
::Gtk.populate_this_liststore(@list_store, array)
|
525
542
|
end
|
526
543
|
|
527
|
-
# ========================================================================= #
|
528
|
-
# === handle_CSS
|
529
|
-
# ========================================================================= #
|
530
|
-
def handle_CSS
|
531
|
-
use_gtk_paradise_project_css_file
|
532
|
-
use_project_css_file
|
533
|
-
apply_the_CSS
|
534
|
-
end
|
535
|
-
|
536
544
|
# ========================================================================= #
|
537
545
|
# === run
|
538
546
|
# ========================================================================= #
|
@@ -553,10 +561,9 @@ class RandomSequence < ::Gtk::Box # === Bioroebe::GUI::Gtk::RandomSequence
|
|
553
561
|
_ = ::Bioroebe::GUI::Gtk::RandomSequence.new(i)
|
554
562
|
r = ::Gtk.run
|
555
563
|
r << _
|
556
|
-
r.automatic_size_then_automatic_title
|
557
564
|
r.background_colour :white
|
558
565
|
r.easy_exit
|
559
|
-
r.
|
566
|
+
r.automatic_top_left_then_run
|
560
567
|
end; self.instance_eval { alias run start_gui_application } # === RandomSequence.run
|
561
568
|
|
562
569
|
end; end; end; end
|
@@ -297,8 +297,7 @@ class RestrictionEnzymes < ::Gtk::Box # === Bioroebe::GUI::Gtk::RestrictionEnzym
|
|
297
297
|
r.add_shortcut(3, 'focus_entry(3)', :alt)
|
298
298
|
r.add_shortcut(4, 'focus_entry(4)', :alt)
|
299
299
|
r.background_colour :whitesmoke
|
300
|
-
r.
|
301
|
-
r.top_left_then_run
|
300
|
+
r.automatic_top_left_then_run
|
302
301
|
end; self.instance_eval { alias start_gui_application run } # === RestrictionEnzymesModule.start_gui_application
|
303
302
|
self.instance_eval { alias run_gtk3_widget run } # === RestrictionEnzymesModule.run_gtk3_widget
|
304
303
|
|
@@ -12,16 +12,11 @@ module GUI
|
|
12
12
|
|
13
13
|
module Gtk
|
14
14
|
|
15
|
-
class ShowCodonTable < ::Gtk::
|
15
|
+
class ShowCodonTable < ::Gtk::BaseModuleBox # === Bioroebe::GUI::Gtk::ShowCodonTable
|
16
16
|
|
17
17
|
require 'bioroebe/gui/shared_code/show_codon_table/show_codon_table_module.rb'
|
18
18
|
include Bioroebe::GUI::ShowCodonTableModule
|
19
19
|
|
20
|
-
# ========================================================================= #
|
21
|
-
# === NAMESPACE
|
22
|
-
# ========================================================================= #
|
23
|
-
NAMESPACE = inspect
|
24
|
-
|
25
20
|
# ========================================================================= #
|
26
21
|
# === USE_THIS_FONT
|
27
22
|
#
|
@@ -35,10 +30,11 @@ class ShowCodonTable < ::Gtk::Box # === Bioroebe::GUI::Gtk::ShowCodonTable
|
|
35
30
|
def reset
|
36
31
|
reset_the_internal_variables
|
37
32
|
reset_the_shared_module
|
33
|
+
infer_the_namespace
|
38
34
|
# ======================================================================= #
|
39
35
|
# === @configuration
|
40
36
|
# ======================================================================= #
|
41
|
-
@configuration = [true, __dir__,
|
37
|
+
@configuration = [true, __dir__, namespace?]
|
42
38
|
set_use_this_font(USE_THIS_FONT)
|
43
39
|
handle_CSS
|
44
40
|
infer_the_size_automatically
|
@@ -384,20 +380,6 @@ class ShowCodonTable < ::Gtk::Box # === Bioroebe::GUI::Gtk::ShowCodonTable
|
|
384
380
|
@scrolled_window.use_this_font = smaller_font?
|
385
381
|
end
|
386
382
|
|
387
|
-
# ========================================================================= #
|
388
|
-
# === Bioroebe::GUI::Gtk::ShowCodonTable.run
|
389
|
-
# ========================================================================= #
|
390
|
-
def self.run(
|
391
|
-
i = ARGV
|
392
|
-
)
|
393
|
-
require 'gtk_paradise/run'
|
394
|
-
_ = ::Bioroebe::GUI::Gtk::ShowCodonTable.new(i)
|
395
|
-
r = ::Gtk.run
|
396
|
-
r << _
|
397
|
-
r.automatic_size_then_automatic_title
|
398
|
-
r.top_left_then_run
|
399
|
-
end
|
400
|
-
|
401
383
|
# ========================================================================= #
|
402
384
|
# === create_the_combo_box_containing_the_available_codon_tables
|
403
385
|
#
|
@@ -450,7 +432,7 @@ class ShowCodonTable < ::Gtk::Box # === Bioroebe::GUI::Gtk::ShowCodonTable
|
|
450
432
|
# This is the "title" bar, the main header, on top of the widget.
|
451
433
|
# ========================================================================= #
|
452
434
|
def create_the_title_bar
|
453
|
-
hbox =
|
435
|
+
hbox = create_hbox
|
454
436
|
# ======================================================================= #
|
455
437
|
# For the following gtk-label, always keep a leading ' '.
|
456
438
|
# ======================================================================= #
|
@@ -537,6 +519,14 @@ class ShowCodonTable < ::Gtk::Box # === Bioroebe::GUI::Gtk::ShowCodonTable
|
|
537
519
|
def handle_CSS
|
538
520
|
use_gtk_paradise_project_css_file
|
539
521
|
use_project_css_file
|
522
|
+
more_CSS '
|
523
|
+
tooltip {
|
524
|
+
padding: 25px;
|
525
|
+
border-width: 3px;
|
526
|
+
border-style: dotted;
|
527
|
+
border-color: orange;
|
528
|
+
}
|
529
|
+
'
|
540
530
|
apply_the_CSS
|
541
531
|
end
|
542
532
|
|
@@ -553,4 +543,89 @@ class ShowCodonTable < ::Gtk::Box # === Bioroebe::GUI::Gtk::ShowCodonTable
|
|
553
543
|
end
|
554
544
|
end
|
555
545
|
|
546
|
+
# ========================================================================= #
|
547
|
+
# === create_the_box_containing_the_label_and_the_combobox
|
548
|
+
# ========================================================================= #
|
549
|
+
def create_the_box_containing_the_label_and_the_combobox
|
550
|
+
# ======================================================================= #
|
551
|
+
# === @label_and_combo_box
|
552
|
+
# ======================================================================= #
|
553
|
+
@label_and_combo_box = gtk_vbox
|
554
|
+
@label_and_combo_box.minimal(
|
555
|
+
left_aligned_label(
|
556
|
+
' Select the codon table (default: <b>eukaryotes</b>)'
|
557
|
+
), 8
|
558
|
+
)
|
559
|
+
hbox = gtk_hbox
|
560
|
+
hbox.minimal(@combo_box_containing_the_registered_codon_tables, 2)
|
561
|
+
@label_and_combo_box.minimal(
|
562
|
+
hbox, 2
|
563
|
+
)
|
564
|
+
end
|
565
|
+
|
566
|
+
# ========================================================================= #
|
567
|
+
# === return_widget_containing_the_toggle_buttons
|
568
|
+
#
|
569
|
+
# These are the four "toggle" buttons on the right side of the widget.
|
570
|
+
# ========================================================================= #
|
571
|
+
def return_widget_containing_the_toggle_buttons
|
572
|
+
hbox = create_hbox
|
573
|
+
hbox.pad8px
|
574
|
+
@button1 = create_bold_button('T')
|
575
|
+
@button1.foreground_colour = :royalblue
|
576
|
+
@button1.bblack1
|
577
|
+
@button1.on_clicked {
|
578
|
+
change_label(@button1)
|
579
|
+
}
|
580
|
+
@button2 = create_bold_button('T')
|
581
|
+
@button2.foreground_colour = :royalblue
|
582
|
+
@button2.bblack1
|
583
|
+
@button2.on_clicked {
|
584
|
+
change_label(@button2)
|
585
|
+
}
|
586
|
+
@button3 = create_bold_button('T')
|
587
|
+
@button3.foreground_colour = :royalblue
|
588
|
+
@button3.bblack1
|
589
|
+
@button3.on_clicked {
|
590
|
+
change_label(@button3)
|
591
|
+
}
|
592
|
+
# ======================================================================= #
|
593
|
+
# Next comes the button that will also show '*'.
|
594
|
+
# ======================================================================= #
|
595
|
+
@button4 = create_bold_button('T')
|
596
|
+
@button4.foreground_colour = :crimson
|
597
|
+
@button4.bblack1
|
598
|
+
@button4.set_name('custom_tooltip')
|
599
|
+
@button4.hint =
|
600
|
+
"\nThis button is special in that it will denote "\
|
601
|
+
"the current aminoacid. The other three buttons "\
|
602
|
+
"represent the codon at different positions.\n\n"\
|
603
|
+
"A '<b>*</b>' indicates a stop-codon.\n"
|
604
|
+
# button4.on_clicked {
|
605
|
+
# change_label(button4)
|
606
|
+
# }
|
607
|
+
bbox = gtk_button_box_spread(
|
608
|
+
@button1,
|
609
|
+
@button2,
|
610
|
+
@button3
|
611
|
+
)
|
612
|
+
hbox.minimal(bbox, 2)
|
613
|
+
hbox.minimal(gtk_button_box_spread(@button4), 10)
|
614
|
+
return hbox
|
615
|
+
end
|
616
|
+
|
617
|
+
# ========================================================================= #
|
618
|
+
# === Bioroebe::GUI::Gtk::ShowCodonTable.run
|
619
|
+
# ========================================================================= #
|
620
|
+
def self.run(
|
621
|
+
i = ARGV
|
622
|
+
)
|
623
|
+
require 'gtk_paradise/run'
|
624
|
+
_ = ::Bioroebe::GUI::Gtk::ShowCodonTable.new(i)
|
625
|
+
r = ::Gtk.run
|
626
|
+
r << _
|
627
|
+
r.automatic_top_left_then_run
|
628
|
+
r.easy_exit
|
629
|
+
end
|
630
|
+
|
556
631
|
end; end; end; end
|
@@ -15,16 +15,13 @@ module GUI
|
|
15
15
|
|
16
16
|
module Gtk
|
17
17
|
|
18
|
-
class ShowCodonTable < ::Gtk::
|
18
|
+
class ShowCodonTable < ::Gtk::BaseModuleBox # === Bioroebe::GUI::Gtk::ShowCodonTable
|
19
19
|
|
20
20
|
require 'bioroebe/gui/gtk3/show_codon_table/misc.rb'
|
21
21
|
|
22
22
|
require 'bioroebe/codons/codon_tables.rb'
|
23
23
|
require 'bioroebe/constants/GUIs.rb'
|
24
24
|
|
25
|
-
require 'gtk_paradise/requires/require_the_base_module.rb'
|
26
|
-
include ::Gtk::BaseModule
|
27
|
-
|
28
25
|
# ========================================================================= #
|
29
26
|
# === initialize
|
30
27
|
# ========================================================================= #
|
@@ -42,73 +39,6 @@ class ShowCodonTable < ::Gtk::Box # === Bioroebe::GUI::Gtk::ShowCodonTable
|
|
42
39
|
run if run_already
|
43
40
|
end
|
44
41
|
|
45
|
-
# ========================================================================= #
|
46
|
-
# === return_widget_containing_the_toggle_buttons
|
47
|
-
#
|
48
|
-
# These are the four "toggle" buttons on the right side of the widget.
|
49
|
-
# ========================================================================= #
|
50
|
-
def return_widget_containing_the_toggle_buttons
|
51
|
-
hbox = gtk_hbox
|
52
|
-
hbox.pad8px
|
53
|
-
@button1 = gtk_bold_button('T')
|
54
|
-
@button1.foreground_colour = :royalblue
|
55
|
-
@button1.bblack1
|
56
|
-
@button1.on_clicked {
|
57
|
-
change_label(@button1)
|
58
|
-
}
|
59
|
-
@button2 = gtk_bold_button('T')
|
60
|
-
@button2.foreground_colour = :royalblue
|
61
|
-
@button2.bblack1
|
62
|
-
@button2.on_clicked {
|
63
|
-
change_label(@button2)
|
64
|
-
}
|
65
|
-
@button3 = gtk_bold_button('T')
|
66
|
-
@button3.foreground_colour = :royalblue
|
67
|
-
@button3.bblack1
|
68
|
-
@button3.on_clicked {
|
69
|
-
change_label(@button3)
|
70
|
-
}
|
71
|
-
@button4 = gtk_bold_button('T')
|
72
|
-
@button4.foreground_colour = :crimson
|
73
|
-
@button4.bblack1
|
74
|
-
@button4.hint =
|
75
|
-
"\nThis button is special in that it will denote "\
|
76
|
-
"the current aminoacid. The other three buttons "\
|
77
|
-
"represent the codon at different positions.\n\n"\
|
78
|
-
"A '*' indicates a stop-codon.\n"
|
79
|
-
# button4.on_clicked {
|
80
|
-
# change_label(button4)
|
81
|
-
# }
|
82
|
-
bbox = gtk_button_box_spread(
|
83
|
-
@button1,
|
84
|
-
@button2,
|
85
|
-
@button3
|
86
|
-
)
|
87
|
-
hbox.minimal(bbox, 2)
|
88
|
-
hbox.minimal(gtk_button_box_spread(@button4), 10)
|
89
|
-
return hbox
|
90
|
-
end
|
91
|
-
|
92
|
-
# ========================================================================= #
|
93
|
-
# === create_the_box_containing_the_label_and_the_combobox
|
94
|
-
# ========================================================================= #
|
95
|
-
def create_the_box_containing_the_label_and_the_combobox
|
96
|
-
# ======================================================================= #
|
97
|
-
# === @label_and_combo_box
|
98
|
-
# ======================================================================= #
|
99
|
-
@label_and_combo_box = gtk_vbox
|
100
|
-
@label_and_combo_box.minimal(
|
101
|
-
left_aligned_label(
|
102
|
-
' Select the codon table (default: <b>eukaryotes</b>)'
|
103
|
-
), 8
|
104
|
-
)
|
105
|
-
hbox = gtk_hbox
|
106
|
-
hbox.minimal(@combo_box_containing_the_registered_codon_tables, 2)
|
107
|
-
@label_and_combo_box.minimal(
|
108
|
-
hbox, 2
|
109
|
-
)
|
110
|
-
end
|
111
|
-
|
112
42
|
# ========================================================================= #
|
113
43
|
# === create_the_top_vbox
|
114
44
|
# ========================================================================= #
|
@@ -134,7 +64,7 @@ class ShowCodonTable < ::Gtk::Box # === Bioroebe::GUI::Gtk::ShowCodonTable
|
|
134
64
|
right_vbox.minimal(gtk_horizontal_spacer, 2)
|
135
65
|
right_vbox.minimal(return_widget_containing_the_toggle_buttons, 12)
|
136
66
|
_ = drag_it_left_to_right(left_vbox, right_vbox)
|
137
|
-
_.position =
|
67
|
+
_.position = width? / 4.5
|
138
68
|
main_box = can_be_dragged_up_and_down(
|
139
69
|
top_box?,
|
140
70
|
_
|
@@ -160,7 +90,7 @@ class ShowCodonTable < ::Gtk::Box # === Bioroebe::GUI::Gtk::ShowCodonTable
|
|
160
90
|
# === run (run tag)
|
161
91
|
# ========================================================================= #
|
162
92
|
def run
|
163
|
-
|
93
|
+
super()
|
164
94
|
clear_the_main_hash_before_syncing_the_dataset_onto_the_main_table
|
165
95
|
end
|
166
96
|
|
@@ -135,8 +135,7 @@ class ShowCodonUsage < ::Gtk::Box # === Bioroebe::GUI::Gtk::ShowCodonUsage
|
|
135
135
|
_ = ::Bioroebe::GUI::Gtk::ShowCodonUsage.new(i)
|
136
136
|
r = ::Gtk.run
|
137
137
|
r << _
|
138
|
-
r.
|
139
|
-
r.middle_then_run
|
138
|
+
r.automatic_middle_then_run
|
140
139
|
end
|
141
140
|
|
142
141
|
end; end; end; end
|
@@ -196,8 +196,7 @@ class Sizeseq < ::Gtk::Box # === Bioroebe::GUI::Gtk::Sizeseq
|
|
196
196
|
_ = ::Bioroebe::GUI::Gtk::Sizeseq.new(i)
|
197
197
|
r = ::Gtk.run
|
198
198
|
r << _
|
199
|
-
r.
|
200
|
-
r.top_left_then_run
|
199
|
+
r.automatic_top_left_then_run
|
201
200
|
end
|
202
201
|
|
203
202
|
end; end; end; end
|
@@ -221,8 +221,7 @@ class ThreeToOne < ::Gtk::Box # === Bioroebe::GUI::Gtk::ThreeToOne
|
|
221
221
|
_ = ::Bioroebe::GUI::Gtk::ThreeToOne.new(i)
|
222
222
|
r = ::Gtk.run
|
223
223
|
r << _
|
224
|
-
r.
|
225
|
-
r.top_left_then_run
|
224
|
+
r.automatic_top_left_then_run
|
226
225
|
end
|
227
226
|
|
228
227
|
# ========================================================================= #
|
@@ -357,8 +357,7 @@ class WwwFinder < ::Gtk::Box # === Bioroebe::GUI::Gtk::WwwFinder
|
|
357
357
|
r.add_shortcut(3, 'focus_entry(3)', :alt)
|
358
358
|
r.add_shortcut(4, 'focus_entry(4)', :alt)
|
359
359
|
r.background_colour :white
|
360
|
-
r.
|
361
|
-
r.top_left_then_run
|
360
|
+
r.automatic_top_left_then_run
|
362
361
|
end; self.instance_eval { alias start_gui_application run } # === Bioroebe::GUI::Gtk::WwwFinder.start_gui_application
|
363
362
|
|
364
363
|
end; end; end; end
|
Binary file
|
@@ -0,0 +1,104 @@
|
|
1
|
+
package bioroebe;
|
2
|
+
|
3
|
+
import javafx.application.*;
|
4
|
+
import javafx.stage.*;
|
5
|
+
import javafx.scene.*;
|
6
|
+
import javafx.scene.layout.*;
|
7
|
+
import javafx.scene.control.*;
|
8
|
+
import javafx.scene.text.Font;
|
9
|
+
import javafx.scene.text.FontWeight;
|
10
|
+
|
11
|
+
public class Bioroebe extends Application /* < Application */
|
12
|
+
{
|
13
|
+
|
14
|
+
private static final double screen_width = Screen.getPrimary().getBounds().getWidth();
|
15
|
+
private static final double screen_height = Screen.getPrimary().getBounds().getHeight();
|
16
|
+
|
17
|
+
/*
|
18
|
+
* === TITLE
|
19
|
+
*/
|
20
|
+
private static final String TITLE = "The Bioroebe Project";
|
21
|
+
|
22
|
+
/* === WIDTH */
|
23
|
+
private static final double WIDTH = screen_width;
|
24
|
+
|
25
|
+
/* === HEIGHT */
|
26
|
+
private static final double HEIGHT = screen_height;
|
27
|
+
|
28
|
+
public static void e(String i) {
|
29
|
+
System.out.print(i);
|
30
|
+
}
|
31
|
+
|
32
|
+
public static void en(String i) {
|
33
|
+
System.out.println(i);
|
34
|
+
}
|
35
|
+
|
36
|
+
public static void main(String[] args)
|
37
|
+
{
|
38
|
+
launch(args);
|
39
|
+
}
|
40
|
+
Button button1,
|
41
|
+
button2,
|
42
|
+
button_exit;
|
43
|
+
|
44
|
+
/*
|
45
|
+
* start()
|
46
|
+
*/
|
47
|
+
@Override public void start(Stage primaryStage)
|
48
|
+
{
|
49
|
+
// Create the button
|
50
|
+
button1 = new Button();
|
51
|
+
button1.setText("Click me please!");
|
52
|
+
button1.setOnAction(e -> buttonClick());
|
53
|
+
// Add the button to a layout pane
|
54
|
+
BorderPane pane = new BorderPane();
|
55
|
+
|
56
|
+
HBox hbox2 = new HBox(12);
|
57
|
+
hbox2.getChildren().addAll(button1, new Label("Test"));
|
58
|
+
pane.setCenter(hbox2);
|
59
|
+
|
60
|
+
button2 = new Button();
|
61
|
+
button2.setText("Yet another button!");
|
62
|
+
button2.setOnAction(e -> button2_was_clicked());
|
63
|
+
|
64
|
+
button_exit = new Button("Exit");
|
65
|
+
button_exit.setOnAction(e -> Platform.exit());
|
66
|
+
|
67
|
+
HBox hbox1 = new HBox(8); /* spacing = 8 */
|
68
|
+
hbox1.getChildren().addAll(
|
69
|
+
button2,
|
70
|
+
button_exit
|
71
|
+
);
|
72
|
+
pane.setBottom(hbox1);
|
73
|
+
pane.setStyle("-fx-font-size: 22");
|
74
|
+
|
75
|
+
/*
|
76
|
+
* Add the layout pane to a scene via the two
|
77
|
+
* defined constants. That pane is the root
|
78
|
+
* node.
|
79
|
+
*/
|
80
|
+
Scene scene = new Scene(pane, WIDTH, HEIGHT);
|
81
|
+
|
82
|
+
// Finalize and show the stage
|
83
|
+
primaryStage.setScene(scene);
|
84
|
+
primaryStage.setTitle(TITLE);
|
85
|
+
primaryStage.show();
|
86
|
+
}
|
87
|
+
|
88
|
+
/* Toggline the button-state here */
|
89
|
+
public void buttonClick()
|
90
|
+
{
|
91
|
+
if (button1.getText() == "Click me please!")
|
92
|
+
{
|
93
|
+
button1.setText("You clicked me!");
|
94
|
+
}
|
95
|
+
else
|
96
|
+
{
|
97
|
+
button1.setText("Click me please!");
|
98
|
+
}
|
99
|
+
}
|
100
|
+
public void button2_was_clicked() {
|
101
|
+
en("I was clicked");
|
102
|
+
}
|
103
|
+
|
104
|
+
}
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
Main-Class: Bioroebe
|
Binary file
|