vsm-dictionary-pubmed
Version:
Implementation of a VSM-dictionary that uses NCBI's E-utilities API to retrieve records from the biomedical literature database PubMed
21 lines (17 loc) • 619 B
JavaScript
/**
* File used to quick test the `getEntryMatchesForString` function of
* `DictionaryPubMed.js`
*/
const DictionaryPubMed = require('../src/DictionaryPubMed');
// the following API key is for user `vsm_test`
const apiKey = '57d456615939f9d1897d794ccb6fd1099408';
const dict = new DictionaryPubMed({ log: true, apiKey: apiKey });
dict.getEntryMatchesForString('logical modeling', { page: 1, perPage: 3, z: [] },
(err, res) => {
if (err) console.log(JSON.stringify(err, null, 4));
else {
console.log(JSON.stringify(res, null, 4));
console.log('\n#Results: ' + res.items.length);
}
}
);