bergamasco 0.1.4 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -43,6 +43,24 @@ describe Bergamasco::Markdown do
43
43
  expect(metadata["title"]).to eq("Cool DOI's")
44
44
  end
45
45
 
46
+ it 'should read yaml from markdown file' do
47
+ filepath = fixture_path + 'cool-dois.html.md'
48
+ metadata = subject.read_yaml(filepath)
49
+ expect(metadata["title"]).to eq("Cool DOI's")
50
+ end
51
+
52
+ it 'should read yaml for doi metadata' do
53
+ filepath = fixture_path + 'cool-dois.html.md'
54
+ separator = "READMORE"
55
+ metadata = subject.read_yaml_for_doi_metadata(filepath, separator: separator, csl: 'spec/apa.csl', bibliography: 'spec/references.bib')
56
+ expect(metadata["related_identifiers"]).to eq([{:id=>"https://www.w3.org/Provider/Style/URI",
57
+ :related_identifier_type=>"URL",
58
+ :relation_type=>"references"},
59
+ { :id=>"10.1371/JOURNAL.PONE.0115253",
60
+ :related_identifier_type=>"DOI",
61
+ :relation_type=>"references" }])
62
+ end
63
+
46
64
  it 'should write yaml' do
47
65
  filepath = fixture_path + 'cool-dois.yml'
48
66
  text = IO.read(filepath)
@@ -62,7 +80,20 @@ describe Bergamasco::Markdown do
62
80
  it 'should convert markdown' do
63
81
  filepath = fixture_path + 'cool-dois.html.md'
64
82
  file = IO.read(filepath)
65
- html = subject.render_html(file, skip_yaml_header: true)
66
- expect(html).to start_with("<p>In 1998 Tim Berners-Lee coined")
83
+ html = subject.render_html(file, skip_yaml_header: true, csl: 'spec/apa.csl', bibliography: 'spec/references.bib')
84
+ expect(html).to start_with("<p>In 1998 Tim Berners-Lee coined the term cool URIs <span class=\"citation\">(1998)</span>, that is URIs that don’t change.")
85
+ end
86
+
87
+ it 'should extract references' do
88
+ filepath = fixture_path + 'cool-dois.html.md'
89
+ file = IO.read(filepath)
90
+ html = subject.render_html(file, skip_yaml_header: true, csl: 'spec/apa.csl', bibliography: 'spec/references.bib')
91
+ refs = subject.extract_references(html, skip_yaml_header: true, csl: 'spec/apa.csl', bibliography: 'spec/references.bib')
92
+ expect(refs).to eq([{:id=>"https://www.w3.org/Provider/Style/URI",
93
+ :related_identifier_type=>"URL",
94
+ :relation_type=>"references"},
95
+ { :id=>"10.1371/JOURNAL.PONE.0115253",
96
+ :related_identifier_type=>"DOI",
97
+ :relation_type=>"references" }])
67
98
  end
68
99
  end
