-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreferences.bib
More file actions
2264 lines (2079 loc) · 137 KB
/
Copy pathreferences.bib
File metadata and controls
2264 lines (2079 loc) · 137 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@article{Nakagawa:2015bn,
author = {Nakagawa, Shinichi and Parker, Timothy H},
title = {{Replicating research in ecology and evolution: feasibility, incentives, and the cost-benefit conundrum}},
journal = {BMC Biology},
year = {2015},
pages = {1--6},
month = oct,
publisher = {BMC Biology},
doi = {10.1186/s12915-015-0196-3},
read = {Yes},
rating = {0},
date-added = {2018-04-06T05:11:34GMT},
date-modified = {2018-04-12T01:12:22GMT},
abstract = {BMC Biology, 2015, doi:10.1186/s12915-015-0196-3},
url = {http://dx.doi.org/10.1186/s12915-015-0196-3},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/1B/1BAF880C-F056-42FE-9136-EE0F9C9E77B3.pdf},
file = {{1BAF880C-F056-42FE-9136-EE0F9C9E77B3.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/1B/1BAF880C-F056-42FE-9136-EE0F9C9E77B3.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1186/s12915-015-0196-3}}
}
@article{Peng:2009vn,
author = {Peng, R D},
title = {{Reproducible research and biostatistics}},
journal = {Biostatistics},
year = {2009},
volume = {10},
number = {3},
pages = {405--408},
rating = {0},
date-added = {2018-05-23T00:14:30GMT},
date-modified = {2018-05-23T00:16:00GMT},
uri = {\url{papers3://publication/uuid/C0AFFB74-07A1-450A-8375-8800918D9744}}
}
@article{Patil:2016tm,
author = {Patil, P and Peng, R D and Leek, J},
title = {{A statistical definition for reproducibility and replicability}},
journal = {bioRxiv},
year = {2016},
read = {Yes},
rating = {0},
date-added = {2016-08-28T23:40:32GMT},
date-modified = {2018-05-23T00:19:39GMT},
abstract = {Abstract Everyone agrees that reproducibility and replicability are fundamental characteristics of scientific studies. These topics are attracting increasing attention, scrutiny, and debate both in the popular press and the scientific literature. But there are no formal ...
},
url = {http://www.biorxiv.org/content/early/2016/07/29/066803.abstract},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/F7/F7A21265-C793-4F3C-A388-BE87539CC888.pdf},
file = {{F7A21265-C793-4F3C-A388-BE87539CC888.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/F7/F7A21265-C793-4F3C-A388-BE87539CC888.pdf:application/pdf}},
uri = {\url{papers3://publication/uuid/AD68935E-F032-43AA-AB38-599D39161F05}}
}
@article{Sutherland:2017hc,
author = {Sutherland, William J and Wordley, Claire F R},
title = {{Evidence complacency hampers conservation}},
journal = {Nature Ecology {\&} Evolution},
year = {2017},
volume = {1},
number = {9},
pages = {1--2},
month = aug,
publisher = {Springer US},
doi = {10.1038/s41559-017-0244-1},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-05-09T02:17:40GMT},
date-modified = {2018-05-23T01:14:55GMT},
abstract = {Nature Ecology {\&} Evolution, doi:10.1038/s41559-017-0244-1},
url = {http://dx.doi.org/10.1038/s41559-017-0244-1},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/3B/3B2A8864-83E2-40CC-842B-2B99F3719ECE.pdf},
file = {{3B2A8864-83E2-40CC-842B-2B99F3719ECE.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/3B/3B2A8864-83E2-40CC-842B-2B99F3719ECE.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1038/s41559-017-0244-1}}
}
@Article{Nature:un,
author = {Baker, Monya},
title = {Is there a reproducibility crisis?},
journal = {nature.com},
year = {2016},
abstract = {Failing to reproduce results is a rite of passage, says Marcus Munafo, a biological psychologist at the University of Bristol, UK, who has a long- standing interest in scientific reproducibility . When he was a student, he says, {\textquotedblleft}I tried to replicate what looked simple from the literature, and wasn't able to. Then I had a crisis of confidence, and then I learned that my experience wasn't uncommon.{\textquotedblright} The challenge is not to eliminate problems with reproducibility in published work. Being at the cutting edge of science means that some- times results will not be robust, says~{\ldots}
},
date-added = {2018-04-18T01:01:50GMT},
date-modified = {2018-04-18T01:35:29GMT},
file = {{92C5B1DC-6B09-48B0-B3A8-BF29F2FFE2B3.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/92/92C5B1DC-6B09-48B0-B3A8-BF29F2FFE2B3.pdf:application/pdf}},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/92/92C5B1DC-6B09-48B0-B3A8-BF29F2FFE2B3.pdf},
rating = {0},
uri = {\url{papers3://publication/uuid/5901A0BB-064F-4834-9E41-7CDD9FD8E93B}},
url = {https://www.nature.com/polopoly_fs/1.19970.1469695948!/menu/main/topColumns/topLeftColumn/pdf/533452a.pdf?origin=ppub},
}
@article{OpenScienceCollaboration:2015cn,
author = {{Open Science Collaboration}},
title = {{Estimating the reproducibility of psychological science}},
journal = {Science (New York, N.Y.)},
year = {2015},
volume = {349},
number = {6251},
pages = {aac4716--aac4716},
month = aug,
keywords = {psychology, replication, reproducibility},
doi = {10.1126/science.aac4716},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-04-18T02:16:06GMT},
date-modified = {2018-04-18T05:31:35GMT},
url = {http://www.sciencemag.org/cgi/doi/10.1126/science.aac4716},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/5C/5C3661FB-2CB0-4296-86D5-04BED7CDBB84.pdf},
file = {{5C3661FB-2CB0-4296-86D5-04BED7CDBB84.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/5C/5C3661FB-2CB0-4296-86D5-04BED7CDBB84.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1126/science.aac4716}}
}
@article{Fidler:2017he,
author = {Fidler, Fiona and Chee, Yung En and Wintle, Brendan A and Burgman, Mark A and McCarthy, Michael A and Gordon, Ascelin},
title = {{Metaresearch for Evaluating Reproducibility in Ecology and Evolution}},
journal = {BioScience},
year = {2017},
pages = {biw159--8},
month = jan,
keywords = {metaresearch, open science, publication bias, reproducibility, transparency},
doi = {10.1093/biosci/biw159},
language = {English},
read = {Yes},
rating = {0},
date-added = {2017-08-07T05:24:18GMT},
date-modified = {2018-04-12T01:11:05GMT},
url = {https://academic.oup.com/bioscience/article-lookup/doi/10.1093/biosci/biw159},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/82/82B3D18E-39FC-4B5F-88AD-A58923370E2B.pdf},
file = {{82B3D18E-39FC-4B5F-88AD-A58923370E2B.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/82/82B3D18E-39FC-4B5F-88AD-A58923370E2B.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1093/biosci/biw159}}
}
@article{Law:2017ia,
author = {Law, Elizabeth A and Ferraro, Paul J and Arcese, Peter and Bryan, Brett A and Davis, Katrina and Gordon, Ascelin and Holden, Matthew H and Iacona, Gwenllian and Martinez, Raymundo Marcos and McAlpine, Clive A and Rhodes, Jonathan R and Sze, Jocelyne S and Wilson, Kerrie A},
title = {{Projecting the performance of conservation interventions}},
journal = {BIOC},
year = {2017},
volume = {215},
pages = {142--151},
month = sep,
publisher = {Elsevier},
doi = {10.1016/j.biocon.2017.08.029},
read = {Yes},
rating = {0},
date-added = {2017-12-18T01:57:05GMT},
date-modified = {2017-12-21T02:37:34GMT},
abstract = {Biological Conservation, 215 (2017) 142-151. doi:10.1016/j.biocon.2017.08.029},
url = {http://dx.doi.org/10.1016/j.biocon.2017.08.029},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/38/38D02D3B-3170-4E73-9A3E-6870CD6E2FE9.pdf},
file = {{38D02D3B-3170-4E73-9A3E-6870CD6E2FE9.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/38/38D02D3B-3170-4E73-9A3E-6870CD6E2FE9.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.biocon.2017.08.029}}
}
@article{TorontoInternationalDataReleaseWorkshopAuthors:2009jh,
author = {{Toronto International Data Release Workshop Authors} and Birney, Ewan and Hudson, Thomas J and Green, Eric D and Gunter, Chris and Eddy, Sean and Rogers, Jane and Harris, Jennifer R and Ehrlich, S Dusko and Apweiler, Rolf and Austin, Christopher P and Berglund, Lisa and Bobrow, Martin and Bountra, Chas and Brookes, Anthony J and Cambon-Thomsen, Anne and Carter, Nigel P and Chisholm, Rex L and Contreras, Jorge L and Cooke, Robert M and Crosby, William L and Dewar, Ken and Durbin, Richard and Dyke, Stephanie O M and Ecker, Joseph R and El Emam, Khaled and Feuk, Lars and Gabriel, Stacey B and Gallacher, John and Gelbart, William M and Granell, Antoni and Guarner, Francisco and Hubbard, Tim and Jackson, Scott A and Jennings, Jennifer L and Joly, Yann and Jones, Steven M and Kaye, Jane and Kennedy, Karen L and Knoppers, Bartha Maria and Kyrpides, Nikos C and Lowrance, William W and Luo, Jingchu and MacKay, John J and Mart{\'\i}n-Rivera, Luis and McCombie, W Richard and McPherson, John D and Miller, Linda and Miller, Webb and Moerman, Don and Mooser, Vincent and Morton, Cynthia C and Ostell, James M and Ouellette, B F Francis and Parkhill, Julian and Raina, Parminder S and Rawlings, Christopher and Scherer, Steven E and Scherer, Stephen W and Schofield, Paul N and Sensen, Christoph W and Stodden, Victoria C and Sussman, Michael R and Tanaka, Toshihiro and Thornton, Janet and Tsunoda, Tatsuhiko and Valle, David and Vuorio, Eero I and Walker, Neil M and Wallace, Susan and Weinstock, George and Whitman, William B and Worley, Kim C and Wu, Cathy and Wu, Jiayan and Yu, Jun},
title = {{Prepublication data sharing.}},
journal = {Nature},
year = {2009},
volume = {461},
number = {7261},
pages = {168--170},
month = sep,
doi = {10.1038/461168a},
pmid = {19741685},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:04GMT},
date-modified = {2018-05-15T12:22:48GMT},
abstract = {Rapid release of prepublication data has served the field of genomics well. Attendees at a workshop in Toronto recommend extending the practice to other biological data sets.},
url = {http://www.nature.com/doifinder/10.1038/461168a},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/1D/1DD57951-50C1-47D5-943A-D90AE3EFF470.pdf},
file = {{1DD57951-50C1-47D5-943A-D90AE3EFF470.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/1D/1DD57951-50C1-47D5-943A-D90AE3EFF470.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1038/461168a}}
}
@article{Anonymous:a1kBf1q9,
author = {Ram, Karthik},
title = {{Git can facilitate greater reproducibility and increased transparency in science.}},
journal = {Source code for biology and medicine},
year = {2013},
volume = {8},
number = {1},
pages = {7},
publisher = {BioMed Central},
affiliation = {Environmental Science, Policy, and Management, University of California, Berkeley, Berkeley, CA 94720, USA. karthik.ram@berkeley.edu.},
doi = {10.1186/1751-0473-8-7},
pmid = {23448176},
language = {English},
rating = {0},
date-added = {2018-02-20T02:49:04GMT},
date-modified = {2018-02-20T02:49:06GMT},
abstract = {BACKGROUND:Reproducibility is the hallmark of good science. Maintaining a high degree of transparency in scientific reporting is essential not just for gaining trust and credibility within the scientific community but also for facilitating the development of new ideas. Sharing data and computer code associated with publications is becoming increasingly common, motivated partly in response to data deposition requirements from journals and mandates from funders. Despite this increase in transparency, it is still difficult to reproduce or build upon the findings of most scientific publications without access to a more complete workflow. FINDINGS:Version control systems (VCS), which have long been used to maintain code repositories in the software industry, are now finding new applications in science. One such open source VCS, Git, provides a lightweight yet robust framework that is ideal for managing the full suite of research outputs such as datasets, statistical code, figures, lab notes, and manuscripts. For individual researchers, Git provides a powerful way to track and compare versions, retrace errors, explore new approaches in a structured manner, while maintaining a full audit trail. For larger collaborative efforts, Git and Git hosting services make it possible for everyone to work asynchronously and merge their contributions at any time, all the while maintaining a complete authorship trail. In this paper I provide an overview of Git along with use-cases that highlight how this tool can be leveraged to make science more reproducible and transparent, foster new collaborations, and support novel uses.},
url = {http://www.scfbm.org/content/8/1/7},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Unknown/2013/2013.pdf},
file = {{2013.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Unknown/2013/2013.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1186/1751-0473-8-7}}
}
@book{Merali:2010tw,
author = {Merali, Z},
title = {{Error: why scientific programming does not compute}},
publisher = {Nature},
year = {2010},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:04GMT},
date-modified = {2018-05-15T12:37:01GMT},
url = {http://scholar.google.com/scholar?q=related:0nzms2QeCT0J:scholar.google.com/&hl=en&num=20&as_sdt=0,5},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/C8/C8186CBA-2119-4C1B-AD37-01309BE2ABE1.pdf},
file = {{C8186CBA-2119-4C1B-AD37-01309BE2ABE1.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/C8/C8186CBA-2119-4C1B-AD37-01309BE2ABE1.pdf:application/pdf}},
uri = {\url{papers3://publication/uuid/853BACEB-E64F-451D-8007-D207DABB3B4D}}
}
@article{Leisch:2011hf,
author = {Leisch, Friedrich and Eugster, Manuel and Hothorn, Torsten},
title = {{Executable Papers for the R Community: The R2 Platform for Reproducible Research}},
year = {2011},
volume = {4},
pages = {618--626},
month = may,
keywords = {R, Reproducible Research},
doi = {10.1016/j.procs.2011.04.065},
issn = {1877-0509},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:04GMT},
date-modified = {2018-05-15T13:22:17GMT},
url = {http://dx.doi.org/10.1016/j.procs.2011.04.065},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/96/960A2DCE-F3C7-4E16-8623-8F21C1245301.pdf},
file = {{960A2DCE-F3C7-4E16-8623-8F21C1245301.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/96/960A2DCE-F3C7-4E16-8623-8F21C1245301.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.procs.2011.04.065}}
}
@article{Barnes:2010dn,
author = {Barnes, Nick},
title = {{Publish your computer code: it is good enough.}},
journal = {Nature},
year = {2010},
volume = {467},
number = {7317},
pages = {753--753},
month = oct,
affiliation = {Climate Code Foundation, Sheffield S17 4DL, UK. nb@climatecode.org},
doi = {10.1038/467753a},
pmid = {20944687},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-05-15T13:31:19GMT},
url = {http://www.nature.com/doifinder/10.1038/467753a},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/7C/7C8B8AAD-35B1-49B8-9EE3-D11E6797DF5A.pdf},
file = {{7C8B8AAD-35B1-49B8-9EE3-D11E6797DF5A.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/7C/7C8B8AAD-35B1-49B8-9EE3-D11E6797DF5A.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1038/467753a}}
}
@article{Science:2012hf,
author = {Morin, A and Urban, J and Adams, P D and Foster, I and Sali, A and Baker, D and Sliz, P},
title = {{Shining Light into Black Boxes}},
journal = {Science (New York, N.Y.)},
year = {2012},
volume = {336},
pages = {1--2},
month = apr,
keywords = {code, reproducibility, Reproducible Research},
doi = {10.2139/ssrn.1757982.10.2139/ssrn.1757982},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-05-15T14:00:07GMT},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/FD/FD02882B-4DE0-4F07-81F6-31BE0E491937.pdf},
file = {{FD02882B-4DE0-4F07-81F6-31BE0E491937.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/FD/FD02882B-4DE0-4F07-81F6-31BE0E491937.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.2139/ssrn.1757982.10.2139/ssrn.1757982}}
}
@article{Baumer:2015hc,
author = {Baumer, Benjamin and Udwin, Dana},
title = {{R Markdown}},
journal = {Wiley Interdisciplinary Reviews: Computational Statistics},
year = {2015},
volume = {7},
number = {3},
pages = {167--177},
month = feb,
doi = {10.1002/wics.1348},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-05-15T13:52:34GMT},
url = {http://doi.wiley.com/10.1002/wics.1348},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/89/8909C0F9-7F3A-423C-A56D-78EDD4E7D157.pdf},
file = {{8909C0F9-7F3A-423C-A56D-78EDD4E7D157.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/89/8909C0F9-7F3A-423C-A56D-78EDD4E7D157.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1002/wics.1348}}
}
@book{Gandrud:2016ux,
author = {Gandrud, Christopher},
title = {{Reproducible Research with R and R Studio, Second Edition}},
publisher = {CRC Press},
year = {2016},
month = jul,
isbn = {1498715389},
language = {English},
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-02-20T02:49:06GMT},
abstract = {All the Tools for Gathering and Analyzing Data and Presenting Results Reproducible Research with R and RStudio, Second Edition brings together the skills and tools needed for doing and presenting computational research. Using straightforward examples, the book takes you through an entire reproducible research workflow. This practical workflow enables you to gather and analyze data as well as dynamically present results in print and on the web. New to the Second Edition The rmarkdown package that allows you to create reproducible research documents in PDF, HTML, and Microsoft Word formats using the simple and intuitive Markdown syntax Improvements to RStudio{\textquoteright}s interface and capabilities, such as its new tools for handling R Markdown documents Expanded knitr R code chunk capabilities The kable function in the knitr package and the texreg package for dynamically creating tables to present your data and statistical results An improved discussion of file organization, enabling you to take full advantage of relative file paths so that your documents are more easily reproducible across computers and systems The dplyr, magrittr, and tidyr packages for fast data manipulation Numerous modifications to R syntax in user-created packages Changes to GitHub{\textquoteright}s and Dropbox{\textquoteright}s interfaces Create Dynamic and Highly Reproducible Research This updated book provides all the tools to combine your research with the presentation of your findings. It saves you time searching for information so that you can spend more time actually addressing your research questions. Supplementary files used for the examples and a reproducible research project are available on the author{\textquoteright}s website.},
url = {http://books.google.com.au/books?id=Ce35CQAAQBAJ&pg=PA10&dq=intitle:Reproducible+Research+with+R+and+RStudio+Second+Edition&hl=&cd=1&source=gbs_api},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/C9/C997F6E8-2164-413C-9B91-C77AC9217D3D.pdf},
file = {{C997F6E8-2164-413C-9B91-C77AC9217D3D.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/C9/C997F6E8-2164-413C-9B91-C77AC9217D3D.pdf:application/pdf}},
uri = {\url{papers3://publication/uuid/2BBE0779-6E05-4EFF-BA46-8D00A5718237}}
}
@book{Stodden:2012ww,
author = {Stodden, V},
title = {{Reproducible research: Tools and strategies for scientific computing}},
publisher = {Computing in Science {\&} Engineering},
year = {2012},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-05-15T14:07:00GMT},
abstract = {... Reproducible Research for Scientific Computing: Tools and Strategies for Changing the Culture Comput. Sci. Eng. 14, 13 (2012); 10.1109 / MCSE . 2012.38 System Testing a Scientific Framework Using a Regression-Test Environment Comput. Sci. Eng. ...},
url = {http://scitation.aip.org/content/aip/journal/cise/14/4/10.1109/MCSE.2012.82},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/D4/D4C2AA16-687A-4F64-B98C-C4B2FD971EC5.pdf},
file = {{D4C2AA16-687A-4F64-B98C-C4B2FD971EC5.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/D4/D4C2AA16-687A-4F64-B98C-C4B2FD971EC5.pdf:application/pdf}},
uri = {\url{papers3://publication/uuid/50EC491F-7869-4338-AD23-8EB58D9B2A2C}}
}
@article{Stodden:2013ho,
author = {Stodden, Victoria and Guo, Peixuan and Ma, Zhaokun},
title = {{Toward Reproducible Computational Research: An Empirical Analysis of Data and Code Policy Adoption by Journals}},
journal = {PLoS One},
year = {2013},
volume = {8},
number = {6},
pages = {e67111--8},
month = jun,
doi = {10.1371/journal.pone.0067111},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-05-15T14:10:38GMT},
url = {http://dx.plos.org/10.1371/journal.pone.0067111},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/6C/6C78FB31-86ED-4973-82AD-013E52DD95B3.PDF},
file = {{6C78FB31-86ED-4973-82AD-013E52DD95B3.PDF:/Users/Elise/Dropbox/papers3/Library.papers3/Files/6C/6C78FB31-86ED-4973-82AD-013E52DD95B3.PDF:application/pdf}},
uri = {\url{papers3://publication/doi/10.1371/journal.pone.0067111}}
}
@article{Gribbin:2009us,
author = {{Gribbin} and {Simon}},
title = {{Post-publication sharing of data and tools}},
year = {2009},
pages = {1--3},
month = sep,
keywords = {code, open data, open science, Reproducible Research, transparency},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-05-15T14:16:21GMT},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/78/78634705-480A-4399-8B8C-BBEF3E3B64F7.pdf},
file = {{78634705-480A-4399-8B8C-BBEF3E3B64F7.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/78/78634705-480A-4399-8B8C-BBEF3E3B64F7.pdf:application/pdf}},
uri = {\url{papers3://publication/uuid/61610910-2A5A-4746-B3B2-F479B97826C6}}
}
@article{White:2013ea,
author = {White, Ethan and Baldridge, Elita and Brym, Zachary and Locey, Kenneth and McGlinn, Daniel and Supp, Sarah},
title = {{Nine simple ways to make it easier to (re)use your data}},
journal = {Ideas in Ecology and Evolution},
year = {2013},
volume = {6},
number = {2},
pages = {1--10},
doi = {10.4033/iee.2013.6b.6.f},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-05-15T14:20:00GMT},
url = {http://library.queensu.ca/ojs/index.php/IEE/article/view/4608},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/5D/5D0A891D-A720-4DD8-9CF0-4441592E34C6.pdf},
file = {{5D0A891D-A720-4DD8-9CF0-4441592E34C6.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/5D/5D0A891D-A720-4DD8-9CF0-4441592E34C6.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.4033/iee.2013.6b.6.f}}
}
@webpage{Borregaard:2018gu,
author = {Borregaard, Michael K and Hart, E M},
title = {{Towards a more reproducible ecology}},
year = {2018},
month = feb,
doi = {10.1111/ecog.01552/abstract},
read = {Yes},
rating = {0},
date-added = {2018-02-20T08:20:55GMT},
date-modified = {2018-05-15T14:59:03GMT},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/2C/2C209586-43EE-4B99-8A23-374A11653A26.pdf},
file = {{2C209586-43EE-4B99-8A23-374A11653A26.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/2C/2C209586-43EE-4B99-8A23-374A11653A26.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1111/ecog.01552/abstract}}
}
@article{Wilson:2014ck,
author = {Wilson, Greg and Aruliah, D A and Brown, C Titus and Chue Hong, Neil P and Davis, Matt and Guy, Richard T and Haddock, Steven H D and Huff, Kathryn D and Mitchell, Ian M and Plumbley, Mark D and Waugh, Ben and White, Ethan P and Wilson, Paul},
title = {{Best Practices for Scientific Computing}},
journal = {PLoS Biology},
year = {2014},
volume = {12},
number = {1},
pages = {e1001745},
month = jan,
doi = {10.1371/journal.pbio.1001745},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-05-15T14:30:32GMT},
url = {http://dx.plos.org/10.1371/journal.pbio.1001745},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Wilson/2014/PLoS_Biol-2014-Wilson.pdf},
file = {{PLoS_Biol-2014-Wilson.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Wilson/2014/PLoS_Biol-2014-Wilson.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1371/journal.pbio.1001745}}
}
@book{BritishEcologicalSociety:2014va,
author = {{British Ecological Society}},
title = {{A Guide to Data Management in Ecology and Evolution}},
publisher = {British Ecological Society},
year = {2014},
month = nov,
rating = {0},
date-added = {2018-02-20T02:49:05GMT},
date-modified = {2018-02-20T02:49:06GMT},
url = {www.britishecologicalsociety.org/publications/journals},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/70/700B004D-BA1A-4E32-8B19-911AD1BF562E.pdf},
file = {{700B004D-BA1A-4E32-8B19-911AD1BF562E.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/70/700B004D-BA1A-4E32-8B19-911AD1BF562E.pdf:application/pdf}},
uri = {\url{papers3://publication/uuid/E4078A2A-EF76-413E-828C-76B1E8FBDCED}}
}
@article{Noble:2009da,
author = {Noble, William Stafford},
title = {{A Quick Guide to Organizing Computational Biology Projects}},
journal = {PLoS Computational Biology},
year = {2009},
volume = {5},
number = {7},
pages = {e1000424},
month = jul,
doi = {10.1371/journal.pcbi.1000424.g001},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-02-20T02:49:06GMT},
date-modified = {2018-02-20T02:49:06GMT},
url = {http://dx.plos.org/10.1371/journal.pcbi.1000424.g001},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Noble/2009/PLoS_Comp_Biol-2009-Noble.pdf},
file = {{PLoS_Comp_Biol-2009-Noble.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Noble/2009/PLoS_Comp_Biol-2009-Noble.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1371/journal.pcbi.1000424.g001}}
}
@article{Jones:2007fv,
author = {Jones, Christopher and Blanchette, Carol and Brooke, Matthew and Harris, John and Jones, Matthew and Schildhauer, Mark},
title = {{A metadata-driven framework for generating field data entry interfaces in ecology}},
journal = {Ecological Informatics},
year = {2007},
volume = {2},
number = {3},
pages = {270--278},
month = oct,
keywords = {data structure, Database, Ecology, EML, Field sampling, informatics},
doi = {10.1016/j.ecoinf.2007.06.005},
language = {English},
read = {Yes},
rating = {0},
date-added = {2016-12-03T00:50:00GMT},
date-modified = {2018-05-16T01:27:05GMT},
url = {http://linkinghub.elsevier.com/retrieve/pii/S1574954107000416},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/79/79959D1D-C91A-4458-AF87-721090723446.pdf},
file = {{79959D1D-C91A-4458-AF87-721090723446.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/79/79959D1D-C91A-4458-AF87-721090723446.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.ecoinf.2007.06.005}}
}
@article{Madin:2008jv,
author = {Madin, Joshua S and Bowers, Shawn and Schildhauer, Mark P and Jones, Matthew B},
title = {{Advancing ecological research with ontologies}},
journal = {Trends in Ecology {\&} Evolution},
year = {2008},
volume = {23},
number = {3},
pages = {159--168},
month = mar,
doi = {10.1016/j.tree.2007.11.007},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-05-16T01:19:08GMT},
date-modified = {2018-05-16T01:30:52GMT},
url = {http://linkinghub.elsevier.com/retrieve/pii/S0169534708000384},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/CB/CB3206D8-49D6-453B-88E5-F7D7F14CFB30.pdf},
file = {{CB3206D8-49D6-453B-88E5-F7D7F14CFB30.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/CB/CB3206D8-49D6-453B-88E5-F7D7F14CFB30.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.tree.2007.11.007}}
}
@article{Culina:2018dn,
author = {Culina, Antica and Baglioni, Miriam and Crowther, Tom W and Visser, Marcel E and Woutersen-Windhouwer, Saskia and Manghi, Paolo},
title = {{Navigating the unfolding open data landscape in ecology and evolution}},
journal = {Nature Ecology {\&} Evolution},
year = {2018},
pages = {1--7},
month = feb,
publisher = {Springer US},
doi = {10.1038/s41559-017-0458-2},
read = {Yes},
rating = {0},
date-added = {2018-04-12T01:32:39GMT},
date-modified = {2018-05-16T04:59:02GMT},
abstract = {Nature Ecology {\&} Evolution, doi:10.1038/s41559-017-0458-2},
url = {http://dx.doi.org/10.1038/s41559-017-0458-2},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/15/156FF1D6-21B9-479F-B199-4FDC5E598D4A.pdf},
file = {{156FF1D6-21B9-479F-B199-4FDC5E598D4A.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/15/156FF1D6-21B9-479F-B199-4FDC5E598D4A.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1038/s41559-017-0458-2}}
}
@article{MoruetaHolme:2018bi,
author = {Morueta-Holme, Naia and Oldfather, Meagan F and Olliff-Yang, Rachael L and Weitz, Andrew P and Levine, Carrie R and Kling, Matthew M and Riordan, Erin C and Merow, Cory and Sheth, Seema N and Thornhill, Andrew H and Ackerly, David D},
title = {{Best practices for reporting climate data in ecology}},
journal = {Nature Climate Change},
year = {2018},
pages = {1--3},
month = jan,
publisher = {Springer US},
doi = {10.1038/s41558-017-0060-2},
rating = {0},
date-added = {2018-05-16T06:29:30GMT},
date-modified = {2018-05-16T06:30:23GMT},
abstract = {Nature Climate Change, doi:10.1038/s41558-017-0060-2},
url = {http://dx.doi.org/10.1038/s41558-017-0060-2},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/7E/7E0CEFAB-6215-4A94-8F78-23ED3F74352F.pdf},
file = {{7E0CEFAB-6215-4A94-8F78-23ED3F74352F.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/7E/7E0CEFAB-6215-4A94-8F78-23ED3F74352F.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1038/s41558-017-0060-2}}
}
@article{Bower:2017im,
author = {Bower, Shannon D and Brownscombe, Jacob W and Birnie-Gauvin, Kim and Ford, Matthew I and Moraga, Andrew D and Pusiak, Ryan J P and Turenne, Eric D and Zolderdo, Aaron J and Cooke, Steven J and Bennett, Joseph R},
title = {{Making Tough Choices: Picking the Appropriate Conservation Decision-Making Tool}},
journal = {Conservation letters},
year = {2017},
volume = {11},
number = {2},
pages = {e12418--7},
month = nov,
doi = {10.1111/conl.12418},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-05-16T06:31:33GMT},
date-modified = {2018-05-16T07:06:58GMT},
url = {http://doi.wiley.com/10.1111/conl.12418},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/62/62E68E1E-78D3-4FF9-A759-6053E46BF228.pdf},
file = {{62E68E1E-78D3-4FF9-A759-6053E46BF228.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/62/62E68E1E-78D3-4FF9-A759-6053E46BF228.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1111/conl.12418}}
}
@book{Conroy:2013tc,
author = {Conroy, Michael J and Peterson, J T},
title = {{Decision Making in Natural Resource Management: A Structured, Adaptive Approach}},
publisher = {Wiley Blackwell},
year = {2013},
rating = {0},
date-added = {2018-05-16T02:57:44GMT},
date-modified = {2018-05-16T02:57:45GMT},
uri = {\url{papers3://publication/uuid/600E2CAD-2A27-4E19-9F42-10CF7F405A74}}
}
@article{Conroy:2008jg,
author = {Conroy, Michael J and Barker, Richard J and Barker, Richard J and Dillingham, Peter W and Dillingham, Peter W and Fletcher, David and Fletcher, David and Gormley, Andrew M and Gormley, Andrew M and Westbrooke, Ian M and Westbrooke, Ian M},
title = {{Application of decision theory to conservation management: recovery of Hector's dolphin}},
journal = {Wildlife Research},
year = {2008},
volume = {35},
number = {2},
pages = {93},
keywords = {Bayesian Belief Networks},
doi = {10.1071/WR07147},
language = {English},
read = {Yes},
rating = {0},
date-added = {2015-01-17T00:33:01GMT},
date-modified = {2018-05-16T07:42:59GMT},
url = {http://www.publish.csiro.au/?paper=WR07147},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Conroy/2008/Wildl._Res.-2008-Conroy.pdf},
file = {{Wildl._Res.-2008-Conroy.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Conroy/2008/Wildl._Res.-2008-Conroy.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1071/WR07147}}
}
@article{Whitlock:cl,
author = {Whitlock, MC},
year = {2011},
title = {{Data archiving in ecology and evolution: best practices}},
journal = {Elsevier
},
doi = {10.1016/j.tree.2010.11.006},
rating = {0},
date-added = {2018-05-16T08:49:14GMT},
date-modified = {2018-05-16T08:51:25GMT},
abstract = {Many ecology and evolution journals have recently adopted policies requiring that data from their papers be publicly archived. I present suggestions on how data generators, data re- users, and journals can maximize the fairness and scientific value of data archiving. Data should be archived with enough clarity and supporting information that they can be accurately interpreted by others. Re-users should respect their intellectual debt to the originators of data through citation both of the paper and of the data package. In addition~{\ldots}
},
url = {https://www.sciencedirect.com/science/article/pii/S0169534710002697},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/0A/0A9B67EA-978B-4630-AF37-F42F03E8562C.pdf},
file = {{0A9B67EA-978B-4630-AF37-F42F03E8562C.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/0A/0A9B67EA-978B-4630-AF37-F42F03E8562C.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.tree.2010.11.006}}
}
@article{Michener:2012ho,
author = {Michener, William K and Jones, Matthew B},
title = {{Ecoinformatics: supporting ecology as a data-intensive science}},
journal = {Trends in Ecology {\&} Evolution},
year = {2012},
volume = {27},
number = {2},
pages = {85--93},
month = feb,
publisher = {Elsevier Ltd},
doi = {10.1016/j.tree.2011.11.016},
read = {Yes},
rating = {0},
date-added = {2018-05-16T09:02:25GMT},
date-modified = {2018-05-16T09:08:27GMT},
abstract = {Trends in Ecology {\&} Evolution, 27 (2011) 85-93. 10.1016/j.tree.2011.11.016},
url = {http://dx.doi.org/10.1016/j.tree.2011.11.016},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/D3/D3232DA5-E4C1-4430-BE19-6F51D8EDB940.pdf},
file = {{D3232DA5-E4C1-4430-BE19-6F51D8EDB940.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/D3/D3232DA5-E4C1-4430-BE19-6F51D8EDB940.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.tree.2011.11.016}}
}
@article{Kim:2016gf,
author = {Kim, Milena Kiatkoski and Evans, Louisa and Scherl, Lea M and Marsh, Helene},
title = {{Applying Governance Principles to Systematic Conservation Decision-Making in Queensland}},
journal = {Environmental Policy and Governance},
year = {2016},
volume = {26},
number = {6},
pages = {452--467},
month = aug,
doi = {10.1002/eet.1731},
language = {English},
rating = {0},
date-added = {2018-05-16T09:47:00GMT},
date-modified = {2018-05-16T09:47:11GMT},
url = {http://doi.wiley.com/10.1002/eet.1731},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/AA/AAF3233D-D198-4959-B522-42F18EC93CA0.pdf},
file = {{AAF3233D-D198-4959-B522-42F18EC93CA0.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/AA/AAF3233D-D198-4959-B522-42F18EC93CA0.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1002/eet.1731}}
}
@article{Morrison:2016cd,
author = {Morrison, Clare and Wardle, Cassandra and Castley, J Guy},
title = {{Repeatability and Reproducibility of Population Viability Analysis (PVA) and the Implications for Threatened Species Management}},
journal = {Frontiers in Ecology and Evolution},
year = {2016},
volume = {4},
pages = {875--7},
month = aug,
doi = {10.3389/fevo.2016.00098},
rating = {0},
date-added = {2018-05-16T09:47:41GMT},
date-modified = {2018-05-16T09:47:53GMT},
abstract = {Conservation triage focuses on prioritizing species, populations or habitats based on urgency, biodiversity benefits, recovery potential as well as cost.Conservation triage focuses on prioritizing species, populations or habitats based on urgency, biodiversity benefits, recovery potential as well as cost.},
url = {http://journal.frontiersin.org/Article/10.3389/fevo.2016.00098/abstract},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/CC/CCC49064-4976-42DB-BB7E-6E38E7911104.pdf},
file = {{CCC49064-4976-42DB-BB7E-6E38E7911104.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/CC/CCC49064-4976-42DB-BB7E-6E38E7911104.pdf:application/pdf;CCC49064-4976-42DB-BB7E-6E38E7911104.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/CC/CCC49064-4976-42DB-BB7E-6E38E7911104.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.3389/fevo.2016.00098}}
}
@article{Fanelli:2018je,
author = {Fanelli, Daniele},
title = {{Opinion: Is science really facing a reproducibility crisis, and do we need it to?}},
journal = {Proceedings of the National Academy of Sciences},
year = {2018},
volume = {115},
number = {11},
pages = {2628--2631},
month = mar,
doi = {10.1073/pnas.1708272114},
language = {English},
rating = {0},
date-added = {2018-05-16T10:03:34GMT},
date-modified = {2018-05-16T10:03:54GMT},
url = {http://www.pnas.org/lookup/doi/10.1073/pnas.1708272114},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/A1/A1180F43-41E0-45B7-B866-AFCB34110320.pdf},
file = {{A1180F43-41E0-45B7-B866-AFCB34110320.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/A1/A1180F43-41E0-45B7-B866-AFCB34110320.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1073/pnas.1708272114}}
}
@article{Jamieson:2018kz,
author = {Jamieson, Kathleen Hall},
title = {{Crisis or self-correction: Rethinking media narratives about the well-being of science}},
journal = {Proceedings of the National Academy of Sciences},
year = {2018},
volume = {115},
number = {11},
pages = {2620--2627},
month = mar,
doi = {10.1073/pnas.1708276114},
language = {English},
rating = {0},
date-added = {2018-05-16T10:05:53GMT},
date-modified = {2018-05-16T10:06:03GMT},
url = {http://www.pnas.org/lookup/doi/10.1073/pnas.1708276114},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/74/74469AAD-92C3-4533-AEBC-2B1A4A666A3D.pdf},
file = {{74469AAD-92C3-4533-AEBC-2B1A4A666A3D.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/74/74469AAD-92C3-4533-AEBC-2B1A4A666A3D.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1073/pnas.1708276114}}
}
@article{Williams:2017bg,
author = {Williams, Mary and Bagwell, Jacqueline and Zozus, Meredith Nahm},
title = {{Data management plans, the missing perspective}},
journal = {Journal of Biomedical Informatics},
year = {2017},
volume = {71},
pages = {130--142},
month = jul,
doi = {10.1016/j.jbi.2017.05.004},
rating = {0},
date-added = {2018-05-16T10:10:38GMT},
date-modified = {2018-05-16T10:10:58GMT},
abstract = {Journal of Biomedical Informatics, 71 (2017) 130-142. doi:10.1016/j.jbi.2017.05.004},
url = {http://dx.doi.org/10.1016/j.jbi.2017.05.004},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/FC/FC9BF49A-634E-4591-9E6A-0D94D667FCC4.pdf},
file = {{FC9BF49A-634E-4591-9E6A-0D94D667FCC4.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/FC/FC9BF49A-634E-4591-9E6A-0D94D667FCC4.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.jbi.2017.05.004}}
}
@article{McIntosh:2011ew,
author = {McIntosh, B S and Ascough II, J C and Twery, M and Chew, J and Elmahdi, A and Haase, D and Harou, J J and Hepting, D and Cuddy, S and Jakeman, A J and Chen, S and Kassahun, A and Lautenbach, S and Matthews, K and Merritt, W and Quinn, N W T and Rodriguez-Roda, I and Sieber, S and Stavenga, M and Sulis, A and Ticehurst, J and Volk, M and Wrobel, M and van Delden, H and El-Sawah, S and Rizzoli, A and Voinov, A},
title = {{Environmental decision support systems (EDSS) development - Challenges and best practices}},
journal = {Environmental Modelling {\&} Software},
year = {2011},
volume = {26},
number = {12},
pages = {1389--1402},
month = dec,
publisher = {Elsevier Ltd},
doi = {10.1016/j.envsoft.2011.09.009},
rating = {0},
date-added = {2018-05-16T10:13:30GMT},
date-modified = {2018-05-16T10:13:36GMT},
abstract = {Environmental Modelling and Software, 26 (2011) 1389-1402. doi:10.1016/j.envsoft.2011.09.009},
url = {http://dx.doi.org/10.1016/j.envsoft.2011.09.009},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/B1/B1648C61-F754-4630-A288-33E8001620D1.pdf},
file = {{B1648C61-F754-4630-A288-33E8001620D1.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/B1/B1648C61-F754-4630-A288-33E8001620D1.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.envsoft.2011.09.009}}
}
@article{Agnoli:2017kl,
author = {Agnoli, Franca and Wicherts, Jelte M and Veldkamp, Coosje L S and Albiero, Paolo and Cubelli, Roberto},
title = {{Questionable research practices among italian research psychologists}},
journal = {PLoS One},
year = {2017},
volume = {12},
number = {3},
pages = {e0172792--17},
month = mar,
doi = {10.1371/journal.pone.0172792},
language = {English},
rating = {0},
date-added = {2018-05-16T10:16:32GMT},
date-modified = {2018-05-16T10:16:40GMT},
url = {http://dx.plos.org/10.1371/journal.pone.0172792},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/34/348D9733-A3C4-40C9-9087-1159DBD5B063.pdf},
file = {{348D9733-A3C4-40C9-9087-1159DBD5B063.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/34/348D9733-A3C4-40C9-9087-1159DBD5B063.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1371/journal.pone.0172792}}
}
@article{Fidler:2016wv,
author = {Fidler, Fiona and Chee, Yung En and Wintle, Bonnie and Burgman, Mark A and McCarthy, Michael A and Gordon, Ascelin},
title = {{Why and how to evaluate reproducibility of ecological research}},
journal = {BioScience},
year = {2016},
pages = {1--27},
month = jun,
read = {Yes},
rating = {0},
date-added = {2016-10-24T00:45:16GMT},
date-modified = {2018-05-16T23:44:49GMT},
url = {https://osf.io/g7vha/},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/19/19C43D30-EC24-4388-81A3-DA013D0A24A2.pdf},
file = {{19C43D30-EC24-4388-81A3-DA013D0A24A2.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/19/19C43D30-EC24-4388-81A3-DA013D0A24A2.pdf:application/pdf}},
uri = {\url{papers3://publication/uuid/DA36EB55-1B48-4AF5-A1D3-F6184C82D42E}}
}
@article{Crutzen:2017kn,
author = {Crutzen, Rik and Peters, Gjalt-Jorn Y},
title = {{Targeting Next Generations to Change the Common Practice of Underpowered Research}},
journal = {Frontiers in Psychology},
year = {2017},
volume = {8},
pages = {67--4},
month = jul,
doi = {10.3389/fpsyg.2017.01184},
rating = {0},
date-added = {2018-05-18T03:43:38GMT},
date-modified = {2018-05-18T03:58:05GMT},
abstract = {Underpowered studies remain ubiquitous (Maxwell, 2004; Bakker et al., 2012; Button et al., 2013; Turner et al., 2013; Szucs and Ioannidis, 2017) despite strong pleas to change this practice (Cohen, 1988, 1990, 1992).Underpowered studies remain ubiquitous (Maxwell, 2004; Bakker et al., 2012; Button et al., 2013; Turner et al., 2013; Szucs and Ioannidis, 2017) despite strong pleas to change this practice (Cohen, 1988, 1990, 1992).},
url = {http://journal.frontiersin.org/article/10.3389/fpsyg.2017.01184/full},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/56/56DB8F99-5CCB-4DF0-B578-13860201796D.pdf},
file = {{56DB8F99-5CCB-4DF0-B578-13860201796D.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/56/56DB8F99-5CCB-4DF0-B578-13860201796D.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.3389/fpsyg.2017.01184}}
}
@article{OpenScienceCollaboration:2015cn,
author = {{Open Science Collaboration}},
title = {{Estimating the reproducibility of psychological science}},
journal = {Science (New York, N.Y.)},
year = {2015},
volume = {349},
number = {6251},
pages = {aac4716--aac4716},
month = aug,
keywords = {psychology, replication, reproducibility},
doi = {10.1126/science.aac4716},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-04-18T02:16:06GMT},
date-modified = {2018-05-20T09:15:09GMT},
url = {http://www.sciencemag.org/cgi/doi/10.1126/science.aac4716},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/5C/5C3661FB-2CB0-4296-86D5-04BED7CDBB84.pdf},
file = {{5C3661FB-2CB0-4296-86D5-04BED7CDBB84.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/5C/5C3661FB-2CB0-4296-86D5-04BED7CDBB84.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1126/science.aac4716}}
}
@article{Sutherland:2017hc,
author = {Sutherland, William J and Wordley, Claire F R},
title = {{Evidence complacency hampers conservation}},
journal = {Nature Ecology {\&} Evolution},
year = {2017},
volume = {1},
number = {9},
pages = {1--2},
month = aug,
publisher = {Springer US},
doi = {10.1038/s41559-017-0244-1},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-05-09T02:17:40GMT},
date-modified = {2018-05-20T10:11:28GMT},
abstract = {Nature Ecology {\&} Evolution, doi:10.1038/s41559-017-0244-1},
url = {http://dx.doi.org/10.1038/s41559-017-0244-1},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/3B/3B2A8864-83E2-40CC-842B-2B99F3719ECE.pdf},
file = {{3B2A8864-83E2-40CC-842B-2B99F3719ECE.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/3B/3B2A8864-83E2-40CC-842B-2B99F3719ECE.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1038/s41559-017-0244-1}}
}
@article{Nakagawa:2015bn,
author = {Nakagawa, Shinichi and Parker, Timothy H},
title = {{Replicating research in ecology and evolution: feasibility, incentives, and the cost-benefit conundrum}},
journal = {BMC Biology},
year = {2015},
pages = {1--6},
month = oct,
publisher = {BMC Biology},
doi = {10.1186/s12915-015-0196-3},
read = {Yes},
rating = {0},
date-added = {2018-04-06T05:11:34GMT},
date-modified = {2018-05-20T11:44:28GMT},
abstract = {BMC Biology, 2015, doi:10.1186/s12915-015-0196-3},
url = {http://dx.doi.org/10.1186/s12915-015-0196-3},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/1B/1BAF880C-F056-42FE-9136-EE0F9C9E77B3.pdf},
file = {{1BAF880C-F056-42FE-9136-EE0F9C9E77B3.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/1B/1BAF880C-F056-42FE-9136-EE0F9C9E77B3.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1186/s12915-015-0196-3}}
}
@article{Mukherjee:2018cb,
author = {Mukherjee, Nibedita and Zabala, Aiora and Huge, Jean and Nyumba, Tobias Ochieng and Adem Esmail, Blal and Sutherland, William J},
title = {{Comparison of techniques for eliciting views and judgements in decision-making}},
journal = {Methods in Ecology and Evolution},
year = {2018},
volume = {9},
number = {1},
pages = {54--63},
month = jan,
doi = {10.1111/2041-210X.12940},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-05-20T22:50:08GMT},
date-modified = {2018-05-20T23:20:31GMT},
url = {http://doi.wiley.com/10.1111/2041-210X.12940},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/DC/DCF03737-E4EA-47F8-B4D9-C1AB2C5A330F.pdf},
file = {{DCF03737-E4EA-47F8-B4D9-C1AB2C5A330F.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/DC/DCF03737-E4EA-47F8-B4D9-C1AB2C5A330F.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1111/2041-210X.12940}}
}
@article{Dicks:2014gf,
author = {Dicks, Lynn V and Walsh, Jessica C and Sutherland, William J},
title = {{Organising evidence for environmental management decisions: a {\textquoteleft}4S{\textquoteright} hierarchy}},
journal = {Trends in Ecology {\&} Evolution},
year = {2014},
volume = {29},
number = {11},
pages = {607--613},
month = nov,
publisher = {Elsevier Ltd},
keywords = {Decision support, environmental management, Environmental planning},
doi = {10.1016/j.tree.2014.09.004},
language = {English},
read = {Yes},
rating = {0},
date-added = {2015-09-08T01:12:21GMT},
date-modified = {2018-05-21T00:13:17GMT},
abstract = {Trends in Ecology {\&} Evolution, 29 (2014) 607-613. doi:10.1016/j.tree.2014.09.004},
url = {http://dx.doi.org/10.1016/j.tree.2014.09.004},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Dicks/2014/Trends_in_Ecology_&_Evolution-2014-Dicks.pdf},
file = {{Trends_in_Ecology_&_Evolution-2014-Dicks.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Dicks/2014/Trends_in_Ecology_&_Evolution-2014-Dicks.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.tree.2014.09.004}}
}
@article{Baillieul:2018jd,
author = {Baillieul, John and Grenier, Gerry and Setti, Gianluca},
title = {{Reflections on the Future of Research Curation and Research Reproducibility [Point of View]}},
journal = {Proceedings of the IEEE},
year = {2018},
volume = {106},
number = {5},
pages = {779--783},
month = apr,
doi = {10.1109/JPROC.2018.2816618},
read = {Yes},
rating = {0},
date-added = {2018-05-21T00:50:05GMT},
date-modified = {2018-05-21T02:21:49GMT},
url = {https://ieeexplore.ieee.org/document/8347157/},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/82/825E0838-2DCA-4D8F-8A46-F69706198F93.pdf},
file = {{825E0838-2DCA-4D8F-8A46-F69706198F93.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/82/825E0838-2DCA-4D8F-8A46-F69706198F93.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1109/JPROC.2018.2816618}}
}
@article{Bennett:2017jh,
author = {Bennett, Nathan J and Roth, Robin and Klain, Sarah C and Chan, Kai and Christie, Patrick and Clark, Douglas A and Cullman, Georgina and Curran, Deborah and Durbin, Trevor J and Epstein, Graham and Greenberg, Alison and Nelson, Michael P and Sandlos, John and Stedman, Richard and Teel, Tara L and Thomas, Rebecca and Ver{\'\i}ssimo, Diogo and Wyborn, Carina},
title = {{Conservation social science: Understanding and integrating human dimensions to improve conservation}},
journal = {Biological Conservation},
year = {2017},
volume = {205},
number = {C},
pages = {93--108},
month = jan,
publisher = {The Authors},
doi = {10.1016/j.biocon.2016.10.006},
rating = {0},
date-added = {2018-05-22T02:53:08GMT},
date-modified = {2018-05-22T02:53:20GMT},
abstract = {BIOC, 205 (2017) 93-108. doi:10.1016/j.biocon.2016.10.006},
url = {http://dx.doi.org/10.1016/j.biocon.2016.10.006},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/8D/8DDB2910-8997-44D8-B6A1-587202D3A531.pdf},
file = {{8DDB2910-8997-44D8-B6A1-587202D3A531.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/8D/8DDB2910-8997-44D8-B6A1-587202D3A531.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1016/j.biocon.2016.10.006}}
}
@article{Giljohann:2014tv,
author = {Giljohann, K M and Giljohann, K M and McCarthy, M A and McCarthy, M A and Kelly, L T and Kelly, L T},
title = {{Choice of biodiversity index drives optimal fire management decisions}},
journal = {Ecological Modelling},
year = {2014},
read = {Yes},
rating = {0},
date-added = {2015-01-17T00:32:35GMT},
date-modified = {2018-05-22T03:28:33GMT},
abstract = {Preservation of biodiversity is a central goal of conservation management , yet the conditions that promote persistence may differ for the species in the community. For systems subject to stochastic disturbances such as fire , understanding which management practices promote ...
},
url = {http://www.esajournals.org/doi/abs/10.1890/14-0257.1},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Giljohann/2014/2014-Giljohann.pdf},
file = {{2014-Giljohann.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Giljohann/2014/2014-Giljohann.pdf:application/pdf}},
uri = {\url{papers3://publication/uuid/F03588C2-BD3E-4E10-9445-EB62C90BFD87}}
}
@article{Gardner:2018dm,
author = {Gardner, Charlie J and Waeber, Patrick O and Razafindratsima, Onja H and Wilm{\'e}, Lucienne},
title = {{Decision complacency and conservation planning}},
journal = {Conservation Biology},
year = {2018},
pages = {1--10},
month = may,
doi = {10.1111/cobi.13124},
language = {English},
read = {Yes},
rating = {0},
date-added = {2018-05-09T01:15:36GMT},
date-modified = {2018-05-22T04:19:27GMT},
url = {http://doi.wiley.com/10.1111/cobi.13124},
local-url = {file://localhost/Users/Elise/Dropbox/papers3/Library.papers3/Files/A6/A638B209-9F4F-4A9A-AD71-E1228A018EC5.pdf},
file = {{A638B209-9F4F-4A9A-AD71-E1228A018EC5.pdf:/Users/Elise/Dropbox/papers3/Library.papers3/Files/A6/A638B209-9F4F-4A9A-AD71-E1228A018EC5.pdf:application/pdf}},
uri = {\url{papers3://publication/doi/10.1111/cobi.13124}}
}