diff --git a/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/datacite/hostedBy_map.json b/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/datacite/hostedBy_map.json index d07cc33cb..bc1af3417 100644 --- a/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/datacite/hostedBy_map.json +++ b/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/datacite/hostedBy_map.json @@ -1048,5 +1048,10 @@ "openaire_id": "re3data_____::r3d100010399", "datacite_name": "ZEW Forschungsdatenzentrum", "official_name": "ZEW Forschungsdatenzentrum" + }, + "HBP.NEUROINF": { + "openaire_id": "fairsharing_::2975", + "datacite_name": "EBRAINS", + "official_name": "EBRAINS" } } \ No newline at end of file diff --git a/dhp-workflows/dhp-doiboost/src/main/resources/eu/dnetlib/dhp/doiboost/crossref/irish_funder.json b/dhp-workflows/dhp-doiboost/src/main/resources/eu/dnetlib/dhp/doiboost/crossref/irish_funder.json index 15eb1b711..7807b302c 100644 --- a/dhp-workflows/dhp-doiboost/src/main/resources/eu/dnetlib/dhp/doiboost/crossref/irish_funder.json +++ b/dhp-workflows/dhp-doiboost/src/main/resources/eu/dnetlib/dhp/doiboost/crossref/irish_funder.json @@ -223,12 +223,6 @@ "name": "Global Brain Health Institute", "synonym": [] }, - { - "id": "100015776", - "uri": "http://dx.doi.org/10.13039/100015776", - "name": "Health and Social Care Board", - "synonym": [] - }, { "id": "100015992", "uri": "http://dx.doi.org/10.13039/100015992", @@ -403,18 +397,6 @@ "name": "Irish Hospice Foundation", "synonym": [] }, - { - "id": "501100001596", - "uri": "http://dx.doi.org/10.13039/501100001596", - "name": "Irish Research Council for Science, Engineering and Technology", - "synonym": [] - }, - { - "id": "501100001597", - "uri": "http://dx.doi.org/10.13039/501100001597", - "name": "Irish Research Council for the Humanities and Social Sciences", - "synonym": [] - }, { "id": "501100001598", "uri": "http://dx.doi.org/10.13039/501100001598", @@ -515,7 +497,7 @@ "id": "501100002081", "uri": "http://dx.doi.org/10.13039/501100002081", "name": "Irish Research Council", - "synonym": [] + "synonym": ["501100001596", "501100001597"] }, { "id": "501100002736", diff --git a/dhp-workflows/dhp-doiboost/src/main/scala/eu/dnetlib/doiboost/crossref/Crossref2Oaf.scala b/dhp-workflows/dhp-doiboost/src/main/scala/eu/dnetlib/doiboost/crossref/Crossref2Oaf.scala index 64090733d..7053213da 100644 --- a/dhp-workflows/dhp-doiboost/src/main/scala/eu/dnetlib/doiboost/crossref/Crossref2Oaf.scala +++ b/dhp-workflows/dhp-doiboost/src/main/scala/eu/dnetlib/doiboost/crossref/Crossref2Oaf.scala @@ -587,7 +587,15 @@ case object Crossref2Oaf { "10.13039/501100000266" | "10.13039/501100006041" | "10.13039/501100000265" | "10.13039/501100000270" | "10.13039/501100013589" | "10.13039/501100000271" => generateSimpleRelationFromAward(funder, "ukri________", a => a) - + //HFRI + case "10.13039/501100013209" => + generateSimpleRelationFromAward(funder, "hfri________", a => a) + val targetId = getProjectId("hfri________", "1e5e62235d094afd01cd56e65112fc63") + queue += generateRelation(sourceId, targetId, ModelConstants.IS_PRODUCED_BY) + queue += generateRelation(targetId, sourceId, ModelConstants.PRODUCES) + //ERASMUS+ + case "10.13039/501100010790" => + generateSimpleRelationFromAward(funder, "erasmusplus_", a => a) case _ => logger.debug("no match for " + funder.DOI.get) }