-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make "databases" usable in sub-projects
- Loading branch information
1 parent
f651879
commit 5afd33c
Showing
3 changed files
with
184 additions
and
169 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// | ||
// Created by Martin Steinegger on 10/1/21. | ||
// | ||
|
||
#ifndef MMSEQS_DOWNLOADDATABASE_H | ||
#define MMSEQS_DOWNLOADDATABASE_H | ||
#include <vector> | ||
#include <string> | ||
|
||
|
||
struct EnvironmentEntry { | ||
const char* key; | ||
const char* value; | ||
}; | ||
|
||
struct DatabaseDownload { | ||
const char *name; | ||
const char *description; | ||
const char *citation; | ||
const char *url; | ||
bool hasTaxonomy; | ||
int dbType; | ||
const unsigned char *script; | ||
size_t scriptLength; | ||
std::vector<EnvironmentEntry> environment; | ||
}; | ||
|
||
|
||
#endif //MMSEQS_DOWNLOADDATABASE_H |
Oops, something went wrong.