Mercurial > repos > galaxyp > eggnog_mapper
view test-data/eggnogg_tiny_taxa.sh @ 13:844fa988236b draft
planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/eggnog_mapper/eggnog_mapper commit 468bd31b8858adbba2854f118e4cbe31f4cd68cb
author | galaxyp |
---|---|
date | Mon, 04 Sep 2023 12:47:09 +0000 |
parents | 96cac424c870 |
children |
line wrap: on
line source
#!/bin/bash # Script adapted from https://github.com/galaxyproteomics/egglet to produce a minimal eggnog 5.0.2 database sqlite3 $1 << "EOF" CREATE TEMP TABLE species AS SELECT * FROM species WHERE taxid in (1131266, 436308); CREATE TEMP TABLE synonym AS SELECT * FROM synonym WHERE taxid in (1131266, 436308); CREATE TEMP TABLE merged AS SELECT * FROM merged WHERE taxid_old in (1131266, 436308); CREATE TEMP TABLE stats AS SELECT * FROM stats; .backup temp eggnog_tiny_taxa.db EOF