[Tex/LaTex] Convert RIS or NBIB or JSON to bibtex

bibtexjson

This article is not in Google Scholar, and they offer citations in RIS, NBIB, and JSON.

So the big question is, how can I convert this to bibtex?

Here is how it looks in JSON:

{"source":"PMC","accessed":{"date-parts":[[2015,9,29]]},"id":"aiid:181008","title":"The Genome Sequence of <i>Yersinia pestis</i> Bacteriophage φA1122 Reveals an Intimate History with the Coliphage T3 and T7 Genomes","author":[{"family":"Garcia","given":"Emilio"},{"family":"Elliott","given":"Jeffrey M."},{"family":"Ramanculov","given":"Erlan"},{"family":"Chain","given":"Patrick S. G."},{"family":"Chu","given":"May C."},{"family":"Molineux","given":"Ian J."}],"container-title-short":"J Bacteriol","container-title":"Journal of Bacteriology","publisher":"American Society for Microbiology","ISSN":"0021-9193","issued":{"date-parts":[[2003,9]]},"page":"5248-5262","volume":"185","issue":"17","PMID":"12923098","PMCID":"PMC181008","DOI":"10.1128/JB.185.17.5248-5262.2003","type":"article-journal"}

or in pretty print:

{
"DOI": "10.1128/JB.185.17.5248-5262.2003",
"ISSN": "0021-9193",
"PMCID": "PMC181008",
"PMID": "12923098",
"accessed": {
    "date-parts": [
        [
            2015,
            9,
            29
        ]
    ]
},
"author": [
    {
        "family": "Garcia",
        "given": "Emilio"
    },
    {
        "family": "Elliott",
        "given": "Jeffrey M."
    },
    {
        "family": "Ramanculov",
        "given": "Erlan"
    },
    {
        "family": "Chain",
        "given": "Patrick S. G."
    },
    {
        "family": "Chu",
        "given": "May C."
    },
    {
        "family": "Molineux",
        "given": "Ian J."
    }
],
"container-title": "Journal of Bacteriology",
"container-title-short": "J Bacteriol",
"id": "aiid:181008",
"issue": "17",
"issued": {
    "date-parts": [
        [
            2003,
            9
        ]
    ]
},
"page": "5248-5262",
"publisher": "American Society for Microbiology",
"source": "PMC",
"title": "The Genome Sequence of <i>Yersinia pestis</i> Bacteriophage \u03c6A1122 Reveals an Intimate History with the Coliphage T3 and T7 Genomes",
"type": "article-journal",
"volume": "185"
}

Best Answer

You sure about that?

@article{garcia2003genome,
  title={The genome sequence of Yersinia pestis bacteriophage $\varphi$A1122 reveals an intimate history with the coliphage T3 and T7 genomes},
  author={Garcia, Emilio and Elliott, Jeffrey M and Ramanculov, Erlan and Chain, Patrick SG and Chu, May C and Molineux, Ian J},
  journal={Journal of bacteriology},
  volume={185},
  number={17},
  pages={5248--5262},
  year={2003},
  publisher={Am Soc Microbiol}
}
Related Question