├── .gitignore ├── LICENSE ├── README.md ├── about.php ├── annot_desc.php ├── annot_desc_file.php ├── cookies.php ├── css ├── bootstrap.min.css ├── datatables.css ├── datatables.min.css ├── datatables │ ├── buttons.bootstrap4.min.css │ ├── colReorder.dataTables.min.css │ ├── dataTables.bootstrap4.min.css │ └── datatables.min.css ├── easy_gdb.css └── loading_datatable.css ├── custom_view.php ├── downloads.php ├── favicon.ico ├── footer.php ├── gene.php ├── gene_seq.php ├── groups.php ├── header.php ├── help ├── 00_help.php ├── 01_search.php ├── 02_blast.php ├── 03_genome_browser.php ├── 04_sequence_extraction.php ├── 05_annotation_extraction.php ├── 06_gene_lookup.php ├── 07_gene_enrichment.php ├── 08_gene_expression.php ├── 09_expression_comparator.php ├── 10_coexpression.php ├── header_help.php └── help_images │ ├── JBrowse_cookies.png │ ├── JBrowse_example.png │ ├── annotation_extraction.png │ ├── annotext_example.png │ ├── average.png │ ├── blast.png │ ├── blast_options.png │ ├── blast_result.png │ ├── cards.png │ ├── coex_input.png │ ├── coex_output.png │ ├── gene_expression.png │ ├── gene_lookup.png │ ├── gene_lookup_example1.png │ ├── heatmap.png │ ├── heatmap_example.png │ ├── heatmap_highligh_1.png │ ├── heatmap_highligh_2.png │ ├── input.png │ ├── input_comparator.png │ ├── input_enrichment.png │ ├── input_lookup.png │ ├── lines.png │ ├── lines_comparator.png │ ├── lines_comparator_1.png │ ├── lines_comparator_2.png │ ├── lines_comparator_highlight.png │ ├── lines_comparator_highlight_1.png │ ├── lines_comparator_highlight_2.png │ ├── lines_example.png │ ├── lines_hide.png │ ├── lines_highlight.png │ ├── output_enrichment.png │ ├── output_enrichment_1.png │ ├── output_enrichment_2.png │ ├── replicates.png │ ├── search-example1.png │ ├── search_example.png │ ├── search_example_output.png │ ├── search_mainpage.png │ └── sequence_extraction.png ├── index.php ├── install ├── Dockerfile ├── docker-compose.yml ├── easy_gdb_apache.conf └── setup.sh ├── jb_frame.php ├── jb_frame_file.php ├── js ├── Datatables │ ├── buttons.bootstrap4.min.js │ ├── buttons.colVis.min.js │ ├── buttons.html5.min.js │ ├── buttons.print.min.js │ ├── dataTables.bootstrap4.min.js │ ├── dataTables.buttons.min.js │ ├── dataTables.colReorder.min.js │ ├── jquery.dataTables.min.js │ ├── pdfmake.min.js │ └── vfs_fonts.js ├── apexcharts.min.js ├── blast_canvas_graph.js ├── bootstrap.min.js ├── datatable.js ├── download2.js ├── jquery.min.js ├── jszip.min.js ├── kinetic-v5.1.0.min.js ├── openGPlink.js └── popper.min.js ├── more.php ├── other_gene_ids.php ├── person_view.php ├── scripts ├── ImportModule.pm ├── create_annot_schema2.sql ├── import_annots_sch2.pl └── import_genes.pl ├── species.php ├── species_view.php ├── templates ├── annotations │ └── example │ │ └── gene_annotations.txt ├── apache │ └── easy_gdb_apache.conf ├── blast_dbs │ ├── category_1 │ │ ├── sample_blast_DB_genome.fasta │ │ ├── sample_blast_DB_genome.fasta.nhr │ │ ├── sample_blast_DB_genome.fasta.nin │ │ ├── sample_blast_DB_genome.fasta.nog │ │ ├── sample_blast_DB_genome.fasta.nsd │ │ ├── sample_blast_DB_genome.fasta.nsi │ │ └── sample_blast_DB_genome.fasta.nsq │ └── category_2 │ │ ├── sample_blast_DB_nucleotides.fasta │ │ ├── sample_blast_DB_nucleotides.fasta.nhr │ │ ├── sample_blast_DB_nucleotides.fasta.nin │ │ ├── sample_blast_DB_nucleotides.fasta.nog │ │ ├── sample_blast_DB_nucleotides.fasta.nsd │ │ ├── sample_blast_DB_nucleotides.fasta.nsi │ │ ├── sample_blast_DB_nucleotides.fasta.nsq │ │ ├── sample_blast_DB_proteins.fasta │ │ ├── sample_blast_DB_proteins.fasta.phr │ │ ├── sample_blast_DB_proteins.fasta.pin │ │ ├── sample_blast_DB_proteins.fasta.pog │ │ ├── sample_blast_DB_proteins.fasta.psd │ │ ├── sample_blast_DB_proteins.fasta.psi │ │ └── sample_blast_DB_proteins.fasta.psq ├── configuration_path.php ├── db_example_annotations │ ├── annotation_example_SwissProt.txt │ ├── annotation_example_TAIR10.txt │ └── gene_list.txt ├── downloads │ ├── Homo sapiens │ │ ├── Annotations │ │ │ └── gene_annotations.txt.gz │ │ └── Sequences │ │ │ ├── Homo_sapiens_v1.0_CDS.fasta.gz │ │ │ ├── Homo_sapiens_v1.0_PEP.fasta.gz │ │ │ ├── Homo_sapiens_v1.0_cDNA.fasta.gz │ │ │ └── Homo_sapiens_v1.0_genome.fasta.gz │ └── Species species 1 │ │ ├── Annotations │ │ └── gene_annotations.txt │ │ └── Sequences │ │ ├── Species_v1.0_CDS.fasta │ │ ├── Species_v1.0_PEP.fasta │ │ ├── Species_v1.0_cDNA.fasta │ │ ├── Species_v1.0_genome.fasta │ │ └── level 2 │ │ ├── level 3 │ │ ├── aa test_file_l3.fasta │ │ ├── level 4 │ │ │ ├── test_file_l4 copy.fasta │ │ │ └── test_file_l4.fasta │ │ ├── test_file_l3.fasta │ │ └── zz test_file_l3.fasta │ │ ├── test_file_l2 copy.fasta │ │ └── test_file_l2.fasta ├── egdb_files │ ├── css │ │ └── custom.css │ ├── egdb_conf │ │ ├── database_access.php │ │ └── easyGDB_conf.php │ ├── egdb_custom_text │ │ ├── about.php │ │ ├── custom_cookies.php │ │ ├── custom_footer.php │ │ ├── custom_pages │ │ │ ├── genome.php │ │ │ ├── other page.php │ │ │ ├── row_data.php │ │ │ ├── table_menu.php │ │ │ ├── table_to_page.php │ │ │ └── tables │ │ │ │ ├── table_example.txt │ │ │ │ └── table_example_2.txt │ │ ├── custom_toolbar.php │ │ ├── db_citation.php │ │ ├── expr_datasets │ │ │ ├── example1_description.php │ │ │ └── example2_description.php │ │ └── welcome_text.php │ ├── egdb_images │ │ ├── descriptors_imgs │ │ │ ├── Species_2 │ │ │ │ ├── sagarpa_flower_nectary_sessile.png │ │ │ │ ├── sagarpa_flower_nectary_stalked.png │ │ │ │ ├── sagarpa_flower_pollen_absent.png │ │ │ │ ├── sagarpa_flower_pollen_present.png │ │ │ │ ├── sagarpa_flower_style_kinked.png │ │ │ │ ├── sagarpa_flower_style_straight.png │ │ │ │ ├── sagarpa_inflorescence_color_lenticels_green.png │ │ │ │ ├── sagarpa_inflorescence_color_lenticels_red.png │ │ │ │ ├── sagarpa_inflorescence_flowering_type_help.png │ │ │ │ ├── sagarpa_inflorescence_length_axis_long.png │ │ │ │ ├── sagarpa_inflorescence_length_axis_medium.png │ │ │ │ ├── sagarpa_inflorescence_length_axis_short.png │ │ │ │ ├── sagarpa_leaf_blade_length_long.png │ │ │ │ ├── sagarpa_leaf_blade_length_medium.png │ │ │ │ ├── sagarpa_leaf_blade_length_short.png │ │ │ │ ├── sagarpa_leaf_blade_length_very_long.png │ │ │ │ ├── sagarpa_leaf_blade_length_very_short.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_large.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_length_width_large.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_length_width_medium.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_length_width_small.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_length_width_very_large.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_length_width_very_small.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_medium.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_small.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_very_large.png │ │ │ │ ├── sagarpa_leaf_blade_ratio_very_small.png │ │ │ │ ├── sagarpa_leaf_blade_shape_circular.png │ │ │ │ ├── sagarpa_leaf_blade_shape_elliptic.png │ │ │ │ ├── sagarpa_leaf_blade_shape_lanceolate.png │ │ │ │ ├── sagarpa_leaf_blade_shape_obovate.png │ │ │ │ ├── sagarpa_leaf_blade_shape_ovate.png │ │ │ │ ├── sagarpa_leaf_blade_width_broad.png │ │ │ │ ├── sagarpa_leaf_blade_width_medium.png │ │ │ │ ├── sagarpa_leaf_blade_width_narrow.png │ │ │ │ ├── sagarpa_leaf_blade_width_very_broad.png │ │ │ │ ├── sagarpa_leaf_blade_width_very_narrow.png │ │ │ │ ├── sagarpa_mature_fruit_diameter_large.png │ │ │ │ ├── sagarpa_mature_fruit_diameter_medium.png │ │ │ │ ├── sagarpa_mature_fruit_diameter_small.png │ │ │ │ ├── sagarpa_mature_fruit_diameter_very_large.png │ │ │ │ ├── sagarpa_mature_fruit_diameter_very_small.png │ │ │ │ ├── sagarpa_mature_fruit_glossiness_absent.png │ │ │ │ ├── sagarpa_mature_fruit_glossiness_medium.png │ │ │ │ ├── sagarpa_mature_fruit_glossiness_strong.png │ │ │ │ ├── sagarpa_mature_fruit_glossiness_weak.png │ │ │ │ ├── sagarpa_mature_fruit_length_long.png │ │ │ │ ├── sagarpa_mature_fruit_length_medium.png │ │ │ │ ├── sagarpa_mature_fruit_length_short.png │ │ │ │ ├── sagarpa_mature_fruit_length_very_long.png │ │ │ │ ├── sagarpa_mature_fruit_length_very_short.png │ │ │ │ ├── sagarpa_mature_fruit_presence_depression_stalk_end_absent.png │ │ │ │ ├── sagarpa_mature_fruit_presence_depression_stalk_end_present.png │ │ │ │ ├── sagarpa_mature_fruit_presence_neck_absent.png │ │ │ │ ├── sagarpa_mature_fruit_presence_neck_present.png │ │ │ │ ├── sagarpa_mature_fruit_ratio_large.png │ │ │ │ ├── sagarpa_mature_fruit_ratio_medium.png │ │ │ │ ├── sagarpa_mature_fruit_ratio_small.png │ │ │ │ ├── sagarpa_mature_fruit_ratio_very_large.png │ │ │ │ ├── sagarpa_mature_fruit_ratio_very_small.png │ │ │ │ ├── sagarpa_mature_fruit_shape_stalk_end_broadly_rounded.png │ │ │ │ ├── sagarpa_mature_fruit_shape_stalk_end_narrowly_rounded.png │ │ │ │ ├── sagarpa_mature_fruit_shape_stalk_end_pointed.png │ │ │ │ ├── sagarpa_mature_fruit_shape_stalk_end_truncate.png │ │ │ │ ├── sagarpa_mature_fruit_size_lenticels_medium.png │ │ │ │ ├── sagarpa_mature_fruit_surface_medium.png │ │ │ │ ├── sagarpa_mature_fruit_surface_rough.png │ │ │ │ ├── sagarpa_mature_fruit_surface_smooth.png │ │ │ │ ├── sagarpa_mature_fruit_surface_very_rough.png │ │ │ │ ├── sagarpa_mature_fruit_surface_very_smooth.png │ │ │ │ ├── sagarpa_ripe_fruit_adherence_skin_flesh_intermediate.png │ │ │ │ ├── sagarpa_ripe_fruit_adherence_skin_flesh_strong.png │ │ │ │ ├── sagarpa_ripe_fruit_adherence_skin_flesh_weak.png │ │ │ │ ├── sagarpa_ripe_fruit_anise_aroma_flesh_absent.png │ │ │ │ ├── sagarpa_ripe_fruit_anise_aroma_flesh_present.png │ │ │ │ ├── sagarpa_ripe_fruit_color_black.png │ │ │ │ ├── sagarpa_ripe_fruit_color_dark_green.png │ │ │ │ ├── sagarpa_ripe_fruit_color_dark_purple.png │ │ │ │ ├── sagarpa_ripe_fruit_color_dark_purple_or_black.png │ │ │ │ ├── sagarpa_ripe_fruit_color_layer_next_skin_light_green.png │ │ │ │ ├── sagarpa_ripe_fruit_color_layer_next_skin_medium_green.png │ │ │ │ ├── sagarpa_ripe_fruit_color_layer_next_skin_yellow_green.png │ │ │ │ ├── sagarpa_ripe_fruit_color_light_green.png │ │ │ │ ├── sagarpa_ripe_fruit_color_ligth_green.png │ │ │ │ ├── sagarpa_ripe_fruit_color_medium_green.png │ │ │ │ ├── sagarpa_ripe_fruit_color_medium_purple.png │ │ │ │ ├── sagarpa_ripe_fruit_color_reddish.png │ │ │ │ ├── sagarpa_ripe_fruit_color_yellow_green.png │ │ │ │ ├── sagarpa_ripe_fruit_consistency_skin_corky.png │ │ │ │ ├── sagarpa_ripe_fruit_consistency_skin_leathery.png │ │ │ │ ├── sagarpa_ripe_fruit_consistency_skin_membranous.png │ │ │ │ ├── sagarpa_ripe_fruit_main_color_flesh_cream.png │ │ │ │ ├── sagarpa_ripe_fruit_main_color_flesh_light_green.png │ │ │ │ ├── sagarpa_ripe_fruit_main_color_flesh_whitish.png │ │ │ │ ├── sagarpa_ripe_fruit_main_color_flesh_yellow.png │ │ │ │ ├── sagarpa_ripe_fruit_thickness_skin_medium.png │ │ │ │ ├── sagarpa_ripe_fruit_thickness_skin_moderately_thick.png │ │ │ │ ├── sagarpa_ripe_fruit_thickness_skin_moderately_thin.png │ │ │ │ ├── sagarpa_ripe_fruit_thickness_skin_very_thick.png │ │ │ │ └── sagarpa_ripe_fruit_thickness_skin_very_thin.png │ │ │ └── Species_3 │ │ │ │ ├── upov_inflorescence_number_primary_branches_help.png │ │ │ │ ├── upov_leaf_blade_shape_apex_acuminate.png │ │ │ │ ├── upov_leaf_blade_shape_apex_acute.png │ │ │ │ ├── upov_leaf_blade_shape_apex_attenuate.png │ │ │ │ ├── upov_leaf_blade_shape_base_acute.png │ │ │ │ ├── upov_leaf_blade_shape_base_obtuse.png │ │ │ │ ├── upov_leaf_blade_shape_base_rounded.png │ │ │ │ ├── upov_leaf_blade_shape_elliptic.png │ │ │ │ ├── upov_leaf_blade_shape_oblong.png │ │ │ │ ├── upov_leaf_blade_shape_ovate.png │ │ │ │ ├── upov_leaf_blade_twisting_absent.png │ │ │ │ ├── upov_leaf_blade_twisting_present.png │ │ │ │ ├── upov_mature_fruit_bulging_proximal_stylar_scar_help.png │ │ │ │ ├── upov_mature_fruit_bulging_ventral_shoulder_absent.png │ │ │ │ ├── upov_mature_fruit_bulging_ventral_shoulder_present.png │ │ │ │ ├── upov_mature_fruit_depth_groove_ventral_shoulder_help.png │ │ │ │ ├── upov_mature_fruit_point_stylar_scar_absent.png │ │ │ │ ├── upov_mature_fruit_point_stylar_scar_large.png │ │ │ │ ├── upov_mature_fruit_point_stylar_scar_medium.png │ │ │ │ ├── upov_mature_fruit_point_stylar_scar_small.png │ │ │ │ ├── upov_mature_fruit_presence_neck_absent.png │ │ │ │ ├── upov_mature_fruit_presence_neck_present.png │ │ │ │ ├── upov_mature_fruit_presence_sinus_absent.png │ │ │ │ ├── upov_mature_fruit_presence_sinus_present.png │ │ │ │ ├── upov_mature_fruit_ratio_help.png │ │ │ │ ├── upov_mature_fruit_shape_cross_section_broad_elliptic.png │ │ │ │ ├── upov_mature_fruit_shape_cross_section_circular.png │ │ │ │ ├── upov_mature_fruit_shape_cross_section_medium_elliptic.png │ │ │ │ ├── upov_mature_fruit_shape_dorsal_shoulder_falling_abruptly.png │ │ │ │ ├── upov_mature_fruit_shape_dorsal_shoulder_rounded_downward.png │ │ │ │ ├── upov_mature_fruit_shape_dorsal_shoulder_rounded_outward.png │ │ │ │ ├── upov_mature_fruit_shape_dorsal_shoulder_rounded_upward.png │ │ │ │ ├── upov_mature_fruit_shape_dorsal_shoulder_sloping_downward.png │ │ │ │ ├── upov_mature_fruit_stalk_cavity_absent.png │ │ │ │ ├── upov_mature_fruit_stalk_cavity_deep.png │ │ │ │ ├── upov_mature_fruit_stalk_cavity_medium.png │ │ │ │ ├── upov_mature_fruit_stalk_cavity_shallow.png │ │ │ │ ├── upov_seed_shape_lateral_view_oblong.png │ │ │ │ └── upov_seed_shape_lateral_view_reniform.png │ │ ├── easy_gdb_home.png │ │ ├── egdb_logo.png │ │ ├── expr │ │ │ ├── cartoons │ │ │ │ ├── tissue1.png │ │ │ │ ├── tissue2.png │ │ │ │ ├── tissue3.png │ │ │ │ └── tissue4.png │ │ │ ├── cold.jpeg │ │ │ ├── darkness.jpeg │ │ │ ├── drought.jpeg │ │ │ ├── fruit.jpeg │ │ │ ├── germinating_seed.jpeg │ │ │ ├── heat.jpeg │ │ │ ├── leaf.jpeg │ │ │ ├── peel.jpeg │ │ │ ├── root.jpeg │ │ │ └── seed.jpeg │ │ ├── favicon.ico │ │ ├── gallery │ │ │ ├── Species_2 │ │ │ │ └── ACC1 │ │ │ │ │ ├── fruit.jpg │ │ │ │ │ ├── fruit_ripe.jpg │ │ │ │ │ ├── fruit_ripe_open.jpg │ │ │ │ │ └── frut_unripe.jpg │ │ │ └── Species_3 │ │ │ │ └── ACC1 │ │ │ │ ├── Palmer_fruit.jpg │ │ │ │ └── Palmer_leaf.jpg │ │ ├── header_img.png │ │ ├── logos │ │ │ ├── Researchgate_icon.png │ │ │ ├── googlescholar.ico │ │ │ ├── logo1.png │ │ │ ├── logo2.png │ │ │ ├── logo3.png │ │ │ ├── logo4.png │ │ │ ├── ncbi.ico │ │ │ ├── orcid.ico │ │ │ └── twitter_icon.png │ │ ├── map_labels │ │ │ ├── Species_1_default.png │ │ │ ├── Species_2_default.png │ │ │ ├── Species_3_default.png │ │ │ ├── Species_3_green.png │ │ │ ├── Species_3_green_and_yellow.png │ │ │ ├── Species_3_orange.png │ │ │ ├── Species_3_orange_and_purple.png │ │ │ ├── Species_3_orange_and_red.png │ │ │ ├── Species_3_purple.png │ │ │ ├── Species_3_red.png │ │ │ ├── Species_3_red_and_purple.png │ │ │ ├── Species_3_yellow.png │ │ │ ├── Species_3_yellow_and_orange.png │ │ │ ├── Species_3_yellow_and_red.png │ │ │ ├── Species_3_yellow_green.png │ │ │ └── Species_3_yellow_orange.png │ │ ├── people │ │ │ ├── placeholder1.png │ │ │ └── placeholder2.png │ │ └── species │ │ │ ├── cherimoya.png │ │ │ ├── mango.png │ │ │ ├── olive.png │ │ │ ├── sp1.png │ │ │ ├── sp2.png │ │ │ └── sp3.png │ ├── egdb_labs │ │ └── person.php │ ├── egdb_species │ │ ├── cherimoya.php │ │ ├── custom_species_title.php │ │ ├── mango.php │ │ └── olive.php │ └── json_files │ │ ├── customization │ │ ├── custom_help.json │ │ ├── labs.json │ │ ├── logos.json │ │ └── species_list.json │ │ └── tools │ │ ├── annotation_links.json │ │ ├── blast_links.json │ │ ├── cartoons_example1.json │ │ ├── comparator_link.json │ │ ├── comparator_lookup.json │ │ ├── enrichment.json │ │ ├── expression_info.json │ │ └── vcf.json ├── expression_data │ ├── Example1 - Plant_gene_expression_RPKM.txt │ ├── Example1_2 - Plant_gene_expression_sample.txt │ ├── Example2 - Organism dataset name.txt │ ├── Example3 - Dataset with cartoons.txt │ └── comparator_gene_list.txt ├── jbrowse_example_data │ ├── gene_models.gff │ ├── genome.fasta │ ├── jbrowse.conf │ ├── trackList.json │ └── tracks.conf ├── lookup │ ├── Species1_Arabidopsis_Best_hit.txt │ ├── Species_name1_v3_to_Species_name1_v1.txt │ └── Species_name1_v3_to_Species_name1_v2.txt ├── passport │ └── example │ │ ├── Species_1 │ │ ├── Flower_descriptors.txt │ │ ├── Fruit_descriptors.txt │ │ ├── Leaf_descriptors.txt │ │ ├── passport.json │ │ └── sp1_passport.txt │ │ ├── Species_2 │ │ ├── Inflorescence_descriptors.txt │ │ ├── Leaf_descriptors.txt │ │ ├── Mature_fruit_descriptors.txt │ │ ├── Ripe_fruit_descriptors.txt │ │ ├── convert_numeric_to_cathegoric.json │ │ ├── featured_descriptors.json │ │ ├── passport.json │ │ ├── sp2_passport.txt │ │ ├── sp2_phenotype_imgs.json │ │ └── translator.json │ │ ├── Species_3 │ │ ├── Phenotype_descriptors.txt │ │ ├── convert_numeric_to_cathegoric.json │ │ ├── passport.json │ │ ├── sp3_passport.txt │ │ ├── sp3_phenotype_imgs.json │ │ └── translator.json │ │ └── germplasm_list.json └── private_expression_data │ └── private_example1.txt ├── toolbar.php └── tools ├── annot_input_list.php ├── annot_output_db.php ├── annot_output_file.php ├── blast ├── blast_dbs_select.php ├── blast_input.php ├── blast_output.php ├── blast_output_multiple.php ├── blast_output_single.php ├── blastdbcmd.php ├── blastdbcmd_multiple.php ├── blastdbcmd_single.php ├── get_dbs.php └── loading_blast.php ├── coexpression ├── ajax_get_names_array.php ├── coex_input.php ├── coex_modal.php ├── coex_operations.php └── coex_output.php ├── common_functions.php ├── download_files.php ├── expression ├── 01_expr_check_dataset_description.php ├── 01_expr_colors_range.php ├── 01_expr_load_description.php ├── 02_expr_load_annotations.php ├── 02_expr_load_db_annotations.php ├── 03_expr_load_avg_table_html.php ├── 03_expr_load_cards_html.php ├── 03_expr_load_cartoons_html.php ├── 03_expr_load_heatmap_html.php ├── 03_expr_load_lines_html.php ├── 03_expr_load_replicates_html.php ├── ajax_cards.php ├── ajax_get_names_array.php ├── card_pattern.png ├── cartoons_kinetic.js ├── comparator_input.php ├── comparator_output.php ├── expr_placeholder.jpeg ├── expression_graphs.js ├── expression_input.php ├── expression_input_private.php ├── expression_menu.php ├── expression_output.php └── expression_output_private.php ├── fasta_download.php ├── gene_enrichment.php ├── gene_enrichment_ajax.php ├── gene_lookup.php ├── gene_lookup_output.php ├── get_annotation_types.php ├── modal.html ├── passport ├── 01_list_pass_files.php ├── 02_pass_file_to_datatable.php ├── 03_passport_and_phenotype.php ├── ajax_search_avanced.php ├── country_coordinates.txt ├── gallery.php ├── map.php ├── multi_map.php ├── passport_ajax.php ├── passport_search_input.php ├── passport_search_output.php ├── passport_search_output_avanced.php ├── passport_search_phenotypes.php ├── passport_table_ajax.php └── view_subdirectories.php ├── search ├── search_annot.php ├── search_info_modal.php ├── search_input.php ├── search_output.php └── search_output_file.php └── vcf ├── ajax_get_gene_coordinates.php ├── vcf_ajax_acc_data.php ├── vcf_extract_input.php ├── vcf_extract_output.php └── vcf_id_extract_output.php /.gitignore: -------------------------------------------------------------------------------- 1 | # OS generated files # 2 | ###################### 3 | .DS_Store 4 | .DS_Store? 5 | ._* 6 | .Spotlight-V100 7 | .Trashes 8 | ehthumbs.db 9 | Thumbs.db 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Noé Fernández Pozo 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /about.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 |