From b8e2d549ade00d6a2a230643a057d8626a7817f5 Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Mon, 6 Apr 2020 14:37:54 -0400 Subject: [PATCH] Add PubCrawler config for VectorBase (rm#40160) --- manifests/params.pp | 79 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 78 insertions(+), 1 deletion(-) diff --git a/manifests/params.pp b/manifests/params.pp index 10053f5..49bbec2 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -408,6 +408,83 @@ class pubcrawler::params { ], }, + 'VectorBase' => { + bgcolor => '#6ea05f', + header_icon => '/a/images/VEuPathDB/Logos-color-text-web/vectorbase.png', + searches => [ + { + database => 'pubmed', + alias => 'New PubMed articles on Diptera', + term => 'Diptera [ALL]', + }, + { + database => 'pubmed', + alias => 'New PubMed articles on Gastropoda', + term => 'Gastropoda [ALL]', + }, + { + database => 'pubmed', + alias => 'New PubMed articles on Hemiptera', + term => 'Hemiptera [ALL]', + }, + { + database => 'pubmed', + alias => 'New PubMed articles on Ixodida', + term => 'Ixodida [ALL]', + }, + { + database => 'pubmed', + alias => 'New PubMed articles on Phthiraptera', + term => 'Phthiraptera [ALL]', + }, + { + database => 'pubmed', + alias => 'New PubMed articles on Sarcoptiformes', + term => 'Sarcoptiformes [ALL]', + }, + { + database => 'pubmed', + alias => 'New PubMed articles on Trombidiformes', + term => 'Trombidiformes [ALL]', + }, + { + database => 'genbank', + alias => 'New Genbank sequences for Diptera', + term => 'Diptera [ORGN]', + }, + { + database => 'genbank', + alias => 'New Genbank sequences for Gastropoda', + term => 'Gastropoda [ORGN]', + }, + { + database => 'genbank', + alias => 'New Genbank sequences for Hemiptera', + term => 'Hemiptera [ORGN]', + }, + { + database => 'genbank', + alias => 'New Genbank sequences for Ixodida', + term => 'Ixodida [ORGN]', + }, + { + database => 'genbank', + alias => 'New Genbank sequences for Phthiraptera', + term => 'Phthiraptera [ORGN]', + }, + { + database => 'genbank', + alias => 'New Genbank sequences for Sarcoptiformes', + term => 'Sarcoptiformes [ORGN]', + }, + { + database => 'genbank', + alias => 'New Genbank sequences for Trombidiformes', + term => 'Trombidiformes [ORGN]', + } + ], + }, + } -} \ No newline at end of file +}