fixed integration of claims in the graph

This commit is contained in:
Claudio Atzori 2020-06-11 10:12:00 +02:00
parent 953da4a427
commit d1d92c4d8c
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package eu.dnetlib.dhp.oa.graph.clean;
public class OafNavigator {
}

View File

@ -141,8 +141,10 @@ public class GenerateEntitiesApplication {
switch (type.toLowerCase()) {
case "oaf-store-cleaned":
case "oaf-store-claim":
return new OafToOafMapper(vocs, false).processMdRecord(s);
case "odf-store-cleaned":
case "odf-store-claim":
return new OdfToOafMapper(vocs, false).processMdRecord(s);
case "oaf-store-intersection":
return new OafToOafMapper(vocs, true).processMdRecord(s);