# HG changeset patch # User dchristiany # Date 1551451027 18000 # Node ID 8f6ddad93e9f5227ede50739c63d9298cd261bea # Parent 932950befe871a77d7f1e48a14c4bc24672d0361 planemo upload commit 12b0b3e18cd7af9a8588906fa2ec199b9d2a770f-dirty diff -r 932950befe87 -r 8f6ddad93e9f data_manager/resource_building.py --- a/data_manager/resource_building.py Fri Feb 01 11:22:06 2019 -0500 +++ b/data_manager/resource_building.py Fri Mar 01 09:37:07 2019 -0500 @@ -52,7 +52,7 @@ tissue_name = tissue_name + " " + time.strftime("%d/%m/%Y") tissue_id = tissue_name.replace(" ","_").replace("/","-") - data_table_entry = dict(id=tissue_id, name = tissue_name, value = tissue, path = path) + data_table_entry = dict(id=tissue_id, name = tissue_name, tissue = tissue, value = path) _add_data_table_entry(data_manager_dict, data_table_entry, "proteore_protein_atlas") @@ -476,7 +476,7 @@ with open(path, 'w') as handle: json.dump(dico, handle, sort_keys=True) - data_table_entry = dict(id=id, name = name, value = species, path = path) + data_table_entry = dict(id=id, name = name, species = species, value = path) _add_data_table_entry(data_manager_dict, data_table_entry, "proteore_"+interactome+"_dictionaries") diff -r 932950befe87 -r 8f6ddad93e9f data_manager/resource_building.xml --- a/data_manager/resource_building.xml Fri Feb 01 11:22:06 2019 -0500 +++ b/data_manager/resource_building.xml Fri Mar 01 09:37:07 2019 -0500 @@ -1,4 +1,4 @@ - + to create or update reference files for proteore tools diff -r 932950befe87 -r 8f6ddad93e9f data_manager_conf.xml --- a/data_manager_conf.xml Fri Feb 01 11:22:06 2019 -0500 +++ b/data_manager_conf.xml Fri Mar 01 09:37:07 2019 -0500 @@ -5,8 +5,8 @@ - - + + protein_atlas/ @@ -49,8 +49,8 @@ - - + + PPI_dictionaries/ @@ -64,8 +64,8 @@ - - + + PPI_dictionaries/ @@ -79,8 +79,8 @@ - - + + PPI_dictionaries/ diff -r 932950befe87 -r 8f6ddad93e9f tool-data/proteore_biogrid_dictionaries.loc.sample --- a/tool-data/proteore_biogrid_dictionaries.loc.sample Fri Feb 01 11:22:06 2019 -0500 +++ b/tool-data/proteore_biogrid_dictionaries.loc.sample Fri Mar 01 09:37:07 2019 -0500 @@ -1,4 +1,4 @@ -#id name value path -#biogrid_human_08-01-2019 Human (Homo sapiens) Human PPI_dictionaries/Human_biogrid.json -#biogrid_mouse_08-01-2019 Mouse (Mus musculus) Mouse PPI_dictionaries/Mouse_biogrid.json -#biogrid_rat_08-01-2019 Rat (Rattus norvegicus) Rat PPI_dictionaries/Rat_biogrid.json +#id name species value +#biogrid_human_08-01-2019 Human (Homo sapiens) 08/01/2019 Human PPI_dictionaries/Human_biogrid.json +#biogrid_mouse_08-01-2019 Mouse (Mus musculus) 08/01/2019 Mouse PPI_dictionaries/Mouse_biogrid.json +#biogrid_rat_08-01-2019 Rat (Rattus norvegicus) 08/01/2019 Rat PPI_dictionaries/Rat_biogrid.json diff -r 932950befe87 -r 8f6ddad93e9f tool-data/proteore_bioplex_dictionaries.loc.sample --- a/tool-data/proteore_bioplex_dictionaries.loc.sample Fri Feb 01 11:22:06 2019 -0500 +++ b/tool-data/proteore_bioplex_dictionaries.loc.sample Fri Mar 01 09:37:07 2019 -0500 @@ -1,4 +1,2 @@ -#id name value path -#bioplex_human_08-01-2019 Human (Homo sapiens) Human PPI_dictionaries/human_bioplex.json -#bioplex_mouse_08-01-2019 Mouse (Mus musculus) Mouse PPI_dictionaries/mouse_bioplex.json -#bioplex_rat_08-01-2019 Rat (Rattus norvegicus) Rat PPI_dictionaries/rat_bioplexdico.json +#id name species value +#bioplex_human_08-01-2019 Human (Homo sapiens) 08/01/2019 Human PPI_dictionaries/human_bioplex.json diff -r 932950befe87 -r 8f6ddad93e9f tool-data/proteore_humap_dictionaries.loc.sample --- a/tool-data/proteore_humap_dictionaries.loc.sample Fri Feb 01 11:22:06 2019 -0500 +++ b/tool-data/proteore_humap_dictionaries.loc.sample Fri Mar 01 09:37:07 2019 -0500 @@ -1,2 +1,2 @@ -#id name value path -#humap_human_01-02-2019 Human (Homo sapiens) 01/02/19 Human PPI_dictionaries/Human_humap_01-02-2019.json +#id name species value +#humap_human_01-02-2019 Human (Homo sapiens) 01/02/19 Human PPI_dictionaries/Human_humap_01-02-2019.json diff -r 932950befe87 -r 8f6ddad93e9f tool-data/proteore_id_mapping.loc.sample --- a/tool-data/proteore_id_mapping.loc.sample Fri Feb 01 11:22:06 2019 -0500 +++ b/tool-data/proteore_id_mapping.loc.sample Fri Mar 01 09:37:07 2019 -0500 @@ -1,5 +1,5 @@ #This file lists the locations of reference file for id_converter tool # -#human_id_mapping_01-01-2018 Human (homo sapiens) human_id_mapping tool-data/human_id_mapping_file.tsv +#human_id_mapping_01-01-2018 Human (homo sapiens) human_id_mapping tool-data/human_id_mapping.tsv #mouse_id_mapping_01-01-2018 Mouse (Mus musculus) mouse_id_mapping tool-data/mouse_id_mapping.tsv #rat_id_mapping_01-01-2018 Rat (Rattus norvegicus) rat_id_mapping tool-data/rat_id_mapping.tsv diff -r 932950befe87 -r 8f6ddad93e9f tool-data/proteore_protein_atlas.loc.sample --- a/tool-data/proteore_protein_atlas.loc.sample Fri Feb 01 11:22:06 2019 -0500 +++ b/tool-data/proteore_protein_atlas.loc.sample Fri Mar 01 09:37:07 2019 -0500 @@ -1,6 +1,6 @@ #This file lists the locations name and values of reference files for Get expression data tool #This is a tab separated file (TAB, not 4 spaces !) -# +# #HPA_normal_tissue_19-07-2018 HPA normal tissue 19/07/2018 HPA_normal_tissue /projet/galaxydev/galaxy/tool-data/protein_atlas/projet/galaxydev/galaxy/database/jobs_directory/019/19159/dataset_39307_files/HPA_normal_tissue_19-07-2018.tsv #HPA_pathology_19-07-2018 HPA pathology 19/07/2018 HPA_pathology /projet/galaxydev/galaxy/tool-data/protein_atlas/projet/galaxydev/galaxy/database/jobs_directory/019/19160/dataset_39308_files/HPA_pathology_19-07-2018.tsv #HPA_full_atlas_19-07-2018 HPA full atlas 19/07/2018 HPA_full_atlas /projet/galaxydev/galaxy/tool-data/protein_atlas/projet/galaxydev/galaxy/database/jobs_directory/019/19161/dataset_39309_files/HPA_full_atlas_19-07-2018.tsv diff -r 932950befe87 -r 8f6ddad93e9f tool_data_table_conf.xml.sample --- a/tool_data_table_conf.xml.sample Fri Feb 01 11:22:06 2019 -0500 +++ b/tool_data_table_conf.xml.sample Fri Mar 01 09:37:07 2019 -0500 @@ -5,7 +5,7 @@ - id, name, value, path + id, name, tissue, value