added extension for new author pid (orcid_pending) #63
No reviewers
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
RDGraph
RSAC
wontfix
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: D-Net/dnet-hadoop#63
Loading…
Reference in New Issue
No description provided.
Delete Branch "miriam.baglioni/dnet-hadoop:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the extention of the propagation of orcid throgh semrel by adding the new authro pid type orcid_pending. For propagation both orcid and orcid_pending will be considered, only orcid_pending will be propagated. No orcid will be transferred to the receiving result if the author already has associated one orcid or one orcid_pending pid
when writing only orcid_pending will be propagated I meant that the propagation action will mark the added pid as orcid_pending
@ -45,3 +45,3 @@
public static final String PROPAGATION_ORCID_TO_RESULT_FROM_SEM_REL_CLASS_NAME = "Propagation of authors pid to result through semantic relations";
public static final String PROPAGATION_AUTHOR_PID = "ORCID";
public static final String PROPAGATION_AUTHOR_PID_CLASSID = "orcid_pending";
Please remove this and refer to https://code-repo.d4science.org/D-Net/dnet-hadoop/src/branch/master/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/common/ModelConstants.java#L11
@ -46,2 +46,3 @@
public static final String PROPAGATION_AUTHOR_PID = "ORCID";
public static final String PROPAGATION_AUTHOR_PID_CLASSID = "orcid_pending";
public static final String ORCID = "orcid";
Please remove this and refer to https://code-repo.d4science.org/D-Net/dnet-hadoop/src/branch/master/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/common/ModelConstants.java#L10
@ -47,1 +47,3 @@
public static final String PROPAGATION_AUTHOR_PID = "ORCID";
public static final String PROPAGATION_AUTHOR_PID_CLASSID = "orcid_pending";
public static final String ORCID = "orcid";
public static final String PROPAGATION_AUTHOR_PID_CLASSNAME = "Open Researcher and Contributor ID";
Please move this definition in the common https://code-repo.d4science.org/D-Net/dnet-hadoop/src/branch/master/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/common/ModelConstants.java
Minor changes: move a few constants in the common class
ModelConstants.java
done and pushed
WIP:added extention for new author pid (orcid_pending)to added extension for new author pid (orcid_pending)