@@ -0,0 +1,506 @@
1
+ color: $font-color !important;@article{http://doi.org/10.5281/zenodo.32412,
2
+ author = {Mayo, Christine and Hull, Elizabeth A. and Vision, Todd J.},
3
+ title = {{The location of the citation: changing practices in how publications cite original data in the Dryad Digital Repository}},
4
+ publisher = {Zenodo},
5
+ year = {2015},
6
+ doi = {10.5281/zenodo.32412},
7
+ url = {http://zenodo.org/record/32412}
8
+
9
+ }
10
+
11
+ @article{Kratz:2015cr,
12
+ author = {Kratz, John E and Strasser, Carly},
13
+ title = {{Making data count}},
14
+ journal = {Scientific Data},
15
+ year = {2015},
16
+ volume = {2},
17
+ pages = {150039},
18
+ month = aug,
19
+ doi = {10.1038/sdata.2015.39},
20
+ url = {http://www.nature.com/articles/sdata201539}
21
+ }
22
+
23
+ @article{Eysenbach:2006jo,
24
+ author = {Eysenbach, Gunther},
25
+ title = {{Citation advantage of open access articles.}},
26
+ journal = {PLoS biology},
27
+ year = {2006},
28
+ volume = {4},
29
+ number = {5},
30
+ pages = {e157},
31
+ month = may,
32
+ affiliation = {Centre for Global eHealth Innovation, University Health Network, Toronto, Ontario, Canada. geysenba@uhnres.utoronto.ca},
33
+ doi = {10.1371/journal.pbio.0040157},
34
+ pmid = {16683865},
35
+ pmcid = {PMC1459247},
36
+ url = {http://eutils.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=pubmed&id=16683865&retmode=ref&cmd=prlinks},
37
+ uri = {\url{papers3://publication/doi/10.1371/journal.pbio.0040157}}
38
+ }
39
+
40
+ @article{Piwowar:2013cc,
41
+ author = {Piwowar, Heather A and Vision, Todd J},
42
+ title = {{Data reuse and the open data citation advantage}},
43
+ journal = {PeerJ},
44
+ year = {2013},
45
+ volume = {1},
46
+ pages = {e175},
47
+ doi = {10.7717/peerj.175}
48
+ }
49
+
50
+ @data{Irisarri:2013,
51
+ doi = {10.5061/DRYAD.3QD54},
52
+ url = {http://doi.org/10.5061/DRYAD.3QD54},
53
+ author = {Irisarri, Iker and San Mauro, Diego and Abascal, Federico and Ohler, Annemarie and Vences, Miguel and Zardoya, Rafael },
54
+ publisher = {Dryad Digital Repository},
55
+ title = {Data from: The origin of modern frogs (Neobatrachia) was accompanied by acceleration in mitochondrial and nuclear substitution rates},
56
+ year = {2013}
57
+ }
58
+
59
+ @article{Irisarri:2012gv,
60
+ author = {Irisarri, Iker and San Mauro, Diego and Abascal, Federico and Ohler, Annemarie and Vences, Miguel and Zardoya, Rafael},
61
+ title = {{The origin of modern frogs (Neobatrachia) was accompanied by acceleration in mitochondrial and nuclear substitution rates.}},
62
+ journal = {BMC genomics},
63
+ year = {2012},
64
+ volume = {13},
65
+ pages = {626},
66
+ doi = {10.1186/1471-2164-13-626},
67
+ pmid = {23153022},
68
+ pmcid = {PMC3551647},
69
+ url = {http://www.biomedcentral.com/1471-2164/13/626/}
70
+ }
71
+
72
+ @data{https://doi.org/10.5281/ZENODO.20046,
73
+ url = {https://doi.org/10.5281/ZENODO.20046},
74
+ author = {Fenner, Martin and Jen Song, Jen and Dennis, Zach and Whitwell, Martyn and Osowski, Joe and Ivimey-Cook, Ruth and Cave, Richard and Lin, Jennifer and Chodacki, John},
75
+ publisher = {Zenodo},
76
+ title = {Lagotto 4.2.1},
77
+ year = {2015}
78
+ }
79
+
80
+ @data{Barlow:1818,
81
+ doi = {10.7299/X7MK6BM6},
82
+ url = {http://doi.org/10.7299/X7MK6BM6},
83
+ author = {Chester Barlow},
84
+ publisher = {Museum of Vertebrate Zoology},
85
+ title = {Pilot Boat #3, on the bar},
86
+ year = {1818}
87
+ }
88
+
89
+ @data{Oshu:1955,
90
+ doi = {10.6083/M4MP51XQ},
91
+ url = {http://doi.org/10.6083/M4MP51XQ},
92
+ author = {University of Oregon Medical School},
93
+ publisher = {Oregon Health & Science University},
94
+ title = {Unidentified man reading a book in the Old Library},
95
+ year = {1955}
96
+ }
97
+
98
+ @data{Unknown:1926,
99
+ doi = {10.7282/T38C9WT9},
100
+ url = {http://doi.org/10.7282/T38C9WT9},
101
+ author = {Unknown},
102
+ title = {Workmen digging up the road at the corner of Belmont Avenue and Burhans Street in Paterson, New Jersey},
103
+ year = {1926}
104
+ }
105
+
106
+ @misc{https://orcid.org/about/what-is-orcid/principles,
107
+ url = {https://orcid.org/about/what-is-orcid/principles},
108
+ publisher = {ORCID},
109
+ title = {Our Principles},
110
+ year = {2011}
111
+ }
112
+
113
+ @misc{https://doi.org/10.3932/ETHZ-A-000159123,
114
+ doi = {10.3932/ETHZ-A-000159123},
115
+ url = {https://doi.org/10.3932/ETHZ-A-000159123},
116
+ author = {Unknown},
117
+ publisher = {ETH-Bibliothek Zürich, Bildarchiv},
118
+ title = {Hannover, Blick auf Hannover},
119
+ year = {1931}
120
+ }
121
+ @misc{https://doi.org/10.5281/ZENODO.30799,
122
+ doi = {10.5281/ZENODO.30799},
123
+ url = {https://doi.org/10.5281/ZENODO.30799},
124
+ author = {Fenner, Martin and Demeranville, Tom and Kotarski, Rachael and Vision, Todd and Rueda, Laura and Dasler, Robin and Haak, Laure and Cruse, Patricia and {THOR Consortium}},
125
+ publisher = {Zenodo},
126
+ title = {D2.1: Artefact, Contributor, and Organisation Relationship Data Schema},
127
+ year = {2015}
128
+ }
129
+ @misc{https://doi.org/10.6084/M9.FIGSHARE.1314859,
130
+ url = {https://doi.org/10.6084/M9.FIGSHARE.1314859},
131
+ author = {Bilder, Geoffrey and Lin, Jennifer and Neylon, Cameron},
132
+ publisher = {Figshare},
133
+ title = {Principles for Open Scholarly Infrastructures-v1},
134
+ year = {2015}
135
+ }
136
+
137
+ @misc{https://doi.org/10.5281/zenodo.34671,
138
+ author = {Rueda, Laura},
139
+ title = {{DataCite Profiles and ORCID Auto-Update, an Introduction to DataCite}},
140
+ publisher = {Zenodo},
141
+ year = 2015,
142
+ url = {https://doi.org/10.5281/zenodo.34671}
143
+ }
144
+
145
+ @misc{https://doi.org/10.5281/zenodo.34670,
146
+ author = {Brown, Josh},
147
+ title = {{DataCite/ORCID auto-update and inbox, all you need to know}},
148
+ publisher = {Zenodo},
149
+ year = 2015,
150
+ url = {https://doi.org/10.5281/zenodo.34670}
151
+ }
152
+
153
+ @misc{https://doi.org/10.5281/zenodo.34673,
154
+ author = {Fenner, Martin},
155
+ title = {DataCite/ORCID Integration},
156
+ publisher = {Zenodo},
157
+ year = 2015,
158
+ url = {https://doi.org/10.5281/zenodo.34673}
159
+ }
160
+
161
+ @article{https://doi.org/10.5334/jors.be,
162
+ author = {Katz, Daniel},
163
+ url = {https://doi.org/10.5334/jors.be},
164
+ year = 2014,
165
+ month = {sep},
166
+ publisher = {Ubiquity Press, Ltd.},
167
+ volume = {2},
168
+ number = {1},
169
+ pages = {e20},
170
+ title = {Transitive Credit as a Means to Address Social and Technological Concerns Stemming from Citation and Attribution of Digital Products},
171
+ journal = {Journal of Open Research Software}
172
+ }
173
+ @misc{https://doi.org/10.5281/zenodo.31780,
174
+ author = {Bilder, Geoffrey and Fenner, Martin},
175
+ title = {DOI Myths... busted},
176
+ year = 2015,
177
+ publisher = {Zenodo},
178
+ url = {https://doi.org/10.5281/zenodo.31780}
179
+ }
180
+ @misc{https://doi.org/10.5281/zenodo.31782,
181
+ author = {Angjeli, Anila},
182
+ title = {Managing identities: Interconnecting research and other domains},
183
+ year = 2015,
184
+ publisher = {Zenodo},
185
+ url = {https://doi.org/10.5281/zenodo.31782}
186
+ }
187
+ @misc{https://doi.org/10.5281/zenodo.31783,
188
+ author = {Kunze, John},
189
+ title = {Names, Things, and Open Identifier Infrastructure: N2T and ARKs},
190
+ year = 2015,
191
+ publisher = {Zenodo},
192
+ url = {https://doi.org/10.5281/zenodo.31783}
193
+ }
194
+ @misc{https://doi.org/10.5281/zenodo.31784,
195
+ author = {Lannom, Larry},
196
+ title = {DONA Foundation, Administering the Global Handle Registry (GHR)},
197
+ year = 2015,
198
+ publisher = {Zenodo},
199
+ url = {https://doi.org/10.5281/zenodo.31784}
200
+ }
201
+ @misc{https://doi.org/10.5281/zenodo.31785,
202
+ author = {Schwardmann, Ulrich},
203
+ title = {ePIC - Persistent Identifiers for eResearch},
204
+ year = 2015,
205
+ publisher = {Zenodo},
206
+ url = {https://doi.org/10.5281/zenodo.31785}
207
+ }
208
+ @misc{https://doi.org/10.5281/zenodo.31786,
209
+ author = {Cambon-Thomsen, Anne},
210
+ title = {BRIF: Bioresource research impact factor (framework)},
211
+ year = 2015,
212
+ publisher = {Zenodo},
213
+ url = {https://doi.org/10.5281/zenodo.31786}
214
+ }
215
+ @misc{https://doi.org/10.5281/zenodo.31787,
216
+ author = {Dallmeier-Thiessen, Sünje},
217
+ title = {Enabling services for data intensive research with THOR},
218
+ year = 2015,
219
+ publisher = {Zenodo},
220
+ url = {https://doi.org/10.5281/zenodo.31787}
221
+ }
222
+ @misc{https://doi.org/10.5281/zenodo.31788,
223
+ author = {Lehnert, Kerstin},
224
+ title = {IGSN: International Geo Sample Number. Unambiguous Citation of Physical Samples},
225
+ year = 2015,
226
+ publisher = {Zenodo},
227
+ url = {https://doi.org/10.5281/zenodo.31788}
228
+ }
229
+ @misc{https://doi.org/10.5281/zenodo.31789,
230
+ author = {Lin, Jennifer},
231
+ title = {Making Data Count},
232
+ year = 2015,
233
+ publisher = {Zenodo},
234
+ url = {https://doi.org/10.5281/zenodo.31789}
235
+ }
236
+ @misc{https://doi.org/10.5281/zenodo.31790,
237
+ author = {Weigel, Tobias},
238
+ title = {PID usage at DKRZ, the role of RDA and ePIC policies},
239
+ year = 2015,
240
+ publisher = {Zenodo},
241
+ url = {https://doi.org/10.5281/zenodo.31790}
242
+ }
243
+ @misc{https://doi.org/10.5281/zenodo.31792,
244
+ author = {Paglione, Laura},
245
+ title = {Connecting people to their scholarly activity and outputs},
246
+ year = 2015,
247
+ publisher = {Zenodo},
248
+ url = {https://doi.org/10.5281/zenodo.31792}
249
+ }
250
+ @misc{https://vimeo.com/147743305,
251
+ author = {Rueda, Laura and Brown, Josh and Fenner, Martin},
252
+ title = {DataCite Profiles and ORCID Auto-Update},
253
+ publisher = {DataCite},
254
+ year = 2015,
255
+ url = {https://vimeo.com/147743305}
256
+ }
257
+ @misc{https://blog.datacite.org/data-driven-development,
258
+ author = {Fenner, Martin},
259
+ title = {Data-Driven Development},
260
+ publisher = {DataCite Blog},
261
+ year = 2015,
262
+ url = {https://blog.datacite.org/data-driven-development}
263
+ }
264
+ @misc{https://blog.datacite.org/explaining-the-datacite-orcid-auto-update,
265
+ author = {Fenner, Martin},
266
+ title = {Explaining the DataCite/ORCID Auto-update},
267
+ publisher = {DataCite Blog},
268
+ year = 2015,
269
+ url = {https://blog.datacite.org/explaining-the-datacite-orcid-auto-update}
270
+ }
271
+ @misc{https://blog.datacite.org/adding-references-to-the-datacite-blog,
272
+ author = {Fenner, Martin},
273
+ title = {Adding References to the {DataCite} Blog},
274
+ publisher = {DataCite Blog},
275
+ year = 2015,
276
+ url = {https://blog.datacite.org/adding-references-to-the-datacite-blog}
277
+ }
278
+ @misc{https://blog.datacite.org/recap,
279
+ author = {Cruse, Trisha},
280
+ title = {Recap: Persistent Identifiers in {Paris}},
281
+ publisher = {DataCite Blog},
282
+ year = 2015,
283
+ url = {https://blog.datacite.org/recap}
284
+ }
285
+ @article{http://doi.org/10.2312/RE3.008,
286
+ url = {http://doi.org/10.2312/RE3.008},
287
+ author = {Rücknagel, Jessika and Vierkant, Paul and Ulrich, Robert and Kloska, Gabriele and Schnepf, Edeltraud and Fichtmüller, David and Reuter, Evelyn and Semrau, Angelika and Kindling, Maxi and Pampel, H. and Witt, Michael and Fritze, Florian and van de Sandt, Stephanie and Klump, Jens and Goebelbecker, Hans-Jürgen and Skarupianski, Michael and Bertelmann, Roland and Schirmbacher, Peter and Scholze, Frank and Kramer, Claudia and Fuchs, Claudio and Spier, Shaked and Kirchhoff, Agnes },
288
+ publisher = {GFZ Germans Research Center for Geosciences},
289
+ title = {Metadata Schema for the Description of Research Data Repositories},
290
+ year = {2015}
291
+ }
292
+ @article{http://doi.org/10.1103/physrevlett.116.061102,
293
+ url = {http://doi.org/10.1103/physrevlett.116.061102},
294
+ year = 2016,
295
+ month = {feb},
296
+ publisher = {American Physical Society ({APS})},
297
+ volume = {116},
298
+ number = {6},
299
+ author = {Abbott, B.P. and Abbott, R. and Abbott, T.D. and Abernathy, M. R. and Acernese, F. and Ackley, K. and Adams, C. and Adams, T. and Addesso, P. and Zweizig, J. },
300
+ title = {Observation of Gravitational Waves from a Binary Black Hole Merger},
301
+ journal = {Phys. Rev. Lett.}
302
+ }
303
+ @data{http://doi.org/10.7935/K5MW2F23,
304
+ url = {http://doi.org/10.7935/K5MW2F23},
305
+ author = {{LIGO Scientific Collaboration}},
306
+ publisher = {LIGO Scientific Collaboration},
307
+ title = {Data release for event GW150914},
308
+ year = {2016}
309
+ }
310
+ @data{http://doi.org/10.7484/INSPIREHEP.DATA.26B4.TY5F,
311
+ url = {http://doi.org/10.7484/INSPIREHEP.DATA.26B4.TY5F},
312
+ author = {Aad, Georges and Abajyan, Tatevik and Abbott, Brad and Abdallah, Jalal and Abdel Khalek, Samah and Abdinov, Ovsat and Aben, Rosemarie and Abi, Babak and Abolins, Maris and Zwalinski, Lukasz },
313
+ publisher = {HEPDATA},
314
+ title = {Data from Figure 7 from: Measurements of Higgs boson production and couplings in diboson final states with the ATLAS detector at the LHC},
315
+ year = {2013}
316
+ }
317
+ @data{http://doi.org/10.7484/INSPIREHEP.DATA.RF5P.6M3K,
318
+ url = {http://doi.org/10.7484/INSPIREHEP.DATA.RF5P.6M3K},
319
+ author = {Aad, Georges and Abajyan, Tatevik and Abbott, Brad and Abdallah, Jalal and Abdel Khalek, Samah and Abdinov, Ovsat and Aben, Rosemarie and Abi, Babak and Abolins, Maris and Zwalinski, Lukasz },
320
+ publisher = {HEPDATA},
321
+ title = {Data from Figure 7 from: Measurements of Higgs boson production and couplings in diboson final states with the ATLAS detector at the LHC},
322
+ year = {2013}
323
+ }
324
+ @data{http://doi.org/10.7484/INSPIREHEP.DATA.A78C.HK44,
325
+ url = {http://doi.org/10.7484/INSPIREHEP.DATA.A78C.HK44},
326
+ author = {Aad, Georges and Abajyan, Tatevik and Abbott, Brad and Abdallah, Jalal and Abdel Khalek, Samah and Abdinov, Ovsat and Aben, Rosemarie and Abi, Babak and Abolins, Maris and Zwalinski, Lukasz },
327
+ publisher = {HEPDATA},
328
+ title = {Data from Figure 7 from: Measurements of Higgs boson production and couplings in diboson final states with the ATLAS detector at the LHC},
329
+ year = {2013}
330
+ }
331
+ @article{http://doi.org/10.5438/0010,
332
+ url = {http://doi.org/10.5438/0010},
333
+ author = {{DataCite Metadata Working Group}},
334
+ publisher = {DataCite e.V.},
335
+ title = {DataCite Metadata Schema for the Publication and Citation of Research Data v3.1},
336
+ year = {2014}
337
+ }
338
+ @misc{http://doi.org/10.5281/ZENODO.49516,
339
+ url = {http://doi.org/10.5281/ZENODO.49516},
340
+ author = {Fenner, Martin and Wass, Joe and Song, Jen and Dennis, Zach and Whitwell, Martyn and Osowski, Joe and Ivimey-Cook, Ruth and Cave, Richard and Lin, Jennifer and Chodacki, John },
341
+ publisher = {Zenodo},
342
+ title = {Lagotto 5.0.1},
343
+ year = {2016}
344
+ }
345
+ @data{http://doi.org/10.3334/CDIAC/00001,
346
+ url = {http://doi.org/10.3334/CDIAC/00001},
347
+ author = {{Environmental Sciences Division, Oak Ridge National Laboratory}},
348
+ publisher = {Carbon Dioxide Information Analysis Center (CDIAC)},
349
+ title = {Global, Regional, and National Fossil-Fuel CO2 Emissions},
350
+ year = {2009}
351
+ }
352
+ @misc{https://blog.datacite.org/to-better-understand-research-communication-we-need-a-groid-group-object-identifier,
353
+ author = {Katz, Dan S.},
354
+ title = {To better understand research communication, we need a GROID (group object identifier)},
355
+ publisher = {DataCite Blog},
356
+ year = 2016,
357
+ url = {https://blog.datacite.org/to-better-understand-research-communication-we-need-a-groid-group-object-identifier}
358
+ }
359
+ @misc{https://blog.datacite.org/reference-lists-and-tables-of-content,
360
+ author = {Fenner, Martin},
361
+ title = {Reference Lists and Tables of Content},
362
+ publisher = {DataCite Blog},
363
+ year = 2015,
364
+ url = {https://blog.datacite.org/reference-lists-and-tables-of-content}
365
+ }
366
+ @misc{https://figshare.com/blog/Unveiling_figshare_Collections_a_new_way_to_group_content/202,
367
+ author = {Hyndman, Alan},
368
+ title = {Unveiling figshare 'Collections' - a new way to group content},
369
+ publisher = {Figshare Blog},
370
+ year = 2016,
371
+ url = {https://figshare.com/blog/Unveiling_figshare_Collections_a_new_way_to_group_content/202}
372
+ }
373
+ @article{http://doi.org/10.15252/msb.20156658,
374
+ doi = {10.15252/msb.20156658},
375
+ url = {http://doi.org/10.15252/msb.20156658},
376
+ year = 2015,
377
+ month = {dec},
378
+ publisher = {{EMBO}},
379
+ volume = {11},
380
+ number = {12},
381
+ pages = {847--847},
382
+ author = {J. McEntyre and U. Sarkans and A. Brazma},
383
+ title = {The {BioStudies} database},
384
+ journal = {Molecular Systems Biology}
385
+ }
386
+ @article{http://doi.org/10.7717/peerj-cs.1,
387
+ doi = {10.7717/peerj-cs.1},
388
+ url = {http://doi.org/10.7717/peerj-cs.1},
389
+ year = 2015,
390
+ month = {may},
391
+ publisher = {{PeerJ}},
392
+ volume = {1},
393
+ pages = {e1},
394
+ author = {Starr, Joan and Castro, Eleni and Crosas, Merc{\`{e}} and Dumontier, Michel and Downs, Robert R. and Duerr, Ruth and Haak, Laurel L. and Haendel, Melissa and Herman, Ivan and Hodson, Simon and Hourcl{\'{e}}, Joe and Kratz, John Ernest and Lin, Jennifer and Nielsen, Lars Holm and Nurnberger, Amy and Proell, Stefan and Rauber, Andreas and Sacchi, Simone and Smith, Arthur and Taylor, Mike and Clark, Tim},
395
+ title = {Achieving human and machine accessibility of cited data in scholarly publications},
396
+ journal = {PeerJ Computer Science}
397
+ }
398
+ @misc{https://blog.datacite.org/thinking-about-csv,
399
+ author = {Fenner, Martin},
400
+ title = {Thinking about {CSV}},
401
+ publisher = {DataCite Blog},
402
+ year = 2016,
403
+ url = {https://blog.datacite.org/thinking-about-csv}
404
+ }
405
+ @misc{https://github.com/datacite/jekyll-csvy,
406
+ author = {Fenner, Martin},
407
+ title = {{jekyll-csvy}: Jekyll converter for {CSVY} files},
408
+ publisher = {GitHub},
409
+ year = 2016,
410
+ url = {https://github.com/datacite/jekyll-csvy}
411
+ }
412
+ @misc{https://cran.r-project.org/web/packages/rio/index.html,
413
+ author = {Becker, Jason and Chan, Chung-hong and Chan, Geoffrey CH and Leeper, Thomas J. and Gandrud, Christopher and MacDonald, Andrew and Zahn, Ista},
414
+ title = {rio: A Swiss-Army Knife for Data {I/O}},
415
+ publisher = {CRAN},
416
+ year = 2016,
417
+ url = {https://cran.r-project.org/web/packages/rio/index.html}
418
+ }
419
+ @misc{http://doi.org/10.6084/M9.FIGSHARE.3364708.V1,
420
+ doi = {10.6084/M9.FIGSHARE.3364708.V1},
421
+ url = {http://doi.org/10.6084/M9.FIGSHARE.3364708.V1},
422
+ author = {Karcher, Sebastian },
423
+ publisher = {Figshare},
424
+ title = {Zotero for Data Repositories},
425
+ year = {2016}
426
+ }
427
+ @inproceedings{http://doi.org/10.1145/2783446.2783605,
428
+ doi = {10.1145/2783446.2783605},
429
+ url = {http://doi.org/10.1145/2783446.2783605},
430
+ year = 2015,
431
+ publisher = {Association for Computing Machinery ({ACM})},
432
+ author = {Kristian Garza and Carole Goble and John Brooke and Caroline Jay},
433
+ title = {Framing the community data system interface},
434
+ booktitle = {Proceedings of the 2015 British {HCI} Conference on - British {HCI} {\textquotesingle}15}
435
+ }
436
+ @article{http://doi.org/10.7717/peerj-cs.86,
437
+ doi = {10.7717/peerj-cs.86},
438
+ url = {https://peerj.com/articles/cs-86/},
439
+ year = 2016,
440
+ month = {september},
441
+ publisher = {{PeerJ}},
442
+ author = {AM Smith and DS Katz and KE Niemeyer and FORCE11-Software-Citation-Working-Group},
443
+ title = {Software citation principles},
444
+ journal = {PeerJ Computer Science}
445
+ }
446
+ @article{http://doi.org/10.5438/0012,
447
+ url = {http://doi.org/10.5438/0012},
448
+ author = {{DataCite Metadata Working Group}},
449
+ publisher = {DataCite e.V.},
450
+ title = {DataCite Metadata Schema for the Publication and Citation of Research Data v4.0},
451
+ year = {2016}
452
+ }
453
+ @misc{https://doi.org/10.5438/2906,
454
+ doi = {10.5438/2906},
455
+ url = {https://doi.org/10.5438/2906},
456
+ author = {Cruse, Patricia and Haak, Laure and Pentz, Ed},
457
+ publisher = {ORCID},
458
+ title = {Organization Identifier Project: A Way Forward},
459
+ year = {2016}
460
+ }
461
+ @misc{https://doi.org/10.5438/7885,
462
+ doi = {10.5438/7885},
463
+ url = {https://doi.org/10.5438/7885},
464
+ author = {Fenner, Martin and Paglione, Laura and Demeranville, Tom and Bilder, Geoff},
465
+ publisher = {ORCID},
466
+ title = {Technical Considerations for an Organization Identifier Registry},
467
+ year = {2016}
468
+ }
469
+ @misc{https://doi.org/10.5438/4716,
470
+ doi = {10.5438/4716},
471
+ url = {https://doi.org/10.5438/4716},
472
+ author = {Bilder, Geoffrey and Brown, Josh and Demeranville, Tom},
473
+ publisher = {ORCID},
474
+ title = {Organisation identifiers: current provider survey},
475
+ year = {2016}
476
+ }
477
+ @misc{https://doi.org/10.6084/M9.FIGSHARE.3479141,
478
+ doi = {10.6084/M9.FIGSHARE.3479141},
479
+ url = {https://doi.org/10.6084/M9.FIGSHARE.3479141},
480
+ author = {Tom Demeranville and Josh Brown and Martin Fenner and Patricia Cruse and Laure Haak and Laura Paglione and Geoffrey Bilder and Jennifer Lin and Ed Pentz},
481
+ publisher = {Figshare},
482
+ title = {Organisation Identifiers - Minimum viable product requirements},
483
+ year = {2016}
484
+ }
485
+ @article{https://doi.org/10.1371/journal.pone.0115253,
486
+ title = {Scholarly {Context} {Not} {Found}: {One} in {Five} {Articles} {Suffers} from {Reference} {Rot}},
487
+ volume = {9},
488
+ issn = {1932-6203},
489
+ shorttitle = {Scholarly {Context} {Not} {Found}},
490
+ url = {http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0115253},
491
+ doi = {10.1371/journal.pone.0115253},
492
+ number = {12},
493
+ journal = {PLOS ONE},
494
+ author = {Klein, Martin and Sompel, Herbert Van de and Sanderson, Robert and Shankar, Harihar and Balakireva, Lyudmila and Zhou, Ke and Tobin, Richard},
495
+ month = dec,
496
+ year = {2014},
497
+ keywords = {Archives, Communications, Computer and information sciences, Evolutionary immunology, Extrapolation, Internet, Publication ethics, Species interactions},
498
+ pages = {e115253}
499
+ }
500
+ @misc{https://www.w3.org/Provider/Style/URI,
501
+ title = {Hypertext {Style}: {Cool} {URIs} don't change.},
502
+ author = {Berners-Lee, Tim},
503
+ url = {https://www.w3.org/Provider/Style/URI},
504
+ year = {1998},
505
+ urldate = {2016-12-14}
506
+ }