This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // BibTeX Grammar | |
| // ============== | |
| { | |
| const join = array => array.join('') | |
| const toObject = array => array.reduce((object, [key, value]) => { | |
| object[key] = value | |
| return object | |
| }, {}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \bibitem{Rijswijk2017} | |
| 1. van Rijswijk,M., Beirnaert,C., Caron,C., Cascante,M., Dominguez,V., Dunn,W.B., Ebbels,T.M.D., Giacomoni,F., Gonzalez-Beltran,A., Hankemeier,T., {\em et al.,} (2017) The future of metabolomics in ELIXIR. {\em F1000Research,}, {\bf 6}, 1649+. undefined | |
| \bibitem{Diehl2016} | |
| 2. Diehl,A.D., Meehan,T.F., Bradford,Y.M., Brush,M.H., Dahdul,W.M., Dougall,D.S., He,Y., Osumi-Sutherland,D., Ruttenberg,A., Sarntivijai,S., {\em et al.,} (2016) The Cell Ontology 2016: enhanced content, modularization, and ontology interoperability. {\em J Biomed Semantics,}, {\bf 7}. undefined | |
| \bibitem{Kuhn2017} | |
| 3. Kuhn,T., Willighagen,E., Evelo,C., Queralt-Rosinach,N., Centeno,E. and Furlong,L.I. (2017) Reliable Granular References to Changing Linked Data. In {\em The Semantic Web – ISWC 2017,}. undefined | |
| \bibitem{Mons2011} |
This is a small API to test the Runkit endpoints.
/$DATA/$STYLE/$TYPE
Where $DATA is input data, $STYLE is output style and $TYPE is output type. For documentation on output style and type, see the Citation.js docs.
/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ curl -vILH 'Accept: application/vnd.citationstyles.csl+json' https://doi.org/10.1126/science.169.3946.635 | |
| * Hostname was NOT found in DNS cache | |
| * Trying 63.123.152.248... | |
| * Connected to doi.org (63.123.152.248) port 443 (#0) | |
| * successfully set certificate verify locations: | |
| * CAfile: none | |
| CApath: /etc/ssl/certs | |
| * SSLv3, TLS handshake, Client hello (1): | |
| * SSLv3, TLS handshake, Server hello (2): | |
| * SSLv3, TLS handshake, CERT (11): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function deg(a){return a*(180/Math.PI);} | |
| function rad(a){return a*(Math.PI/180);} | |
| function sin(a){return Math.sin(rad(a))} | |
| function cos(a){return Math.cos(rad(a))} | |
| function tan(a){return Math.tan(rad(a))} | |
| function asin(a){return deg(Math.asin(a))} | |
| function acos(a){return deg(Math.acos(a))} | |
| function atan(a){return deg(Math.atan(a))} | |
| var mov = { w:0,a:0,s:0,d:0,i:0,k:0,t:0,f:0,g:0,h:0 }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var Cite = require('citation-js') | |
| var csl = [ | |
| { | |
| id: "Q23571040", | |
| type: "article-journal", | |
| title: "Correlation of the Base Strengths of Amines 1", | |
| DOI: "10.1021/ja01577a030", | |
| author: [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @article{Birol2013Assembling, | |
| author={Inanc Birol and Anthony Raymond and Shaun D Jackman and Stephen Pleasance and Robin Coope and Greg A Taylor and Macaire Man Saint Yuen and Christopher I Keeling and Dana Brand and Benjamin P Vandervalk and Heather Kirk and Pawan Pandoh and Richard A Moore and Yongjun Zhao and Andrew J Mungall and Barry Jaquish and Alvin Yanchuk and Carol Ritland and Brian Boyle and Jean Bousquet and Kermit Ritland and John Mackay and Jörg Bohlmann and Steven J M Jones}, | |
| doi={10.1093/bioinformatics/btt178}, | |
| journal={Bioinformatics}, | |
| issue=12, | |
| pages={1492--7}, | |
| title={{Assembling the 20 Gb white spruce (Picea glauca) genome from whole-genome shotgun sequencing data}}, | |
| volume=29, | |
| year=2013, | |
| } |
NewerOlder