Skip to content
Snippets Groups Projects
Commit c93aec75 authored by Marius Dieckmann's avatar Marius Dieckmann
Browse files

new names; added evalue field

parent 271b64f8
No related branches found
No related tags found
No related merge requests found
syntax = "proto3";
option go_package = "Datatable";
option go_package = "EdgarHits";
message MetaInformation {
map<int64, ByteRange> ContigHits = 1;
map<int64, ByteRange> metaContigHits = 2;
int64 contigCount = 3;
map<int64, int64> metaContigVIDMap = 4;
}
message ByteRange {
......@@ -15,8 +13,8 @@ message ByteRange {
}
message ContigHits {
repeated Row fwHits = 1;
repeated Row revHits = 2;
repeated Hit fwHits = 1;
repeated Hit revHits = 2;
ContigType contigType = 3;
string ProjectName = 4;
......@@ -26,7 +24,7 @@ message ContigHits {
}
}
message Row {
message Hit {
int64 queryGenome = 1;
int64 queryGene = 2;
int64 hitGenome = 3;
......@@ -34,8 +32,5 @@ message Row {
double score_ratio = 5;
int64 score = 6;
double percent_identity = 7;
}
message CDS {
map<int64, string> idToName = 1;
double evalue = 8;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment