-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(directory): biobank services as a separate entity (#4155)
* feat(directory): separate biobank services * feat(directory): biobank services as a separate entity * chore: rename FALSE to false * chore: add NL dummy service * chore: TRL as ontology and service types added * chore: change service types logic * feat(directory): update Biobank services model * feat(directory): update Biobank services model * feat(directory): fix typo's and add serviceCategory column * feat(directory): add QualityInformationServices * chore: separate ServiceCategories table * chore: fix missing and invalid refLabels
- Loading branch information
1 parent
8a1c963
commit e360cad
Showing
10 changed files
with
142 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
id,pid,name,acronym,description,url,location,country,latitude,longitude,head,contact,juridical_person,network,also_known,capabilities,collaboration_commercial,collaboration_non_for_profit,national_node,withdrawn | ||
bbmri-eric:ID:DE_biobank1,pid_biobank1,Biobank1,bb1,The description of biobank1,,Berlin,DE,,,bbmri-eric:contactID:DE_head_bb1,bbmri-eric:contactID:contact_bb1,A university,bbmri-eric:networkID:DE_network1,bbmri-eric:akiID:DE_00001,"covid19,nucleic-acid-extraction",true,false,DE,false | ||
bbmri-eric:ID:NL_biobank2,pid_biobank2,Biobank2,bb2,The description of biobank2,,Amsterdam,NL,,,bbmri-eric:contactID:NL_person1,bbmri-eric:contactID:NL_person1,An institute,bbmri-eric:networkID:EU_network,bbmri-eric:akiID:NL_00001,"cell-culture,pathology-archive-access,Testing_Facility_Animal",false,true,NL,false | ||
id,pid,name,acronym,description,url,location,country,latitude,longitude,head,contact,juridical_person,network,also_known,services,collaboration_commercial,collaboration_non_for_profit,national_node,withdrawn | ||
bbmri-eric:ID:DE_biobank1,pid_biobank1,Biobank1,bb1,The description of biobank1,,Berlin,DE,,,bbmri-eric:contactID:DE_head_bb1,bbmri-eric:contactID:contact_bb1,A university,bbmri-eric:networkID:DE_network1,bbmri-eric:akiID:DE_00001,"bbmri-eric:serviceID:DE_1234",true,false,DE,false | ||
bbmri-eric:ID:NL_biobank2,pid_biobank2,Biobank2,bb2,The description of biobank2,,Amsterdam,NL,,,bbmri-eric:contactID:NL_person1,bbmri-eric:contactID:NL_person1,An institute,bbmri-eric:networkID:EU_network,bbmri-eric:akiID:NL_00001,"bbmri-eric:serviceID:NL_541",false,true,NL,false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
service,qualityStandard,assessmentLevel,certificationNumber,certificationReport,certificationImageLink | ||
bbmri-eric:serviceID:DE_1234,iso-20184-3,accredited,,, | ||
bbmri-eric:serviceID:NL_541,ISO-20387-2018,accredited,,, | ||
bbmri-eric:serviceID:NL_541,iso-20166-1,accredited,,, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
id,name,serviceTypes,acronym,description,descriptionUrl,device,deviceSystem,tRL,accessDescriptionUrl,unitOfAccess,accessDescription,unitCost,contactInformation,national_node | ||
bbmri-eric:serviceID:DE_1234,Biobank Service,"microbiome-analysis, sample-storage",,Service provided by this biobank,,,,TRL-4,,,https://myservice-access.de,,bbmri-eric:contactID:contact_bb1,DE | ||
bbmri-eric:serviceID:NL_541,Dutch Biobank Service,"PET-Scans, TrainingResourceLabProtocols",,Services provided by Biobank2,,,,TRL-2,,,https://biobank2-service-access.nl,,,NL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
order,name,label,parent,codesystem,code,ontologyTermURI,definition | ||
1,biobankingElsiServices,Biobanking & ELSI Services,,,,,, | ||
2,sampleBioanalyticServices,Sample & Bioanalytical Services,,,,,, | ||
3,imagingServices,Imaging Services,,,,,, | ||
4,bioinformaticsDataScienceServices,Bioinformatics & Data Science Services,,,,,, | ||
5,consultingTrainingEducationServices,Consulting & Training & Education Services,,,,,, | ||
6,specializationsInResearchAreas,Specializations in Areas of Research,,,,,, |
Oops, something went wrong.