Getting Started Eprints Training: Repository Configuration Exercises

Total Page:16

File Type:pdf, Size:1020Kb

Getting Started Eprints Training: Repository Configuration Exercises EPrints Training: Repository Configuration Exercises Exercise 1: Getting Started The PCs provided for this session have been pre-installed with an EPrints demo repository. 1.1 Logging In To log into the machine enter the username eprints, Press return, and when asked enter the password you have been given. You will the be logged into the desktop. If you©re not familiar with Linux, don©t panic! Things work more or less the same as in Windows. 1.2 Entering Commands A terminal allows you to type commands directly. This is how you will issue commands to EPrints. Click the right mouse button on the desktop and select Open Terminal from the popup menu. Enter the following command: eprints> cd /opt/eprints2 (eprints> means ªtype this as user eprintsº) 1.3 Starting a Text Editor Each of the exercises in this session require you to edit one or more EPrints configuration files. To start a text editor application, click on the Applications button on the top left hand corner of the screen, select Accessories, then Text Editor. To edit the file: /opt/eprints2/archives/myid/cfg/template-en.xml click the Open button on the toolbar, then double-click on Filesystem in the left hand pane of the Open File.. dialog box. In the right hand pane, double-click opt, then eprints2 etc. until you reach template- en.xml. Double-click template-en.xml to open it for editing. 1.4 Starting a Web Browser After editing the EPrints configuration files, you will use a Web browser to check the results.To start a Web browser application, click on the Applications button, select Internet, then Firefox Web Browser. In the address bar, enter the hostname of the PC you are using (look on the front of the PC case for the machine name) to load the front page of the demo repository: http://machinename.ecs.soton.ac.uk/ 1/15 http://www.eprints.org/services/training/ EPrints Training: Repository Configuration Exercises Exercise 2: Branding Almost all institutions modify the default ªlookº of their EPrints repository. Some simply add their logo and colour scheme, others make far more radical changes. For examples, visit: http://www.eprints.org/software/examples/#branding In this exercise, you will modify the look of the demo repository. Every page displayed by EPrints is wrapped in an XHTML template. This can be found at: /opt/eprints2/archives/myid/cfg/template-en.xml 2.1 Change the Web Site Template Edit: /opt/eprints2/archives/myid/cfg/template-en.xml Find the line <div class="archivetitle">&archivename;</div> This is the name of the archive as it appears in the top left of every page. Replace this with your institution©s logo: <div class="archivetitle"><img src=ºhttp://.../logo.pngº /></div> (Or use the EPrints logo: http://www.eprints.org/style/eprintslogo.gif) Note that this file is XHTML so make sure that the img tag is closed correctly! Save your changes. 2.2 Reload the configuration Whenever you make changes to the configuration, you need to tell EPrints to reload it: eprints> bin/force_config_reload myid Tell EPrints to re-generate its static pages (home page, help page...): eprints> bin/generate_static myid 2.3 Check it worked • Reload the home page of the demo repository in your browser. • Check your logo is displayed. 2.4 Change the Stylesheet Edit: /opt/eprints2/archives/myid/cfg/static/general/eprints.css 2/15 http://www.eprints.org/services/training/ EPrints Training: Repository Configuration Exercises Change the background value for .header and .footer to suit your institution's colour scheme (or use ªEPrints Blueº: #ccccff). Save your changes. Update the static pages: eprints> bin/generate_static myid 2.5 Check it worked • Reload the home page of the demo repository in your browser. • Check your new colour scheme is displayed. 2.6 Notes • Find the <ep:pin> elements in the template-en.xml file. These tell EPrints where to insert page content. • To apply your changes to the views and abstract pages, you would need to run generate_views and generate_abstracts. • Explore how generate_static works in more detail: http://www.eprints.org/documentation/tech/php/generate_static.php • force_config_reload is a quick way of reloading the eprints configuration, and is useful when tweaking the configuration files. However, for performance reasons you should always restart apache after tweaking a live archive. Read more: http://www.eprints.org/documentation/tech/php/force_config_reload.p hp 3/15 http://www.eprints.org/services/training/ EPrints Training: Repository Configuration Exercises Exercise 3: Configuring Submission Workflow When depositing documents in EPrints, users work through several simple forms. However, some institutions prefer to provide users with one large submission form. In this exercise you will learn how EPrints splits up the submission process, and configure the demo repository to provide one large submission form. 3.1 Change the workflow configuration Edit: /opt/eprints2/archives/myid/cfg/metadata-types.xml Find the definition of the article type. It starts with <type name=ºarticleº> Notice that the list of metadata fields is broken up by <page> tags - these tell EPrints how to split the submission process into forms. Remove all the <page> tags from the article type. Save your changes. 3.2 Reload the configuration eprints> bin/force_config_reload myid 3.3 Create a User Account To view the submission page, you first need to create yourself a user account: eprints> bin/create_user myid USERNAME EMAIL admin PASSWORD Choose your own values for USERNAME, EMAIL and PASSWORD. 3.4 Check it worked • Load the home page of the demo repository in your browser. • Go to the User Area. • Log in using the account you just created. • You will be asked to enter your name. This is because by default a user record is not valid unless it has a name. Click Update Record. • Select Begin new Item. • Select Article and click Next. • Check that all the metadata fields are shown on a single form. 4/15 http://www.eprints.org/services/training/ EPrints Training: Repository Configuration Exercises Exercise 4: Customising the Subject Hierarchy By default, EPrints is configured with a subject hierarchy based on the Library of Congress subject tree. Institutions often modify this hierarchy (e.g. by adding more detail to areas that they specialise in) or even change it for a completely different classification scheme. In this exercise you will replace the EPrints subject tree with an alternative classification scheme. 4.1 Change the default subject tree Edit: /opt/eprints2/archives/myid/cfg/subjects Examine the format of this file: subjects:Library of Congress Subject Areas:ROOT:0 ... Q:Q Science:subjects:0 Q1:Q Science (General):Q:1 QA:QA Mathematics:Q:1 QA75:QA75 Electronic computers. Computer science:QA:1 QA76:QA76 Computer software:QA:1 QB:QB Astronomy:Q:1 QC:QC Physics:Q:1 You can see that each line of the file is in the form: subjectid:name:parents:depositable • subjectid is a unique identifier for the subject. • name is the name of the subject, in the default language of the archive. • the parents field defines how the subject fits into the hierarchy. In this case, EPrints is able to determine that "Computer Software" (QA76) comes under "Mathematics" (QA) which itself comes under "Science" (Q) and so on. Therefore a search for eprints matching the "Mathematics" subject would also return items associated with the "Computer Science" (QA75) and "Computer Software" (QA76) subjects. The special keyword ROOT indicates the top level of the hierarchy. • depositable specifies whether or not users can associate their deposits with the subject. It wouldn©t be very helpful to let users associate their eprints with the top level subject "Library of Congress Subject Areas", so in this case depositable is set to 0. 5/15 http://www.eprints.org/services/training/ EPrints Training: Repository Configuration Exercises Remove the eprints subject tree altogether and replace it with you own favourite classification scheme. Here©s the first line of an ACM Computing Classification scheme (http://www.acm.org/class/1998/) to get you started: subjects:ACM Computing Classification System (1998):ROOT:0 4.2 Import the new subject tree eprints> bin/import_subjects myid 4.3 Check it worked • Load the home page of the demo repository in your browser. • Go to the User Area. • Select Begin new Item. • Select Book and click Next. • Continue through the deposit process until you reach the Subjects page. • Check your new subject tree is shown. 4.4 Notes • The ability to specify multiple parents for a subject means that you can create a rich ªlatticeº rather than force items into a tree structure. • Note that you did not need to run force_config_reload after making changes to the subjects file. This is because the subjects file is only used by import_subjects script and is not part of the main archive configuration. • Editing the subjects file is a good way to define an inital classification scheme. To make small tweaks later, you can use the subject editing tool. Point your browser at: http://flag.ecs.soton.ac.uk:8080/perl/users/staff/edit_subject • This exercise dealt with creating subject trees in a single language. In order to specify subject trees in multiple languages, you need to use a special XML format. See: http://www.eprints.org/documentation/tech/php/import_subjects.php 6/15 http://www.eprints.org/services/training/ EPrints Training: Repository Configuration Exercises Exercise 5: Bespoke Deposits 1 EPrints comes configured with a default set of metadata fields (title, creators, date, publication, keywords, abstract...). Institutions often add extra metadata fields to suit the individual requirements of their repositories. In this exercise you will add a new metadata field to the demo repository.
Recommended publications
  • Is Sci-Hub Increasing Visibility of Indian Research Papers? an Analytical Evaluation Vivek Kumar Singh1,*, Satya Swarup Srichandan1, Sujit Bhattacharya2
    Journal of Scientometric Res. 2021; 10(1):130-134 http://www.jscires.org Perspective Paper Is Sci-Hub Increasing Visibility of Indian Research Papers? An Analytical Evaluation Vivek Kumar Singh1,*, Satya Swarup Srichandan1, Sujit Bhattacharya2 1Department of Computer Science, Banaras Hindu University, Varanasi, Uttar Pradesh, INDIA. 2CSIR-National Institute of Science Technology and Development Studies, New Delhi, INDIA. ABSTRACT Sci-Hub, founded by Alexandra Elbakyan in 2011 in Kazakhstan has, over the years, Correspondence emerged as a very popular source for researchers to download scientific papers. It is Vivek Kumar Singh believed that Sci-Hub contains more than 76 million academic articles. However, recently Department of Computer Science, three foreign academic publishers (Elsevier, Wiley and American Chemical Society) have Banaras Hindu University, filed a lawsuit against Sci-Hub and LibGen before the Delhi High Court and prayed for Varanasi-221005, INDIA. complete blocking these websites in India. It is in this context, that this paper attempts to Email id: [email protected] find out how many Indian research papers are available in Sci-Hub and who downloads them. The citation advantage of Indian research papers available on Sci-Hub is analysed, Received: 16-03-2021 with results confirming that such an advantage do exist. Revised: 29-03-2021 Accepted: 25-04-2021 Keywords: Indian Research, Indian Science, Black Open Access, Open Access, Sci-Hub. DOI: 10.5530/jscires.10.1.16 INTRODUCTION access publishing of their research output, and at the same time encouraging their researchers to publish in openly Responsible Research and Innovation (RRI) has become one accessible forms.
    [Show full text]
  • Will Sci-Hub Kill the Open Access Citation Advantage and (At Least for Now) Save Toll Access Journals?
    Will Sci-Hub Kill the Open Access Citation Advantage and (at least for now) Save Toll Access Journals? David W. Lewis October 2016 © 2016 David W. Lewis. This work is licensed under a Creative Commons Attribution 4.0 International license. Introduction It is a generally accepted fact that open access journal articles enjoy a citation advantage.1 This citation advantage results from the fact that open access journal articles are available to everyone in the word with an Internet collection. Thus, anyone with an interest in the work can find it and use it easily with no out-of-pocket cost. This use leads to citations. Articles in toll access journals on the other hand, are locked behind paywalls and are only available to those associated with institutions who can afford the subscription costs, or who are willing and able to purchase individual articles for $30 or more. There has always been some slippage in the toll access journal system because of informal sharing of articles. Authors will usually send copies of their work to those who ask and sometime post them on their websites even when this is not allowable under publisher’s agreements. Stevan Harnad and his colleagues proposed making this type of author sharing a standard semi-automated feature for closed articles in institutional repositories.2 The hashtag #ICanHazPDF can be used to broadcast a request for an article that an individual does not have access to.3 Increasingly, toll access articles are required by funder mandates to be made publically available, though usually after an embargo period.
    [Show full text]
  • Piracy of Scientific Papers in Latin America: an Analysis of Sci-Hub Usage Data
    Developing Latin America Piracy of scientific papers in Latin America: An analysis of Sci-Hub usage data Juan D. Machin-Mastromatteo Alejandro Uribe-Tirado Maria E. Romero-Ortiz This article was originally published as: Machin-Mastromatteo, J.D., Uribe-Tirado, A., and Romero-Ortiz, M. E. (2016). Piracy of scientific papers in Latin America: An analysis of Sci-Hub usage data. Information Development, 32(5), 1806–1814. http://dx.doi.org/10.1177/0266666916671080 Abstract Sci-Hub hosts pirated copies of 51 million scientific papers from commercial publishers. This article presents the site’s characteristics, it criticizes that it might be perceived as a de-facto component of the Open Access movement, it replicates an analysis published in Science using its available usage data, but limiting it to Latin America, and presents implications caused by this site for information professionals, universities and libraries. Keywords: Sci-Hub, piracy, open access, scientific articles, academic databases, serials crisis Scientific articles are vital for students, professors and researchers in universities, research centers and other knowledge institutions worldwide. When academic publishing started, academies, institutions and professional associations gathered articles, assessed their quality, collected them in journals, printed and distributed its copies; with the added difficulty of not having digital technologies. Producing journals became unsustainable for some professional societies, so commercial scientific publishers started appearing and assumed printing, sales and distribution on their behalf, while academics retained the intellectual tasks. Elsevier, among the first publishers, emerged to cover operations costs and profit from sales, now it is part of an industry that grew from the process of scientific communication; a 10 billion US dollar business (Murphy, 2016).
    [Show full text]
  • Eprints Institutional Repository Software: a Review
    Partnership: the Canadian Journal of Library and Information Practice and Research, vol. 5, no. 2 (2010) Eprints Institutional Repository Software: A Review Mike Beazley Academic librarian Vaughan Memorial Library, Acadia University [email protected] Keywords Institutional Repository, Eprints, Review, Software, Open-Source Abstract Setting up an institutional repository (IR) can be a daunting task. There are many software packages out there, some commercial, some open source, all of which offer different features and functionality. This article will provide some thoughts about one of these software packages: Eprints. Eprints is open-source, and the software is easy to modify. This presents clear advantages for institutions will smaller budgets and that have programmers on staff. Installation and initial configuration are straightforward and once the IR is up and running, users can easily upload documents by filling out a simple web form. Eprints is an excellent choice for any institution looking to get an IR up and running quickly and easily, although it is less clear that an institution with an existing IR based on another software package should migrate to Eprints. Introduction Setting up an institutional repository (IR) can be a daunting task. There are many software packages out there, some commercial, some open source, all of which offer different features and functionality. This article will provide some thoughts about one of these software packages: Eprints. Eprints was one of the first IR software packages to appear and has been available for 10 years. It is under continual development by its creators at the University of Southampton and the current version is v3.2.3.
    [Show full text]
  • Open Access Self-Archiving of Refereed Research: a Post-Gutenberg Compromise Stevan Harnad University of Southhampton, [email protected]
    Against the Grain Volume 23 | Issue 2 Article 9 April 2011 Open Access Self-Archiving of Refereed Research: A Post-Gutenberg Compromise Stevan Harnad University of Southhampton, [email protected] Follow this and additional works at: https://docs.lib.purdue.edu/atg Part of the Library and Information Science Commons Recommended Citation Harnad, Stevan (2011) "Open Access Self-Archiving of Refereed Research: A Post-Gutenberg Compromise," Against the Grain: Vol. 23: Iss. 2, Article 9. DOI: https://doi.org/10.7771/2380-176X.5786 This document has been made available through Purdue e-Pubs, a service of the Purdue University Libraries. Please contact [email protected] for additional information. However, many publishers either do not make our collective understanding of the type of de- Journal Article Versioning is … any changes to the version of record or display mands from scholarly readers and practitioners from page 20 non-standard indicators when such changes oc- for article versioning standards. cur. SAGE is prepared to contribute to shared practices to release material of the highest pos- efforts toward clear and acceptable practices sible quality, published within known patterns for iterations beyond the version of record. Endnotes and bearing standard mechanisms of cataloging SAGE is prepared to launch another wave of 1. The summer 2010 survey was conducted and archiving, such as ISSNs and DOIs. Jour- production and platform enhancements to our by NISO across representatives of key nal article version metadata are now a facet of journals publishing program that allow clear groups — repository managers, librarians, publishers’ responsibilities in disseminating indications of changes to an article’s version and journal publishers and editors — to learn scholarly material online.
    [Show full text]
  • Notes from the Interoperability Front: a Progress Report on the Open Archives Initiative
    Notes from the Interoperability Front: A Progress Report on the Open Archives Initiative Herbert Van de Sompel1, Carl Lagoze2 1Research Library, Los Alamos National Laboratory, Los Alamos, NM mailto:[email protected] 2Computing and Information Science, Cornell University Ithaca, NY USA 14850 [email protected] Abstract. The Open Archives Initiative Protocol for Metadata Harvesting (OAI-PMH) was first released in January 2001. Since that time, the protocol has been adopted by a broad community and become the focus of a number of research and implementation projects. We describe the various activities building on the OAI-PMH since its first release. We then describe the activities and decisions leading up to the release of a stable Version 2 of the OAI-PMH. Finally, we describe the key features of OAI-PMH Version 2. 1 Introduction Over a year has passed since the first release of the Open Archives Initiative Protocol for Metadata harvesting (OAI-PMH) in January 2001. During that period, the OAI- PMH has emerged as a practical foundation for digital library interoperability. The OAI-PMH supports interoperability via a relatively simple two-party model. At one end, data providers employ the OAI-PMH to expose structured data, metadata, in various forms. At the other end, service providers use the OAI-PMH to harvest the metadata from data providers and then subsequently automatically process it and add value in the form of services. While resource discovery is often mentioned as the exemplar service, other service possibilities include longevity and risk management [19], personalization [16], and current awareness. The general acceptance of the OAI-PMH is based on a number of factors.
    [Show full text]
  • Open Access Self-Archiving: an Introduction
    Open access self-archiving: An introduction May 2005 Alma Swan Key Perspectives Limited 48 Old Coach Road, Playing Place, TRURO, Cornwall, TR3 6ET, UK (Registered Office) Tel. +44 (0)1392 879702 www.keyperspectives.co.uk www.keyperspectives.com Note to readers The pages that follow constitute the Introduction, Executive Summary and References from a document written in May 2005 reporting the findings of a large-scale survey of scholarly researcher behaviour with respect to open access, specifically the ‘green’ route to OA via self-archiving. The Introduction serves as a stand-alone starter document for those wishing to acquaint themselves with self-archiving without too much pain. The full study report, for those who are interested, can be found at any of the following URLs: www.keyperspectives.co.uk/OpenAccessArchive/2005_Open_Access_Report.pdf http://www.jisc.ac.uk/uploaded_documents/Open%20Access%20Self%20Archiving- an%20author%20study.pdf http://cogprints.org/4385/ Open Access Briefing Paper A two-page Briefing Paper on Open Access, which covers the principles and issues of open access in a very concise form, is published by the Joint Information Systems Committee (JISC) and is available at: http://www.jisc.ac.uk/uploaded_documents/JISC-BP-OpenAccess-v1-final.pdf EXECUTIVE SUMMARY This, our second author study on open access, was carried out to determine the current state of play with respect to author self-archiving behaviour. The survey was carried out during the last quarter of 2004. There were 1296 respondents. The survey also briefly explored author experiences and opinions on publishing in open access journals to follow up our previous study on this topic for JISC and the Open Society Institute.
    [Show full text]
  • Monitoring Compliance with Open Access Policies
    Monitoring Compliance with Open Access policies Monitoring Compliance with Open Access policies Author: Mafalda Picarra, Jisc Reviewers: Alma Swan, EOS December 2015 Introduction In the last few years, academic communities have seen an increase in the number of Open Access (OA) policies being adopted at the institutional and funder levels. In parallel to policy implementation, institutions and funders have also been engaged in developing mechanisms to monitor academics and researchers compliance with the existing OA policies. This study highlights a few of the cases where compliance is being effectively monitored by institutions and funders. In the first section, Open Access is briefly overviewed and the rationale for monitoring OA policy compliance is explained. The second section looks at best practices in monitoring policy compliance with OA policies by funders and institutions. The case studies reflect on compliance with the UK Funding Councils and the USA National Institutes of Health OA policies. The third section makes recommendations on what processes and procedures universities and funders should adopt to monitor compliance with their OA policies. The final section recapitulates some of the key ideas related to monitoring policy compliance. I. Open Access and monitoring compliance Open Access policies: An overview OA policies have been adopted by universities, research institutions and funders from as early as 2003. The Registry of Open Access Repository Mandates and Policies (ROARMAP) currently records the existence of 738 OA policies across the world, of which 440 have been implemented by universities (347) and funders (53) in Europe. OA policies provide information on the set of criteria that authors are required or encouraged to comply with in order to make their research outputs available on Open Access.
    [Show full text]
  • Shadow Libraries and You: Sci-Hub Usage and the Future of ILL
    Shadow Libraries and You: Sci-Hub Usage and the Future of ILL Gabriel J. Gardner, Stephen R. McLaughlin, and Andrew D. Asher* Scholars have shared copyrighted material outside official channels for decades, but recent market forces, profes- sional pressure, and novel technical exploits have allowed the large-scale automation of these practices. As a re- sult, millions of scholarly articles, chapters, books, and papers have been aggregated in illicit collections known as “shadow libraries,”1 available for free download by anyone with an Internet connection. The best-known shadow libraries are Library Genesis (LibGen) and the associated website Sci-Hub, which uses pooled university credentials to access articles and add them to LibGen’s repository. AvaxHome and the defunct website Library. nu are two others, with numerous smaller collections scattered across the web. Since Elsevier, in June 2015, filed a civil suit against Sci-Hub, its creator Alexandra Elbakyan, LibGen, and several John Does associated with LibGen,2 many articles and opinion pieces have been published on the role and possible effects of shadow libraries in the scholarly communication ecosystem. Though they clearly violate U.S. copyright law, many scholars are quick to offer praise rather than condemnation for the site. Sci-Hub is easy to use, offering simple and fast access to full-text articles in PDF format in a manner more straightforward than many library or publisher websites. To date, however, only a few scholars have examined the phenomenon em- pirically. There is a dearth of information on questions such as whether shadow libraries will reduce publishers’ revenues and disrupt the scholarly publishing industry, and whether they are affecting academic library usage or decreasing the use of interlibrary loan.
    [Show full text]
  • Das Zeitschriftenmanagement Wissenschaftlicher Bibliotheken Und Die Implikation Der Open-Access-Initiative
    DAS ZEITSCHRIFTENMANAGEMENT WISSENSCHAFTLICHER BIBLIOTHEKEN UND DIE IMPLIKATION DER OPEN-ACCESS-INITIATIVE Dissertation zur Erlangung des akademischen Grades Doctor philosophiae (Dr. phil.) eingereicht an der Philosophischen Fakultät der Humboldt-Universität zu Berlin von Miriam Judith Albers geb. Lorenz Präsidentin der Humboldt-Universität zu Berlin: Prof. Dr.-Ing. Dr. Sabine Kunst Dekanin: Prof. Dr. Gabriele Metzler Gutachter/in: 1. Prof. Dr. Peter Schirmbacher 2. Prof. Dr. Simone Fühles-Ubach Datum der Einreichung: 18.07.2017 Datum der Disputation:17.10.2017 I Inhalt Zusammenfassung .................................................................................................................. IV Abstract .................................................................................................................................... V Danksagung ............................................................................................................................. VI Abkürzungsverzeichnis ........................................................................................................ VII Tabellenverzeichnis ................................................................................................................. X Abbildungsverzeichnis ........................................................................................................... XI 1 Einleitung ............................................................................................................................. 1 2 Merkmale des Zeitschriftenmanagements
    [Show full text]
  • Mainstream” and “Peripheral” Science1
    Open Access and the divide between “mainstream” and “peripheral” science1 Jean-Claude Guédon Université de Montréal 1 Introduction: scientific “fields” and scientific forms of power The discussions that have accompanied the development of Open Access have involved many different, actors, each with a particular point of view. As a result, the ensuing debates have been marked by the complex criss-crossing of various forms of discourse that often fly past each other without meeting. A fair degree of opacity has resulted from this situation, with the consequence that some of the concerns that should have been placed at the heart of the Open Access strategies have largely been neglected. For example, the stratified, competitive nature of science is largely admitted by most, but its evolution into what increasingly appears as an oligarchic power structure is less present in discussions and left unquestioned. Clearly, the structure of scientific power is affected by Open Access, and, as result, that structure should be kept in mind while framing strategies aimed at fostering Open Access. It is difficult to imagine, except rhetorically, how advocating for Open Access can be divorced from working for a different structuring of power in science. This issue is particularly important for developing and emerging countries. A theoretical detour will help set up the issue of power in science more sharply. Since the 1970's, Pierre Bourdieu, the well-known French sociologist, has argued that all cultural and intellectual activities should be analyzed in specific terms. The quest for success in literature may structurally be analyzed in terms that are structurally similar to those used to approach science, but the particulars are altogether different.
    [Show full text]
  • Estimating Open Access Mandate Effectiveness: the MELIBEA Score
    Vincent-Lamarre, Philippe; Boivin, Jade; Gargouri, Yassine; Larivière, Vincent and Harnad, Stevan (2016) Estimating open access mandate effectiveness: The MELIBEA Score. Journal of the Association for Information Science and Technology (JASIST) 67 (in press) Estimating Open Access Mandate Effectiveness: The MELIBEA Score Philippe Vincent-Lamarre1,4, Jade Boivin1, Yassine Gargouri1, Vincent Larivière2, Stevan Harnad1,3 1Université du Québec à Montréal, 2Université de Montréal, 3University of Southampton, 4Université d’Ottawa Abstract: MELIBEA is a directory of institutional open-access policies for research output that uses a composite formula with eight weighted conditions to estimate the “strength” of Open Access mandates (registered in ROARMAP). We analyzed total Web of Science-(WoS)-indexed publication output in years 2011- 2013 for 67 institutions where OA was mandated in order to estimate the mandates’ effectiveness: How well did the MELIBEA score and its individual conditions predict what percentage of the WoS-indexed articles is actually deposited in each institution’s OA repository, and when. We found a small but significant positive correlation (0.18) between the MELIBEA “strength” score and deposit percentage. For three of the eight MELIBEA conditions (deposit timing, internal use, and opt-outs), one value of each was strongly associated with deposit percentage or latency (1: immediate deposit required; 2: deposit required for performance evaluation; 3: unconditional opt-out allowed for the OA requirement but no opt-out for deposit
    [Show full text]