diff --git a/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/collection/crossref/irish_funder.json b/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/collection/crossref/irish_funder.json index 15eb1b711..7807b302c 100644 --- a/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/collection/crossref/irish_funder.json +++ b/dhp-workflows/dhp-aggregation/src/main/resources/eu/dnetlib/dhp/collection/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-aggregation/src/main/scala/eu/dnetlib/dhp/collection/crossref/Crossref2Oaf.scala b/dhp-workflows/dhp-aggregation/src/main/scala/eu/dnetlib/dhp/collection/crossref/Crossref2Oaf.scala index c48d01105..abc22a2c6 100644 --- a/dhp-workflows/dhp-aggregation/src/main/scala/eu/dnetlib/dhp/collection/crossref/Crossref2Oaf.scala +++ b/dhp-workflows/dhp-aggregation/src/main/scala/eu/dnetlib/dhp/collection/crossref/Crossref2Oaf.scala @@ -946,7 +946,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) }