Skip to content

Commit

Permalink
clarify that we'll send citations to DataCite #4821
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Nov 29, 2018
1 parent 4dd10bd commit 17cbf37
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/sphinx-guides/source/admin/make-data-count.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ The following metrics will be sent for each published dataset:

- Views ("investigations" in COUNTER)
- Downloads ("requests" in COUNTER)
- Citations ("relatedIdentifier" based on "Related Dataset")

Retrieving Make Data Count Metrics from the DataCite Hub
--------------------------------------------------------
Expand Down
23 changes: 23 additions & 0 deletions src/main/java/edu/harvard/iq/dataverse/api/MakeDataCountApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,29 @@
@Path("admin/makeDataCount")
public class MakeDataCountApi extends AbstractApiBean {

/**
* TODO: For each dataset, send the following:
*
* - views
*
* - downloads
*
* - citations (based on "Related Dataset"). "DataCite already supports
* linking to publications in the DOI-related metadata that you submit with
* your DOIs using the 'relatedIdentifier' element. See the DataCite
* EventData Guide ( https://support.datacite.org/docs/eventdata-guide ).
* These publication linkages are parsed and added to the EventData source.
* So, the "hub" is used for reporting Investigations and Requests as
* counts, whereas every individual citation event is reported in the DOI
* metadata." mbjones at
* https://github.com/IQSS/dataverse/issues/4821#issuecomment-440740205
*
* TODO: While we're working on sending citations for related *datasets* to
* DataCite we should also strongly consider sending citations for related
* *publications* (articles) as well. See
* https://github.com/IQSS/dataverse/issues/2917 and
* https://github.com/IQSS/dataverse/issues/2778
*/
@POST
@Path("sendToHub")
public Response sendDataToHub() {
Expand Down

0 comments on commit 17cbf37

Please sign in to comment.