view pyPRADA_1.2/tools/bwa-0.5.7-mh/bwt_gen/QSufSort.c @ 0:acc2ca1a3ba4

Uploaded
author siyuan
date Thu, 20 Feb 2014 00:44:58 -0500
parents
children
line wrap: on
line source

/* QSufSort.c

   Original source from qsufsort.c

   Copyright 1999, N. Jesper Larsson, all rights reserved.

   This file contains an implementation of the algorithm presented in "Faster
   Suffix Sorting" by N. Jesper Larsson (jesper@cs.lth.se) and Kunihiko
   Sadakane (sada@is.s.u-tokyo.ac.jp).

   This software may be used freely for any purpose. However, when distributed,
   the original source must be clearly stated, and, when the source code is
   distributed, the copyright notice must be retained and any alterations in
   the code must be clearly marked. No warranty is given regarding the quality
   of this software.

   Modified by Wong Chi-Kwong, 2004

   Changes summary:	- Used long variable and function names
					- Removed global variables
					- Replace pointer references with array references
					- Used insertion sort in place of selection sort and increased insertion sort threshold
					- Reconstructing suffix array from inverse becomes an option
					- Add handling where end-of-text symbol is not necessary < all characters
					- Removed codes for supporting alphabet size > number of characters
  
  No warrenty is given regarding the quality of the modifications.

*/


#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include "bwt_gen.h"
#include "QSufSort.h"

// Static functions
static void QSufSortSortSplit(int* __restrict V, int* __restrict I, const int lowestPos, 
							  const int highestPos, const int numSortedChar);
static int QSufSortChoosePivot(int* __restrict V, int* __restrict I, const int lowestPos, 
							   const int highestPos, const int numSortedChar);
static void QSufSortInsertSortSplit(int* __restrict V, int* __restrict I, const int lowestPos, 
									const int highestPos, const int numSortedChar);
static void QSufSortBucketSort(int* __restrict V, int* __restrict I, const int numChar, const int alphabetSize);
static int QSufSortTransform(int* __restrict V, int* __restrict I, const int numChar, const int largestInputSymbol, 
							 const int smallestInputSymbol, const int maxNewAlphabetSize, int *numSymbolAggregated);

// from MiscUtilities.c
static unsigned int leadingZero(const unsigned int input) {

	unsigned int l;
	const static unsigned int leadingZero8bit[256] = {8,7,6,6,5,5,5,5,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,
											 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
											 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
											 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
											 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
											 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
											 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
											 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};

	if (input & 0xFFFF0000) {
		if (input & 0xFF000000) {
			l = leadingZero8bit[input >> 24];
		} else {
			l = 8 + leadingZero8bit[input >> 16];
		}
	} else {
		if (input & 0x0000FF00) {
			l = 16 + leadingZero8bit[input >> 8];
		} else {
			l = 24 + leadingZero8bit[input];
		}
	}
	return l;

}

/* Makes suffix array p of x. x becomes inverse of p. p and x are both of size
   n+1. Contents of x[0...n-1] are integers in the range l...k-1. Original
   contents of x[n] is disregarded, the n-th symbol being regarded as
   end-of-string smaller than all other symbols.*/
void QSufSortSuffixSort(int* __restrict V, int* __restrict I, const int numChar, const int largestInputSymbol, 
						const int smallestInputSymbol, const int skipTransform) {

	int i, j;
	int s, negatedSortedGroupLength;
	int numSymbolAggregated;
	int maxNumInputSymbol;
	int numSortedPos = 1;
	int newAlphabetSize;
   
	maxNumInputSymbol = largestInputSymbol - smallestInputSymbol + 1;

	if (!skipTransform) {
		/* bucketing possible*/
		newAlphabetSize = QSufSortTransform(V, I, numChar, largestInputSymbol, smallestInputSymbol, 
											numChar, &numSymbolAggregated);
		QSufSortBucketSort(V, I, numChar, newAlphabetSize);
		I[0] = -1;
		V[numChar] = 0;
		numSortedPos = numSymbolAggregated;
	}

	while ((int)(I[0]) >= -(int)numChar) {
		i = 0;
		negatedSortedGroupLength = 0;
		do {
			s = I[i];
			if (s < 0) {
				i -= s;						/* skip over sorted group.*/
				negatedSortedGroupLength += s;
			} else {
				if (negatedSortedGroupLength) {
					I[i+negatedSortedGroupLength] = negatedSortedGroupLength;	/* combine preceding sorted groups */
					negatedSortedGroupLength = 0;
				}
				j = V[s] + 1;
				QSufSortSortSplit(V, I, i, j - 1, numSortedPos);
				i = j;
			}
		} while (i <= numChar);
		if (negatedSortedGroupLength) {
			/* array ends with a sorted group.*/
			I[i+negatedSortedGroupLength] = negatedSortedGroupLength;	/* combine sorted groups at end of I.*/
		}
		numSortedPos *= 2;	/* double sorted-depth.*/
	}

}

void QSufSortGenerateSaFromInverse(const int* V, int* __restrict I, const int numChar) {
	
	int i;
	for (i=0; i<=numChar; i++) {
		I[V[i]] = i + 1;
	}
				
}

/* Sorting routine called for each unsorted group. Sorts the array of integers
   (suffix numbers) of length n starting at p. The algorithm is a ternary-split
   quicksort taken from Bentley & McIlroy, "Engineering a Sort Function",
   Software -- Practice and Experience 23(11), 1249-1265 (November 1993). This
   function is based on Program 7.*/
static void QSufSortSortSplit(int* __restrict V, int* __restrict I, const int lowestPos, 
							  const int highestPos, const int numSortedChar) {

	int a, b, c, d;
	int l, m;
	int f, v, s, t;
	int tmp;
	int numItem;

	#ifdef DEBUG
	if (lowestPos > highestPos) {
		fprintf(stderr, "QSufSortSortSplit(): lowestPos > highestPos!\n");
		exit(1);
	}
	#endif

	numItem = highestPos - lowestPos + 1;

	if (numItem <= INSERT_SORT_NUM_ITEM) {
		QSufSortInsertSortSplit(V, I, lowestPos, highestPos, numSortedChar);
		return;
	}

	v = QSufSortChoosePivot(V, I, lowestPos, highestPos, numSortedChar);

	a = b = lowestPos;
	c = d = highestPos;

	while (TRUE) {
		while (c >= b && (f = KEY(V, I, b, numSortedChar)) <= v) {
			if (f == v) {
				swap(I[a], I[b], tmp);
				a++;
			}
			b++;
		}
		while (c >= b && (f = KEY(V, I, c, numSortedChar)) >= v) {
			if (f == v) {
				swap(I[c], I[d], tmp);
				d--;
			}
			c--;
		}
		if (b > c) {
			break;
		}
		swap(I[b], I[c], tmp);
		b++;
		c--;
	}

	s = a - lowestPos;
	t = b - a;
	s = min(s, t);
	for (l = lowestPos, m = b - s; m < b; l++, m++) {
		swap(I[l], I[m], tmp);
	}

	s = d - c;
	t = highestPos - d;
	s = min(s, t);
	for (l = b, m = highestPos - s + 1; m <= highestPos; l++, m++) {
		swap(I[l], I[m], tmp);
	}

	s = b - a;
	t = d - c;
	if (s > 0) {
		QSufSortSortSplit(V, I, lowestPos, lowestPos + s - 1, numSortedChar);
	}

	// Update group number for equal portion
	a = lowestPos + s;
	b = highestPos - t;
	if (a == b) {
		// Sorted group
		V[I[a]] = a;
		I[a] = -1;
	} else {
		// Unsorted group
		for (c=a; c<=b; c++) {
			V[I[c]] = b;
		}
	}

	if (t > 0) {
		QSufSortSortSplit(V, I, highestPos - t + 1, highestPos, numSortedChar);
	}

}

/* Algorithm by Bentley & McIlroy.*/
static int QSufSortChoosePivot(int* __restrict V, int* __restrict I, const int lowestPos, 
							   const int highestPos, const int numSortedChar) {

	int m;
	int keyl, keym, keyn;
	int key1, key2, key3;
	int s;
	int numItem;

	#ifdef DEBUG
	if (lowestPos > highestPos) {
		fprintf(stderr, "QSufSortChoosePivot(): lowestPos > highestPos!\n");
		exit(1);
	}
	#endif

	numItem = highestPos - lowestPos + 1;

	#ifdef DEBUG
	if (numItem <= INSERT_SORT_NUM_ITEM) {
		fprintf(stderr, "QSufSortChoosePivot(): number of items <= INSERT_SORT_NUM_ITEM!\n");
		exit(1);
	}
	#endif

	m = lowestPos + numItem / 2;

	s = numItem / 8;
	key1 = KEY(V, I, lowestPos, numSortedChar);
	key2 = KEY(V, I, lowestPos+s, numSortedChar);
	key3 = KEY(V, I, lowestPos+2*s, numSortedChar);
	keyl = med3(key1, key2, key3);
	key1 = KEY(V, I, m-s, numSortedChar);
	key2 = KEY(V, I, m, numSortedChar);
	key3 = KEY(V, I, m+s, numSortedChar);
	keym = med3(key1, key2, key3);
	key1 = KEY(V, I, highestPos-2*s, numSortedChar);
	key2 = KEY(V, I, highestPos-s, numSortedChar);
	key3 = KEY(V, I, highestPos, numSortedChar);
	keyn = med3(key1, key2, key3);

	return med3(keyl, keym, keyn);


}

/* Quadratic sorting method to use for small subarrays. */
static void QSufSortInsertSortSplit(int* __restrict V, int* __restrict I, const int lowestPos, 
									const int highestPos, const int numSortedChar) {

	int i, j;
	int tmpKey, tmpPos;
	int numItem;
	int key[INSERT_SORT_NUM_ITEM], pos[INSERT_SORT_NUM_ITEM];
	int negativeSortedLength;
	int groupNum;

	#ifdef DEBUG
	if (lowestPos > highestPos) {
		fprintf(stderr, "QSufSortInsertSortSplit(): lowestPos > highestPos!\n");
		exit(1);
	}
	#endif

	numItem = highestPos - lowestPos + 1;

	#ifdef DEBUG
	if (numItem > INSERT_SORT_NUM_ITEM) {
		fprintf(stderr, "QSufSortInsertSortSplit(): number of items > INSERT_SORT_NUM_ITEM!\n");
		exit(1);
	}
	#endif

	for (i=0; i<numItem; i++) {
		#ifdef DEBUG
		if (I[lowestPos + i] < 0) {
			fprintf(stderr, "QSufSortInsertSortSplit(): I < 0 in unsorted region!\n");
			exit(1);
		}
		#endif
		pos[i] = I[lowestPos + i];
		key[i] = V[pos[i] + numSortedChar];
	}

	for (i=1; i<numItem; i++) {
		tmpKey = key[i];
		tmpPos = pos[i];
		for (j=i; j>0 && key[j-1] > tmpKey; j--) {
			key[j] = key[j-1];
			pos[j] = pos[j-1];
		}
		key[j] = tmpKey;
		pos[j] = tmpPos;
	}

	negativeSortedLength = -1;

	i = numItem - 1;
	groupNum = highestPos;
	while (i > 0) {
		I[i+lowestPos] = pos[i];
		V[I[i+lowestPos]] = groupNum;
		if (key[i-1] == key[i]) {
			negativeSortedLength = 0;
		} else {
			if (negativeSortedLength < 0) {
				I[i+lowestPos] = negativeSortedLength;
			}
			groupNum = i + lowestPos - 1;
			negativeSortedLength--;
		}
		i--;
	}

	I[lowestPos] = pos[0];
	V[I[lowestPos]] = groupNum;
	if (negativeSortedLength < 0) {
		I[lowestPos] = negativeSortedLength;
	}	

}

/* Bucketsort for first iteration.

   Input: x[0...n-1] holds integers in the range 1...k-1, all of which appear
   at least once. x[n] is 0. (This is the corresponding output of transform.) k
   must be at most n+1. p is array of size n+1 whose contents are disregarded.

   Output: x is V and p is I after the initial sorting stage of the refined
   suffix sorting algorithm.*/
      
static void QSufSortBucketSort(int* __restrict V, int* __restrict I, const int numChar, const int alphabetSize) {

	int i, c;
	int d;
	int groupNum;
	int currentIndex;

	// mark linked list empty
	for (i=0; i<alphabetSize; i++) {
		I[i] = -1;
	}

	// insert to linked list
	for (i=0; i<=numChar; i++) {
		c = V[i];
		V[i] = (int)(I[c]);
		I[c] = i;
	}

	currentIndex = numChar;
	for (i=alphabetSize; i>0; i--) {
		c = I[i-1];
		d = (int)(V[c]);
		groupNum = currentIndex;
		V[c] = groupNum;
		if (d >= 0) {
			I[currentIndex] = c;
			while (d >= 0) {
				c = d;
				d = V[c];
				V[c] = groupNum;
				currentIndex--;
				I[currentIndex] = c;
			}
		} else {
			// sorted group
			I[currentIndex] = -1;
		}
		currentIndex--;
	}
			
}

/* Transforms the alphabet of x by attempting to aggregate several symbols into
   one, while preserving the suffix order of x. The alphabet may also be
   compacted, so that x on output comprises all integers of the new alphabet
   with no skipped numbers.

   Input: x is an array of size n+1 whose first n elements are positive
   integers in the range l...k-1. p is array of size n+1, used for temporary
   storage. q controls aggregation and compaction by defining the maximum intue
   for any symbol during transformation: q must be at least k-l; if q<=n,
   compaction is guaranteed; if k-l>n, compaction is never done; if q is
   INT_MAX, the maximum number of symbols are aggregated into one.
   
   Output: Returns an integer j in the range 1...q representing the size of the
   new alphabet. If j<=n+1, the alphabet is compacted. The global variable r is
   set to the number of old symbols grouped into one. Only x[n] is 0.*/
static int QSufSortTransform(int* __restrict V, int* __restrict I, const int numChar, const int largestInputSymbol, 
							 const int smallestInputSymbol, const int maxNewAlphabetSize, int *numSymbolAggregated) {

	int c, i, j;
	int a;	// numSymbolAggregated
	int mask;
	int minSymbolInChunk = 0, maxSymbolInChunk = 0;
	int newAlphabetSize;
	int maxNumInputSymbol, maxNumBit, maxSymbol;

	maxNumInputSymbol = largestInputSymbol - smallestInputSymbol + 1;

	maxNumBit = BITS_IN_WORD - leadingZero(maxNumInputSymbol);
	maxSymbol = INT_MAX >> maxNumBit;

	c = maxNumInputSymbol;
	for (a = 0; a < numChar && maxSymbolInChunk <= maxSymbol && c <= maxNewAlphabetSize; a++) {
		minSymbolInChunk = (minSymbolInChunk << maxNumBit) | (V[a] - smallestInputSymbol + 1);
		maxSymbolInChunk = c;
		c = (maxSymbolInChunk << maxNumBit) | maxNumInputSymbol;
	}

	mask = (1 << (a-1) * maxNumBit) - 1;	/* mask masks off top old symbol from chunk.*/
	V[numChar] = smallestInputSymbol - 1;	/* emulate zero terminator.*/

	#ifdef DEBUG
	// Section of code for maxSymbolInChunk > numChar removed!
	if (maxSymbolInChunk > numChar) {
		fprintf(stderr, "QSufSortTransform(): maxSymbolInChunk > numChar!\n");
		exit(1);
	}
	#endif

	/* bucketing possible, compact alphabet.*/
	for (i=0; i<=maxSymbolInChunk; i++) {
		I[i] = 0;	/* zero transformation table.*/
	}
	c = minSymbolInChunk;
	for (i=a; i<=numChar; i++) {
		I[c] = 1;			/* mark used chunk symbol.*/
		c = ((c & mask) << maxNumBit) | (V[i] - smallestInputSymbol + 1);	/* shift in next old symbol in chunk.*/
	}
	for (i=1; i<a; i++) {	/* handle last r-1 positions.*/
		I[c] = 1;			/* mark used chunk symbol.*/
		c = (c & mask) << maxNumBit;	/* shift in next old symbol in chunk.*/
	}
	newAlphabetSize = 1;
	for (i=0; i<=maxSymbolInChunk; i++) {
		if (I[i]) {
			I[i] = newAlphabetSize;
			newAlphabetSize++;
		}
	}
	c = minSymbolInChunk;
	for (i=0, j=a; j<=numChar; i++, j++) {
		V[i] = I[c];						/* transform to new alphabet.*/
		c = ((c & mask) << maxNumBit) | (V[j] - smallestInputSymbol + 1);	/* shift in next old symbol in chunk.*/
	}
	for (; i<numChar; i++) {	/* handle last a-1 positions.*/
		V[i] = I[c];			/* transform to new alphabet.*/
		c = (c & mask) << maxNumBit;	/* shift right-end zero in chunk.*/
	}

	V[numChar] = 0;		/* end-of-string symbol is zero.*/

    *numSymbolAggregated = a;
	return newAlphabetSize;

}

PK]Wl }2 funannotate_annotate-3bbe70fef6df/.hg_archival.txtUT`wePK]Wo1h+ funannotate_annotate-3bbe70fef6df/README.mdUT`wePK]W J: 1funannotate_annotate-3bbe70fef6df/funannotate_annotate.xmlUT`wePK]Wb, Vfunannotate_annotate-3bbe70fef6df/macros.xmlUT`wePK]W!$xr.yo.: funannotate_annotate-3bbe70fef6df/test-data/SRR7458692.bamUT`wePK]WIMU6 .funannotate_annotate-3bbe70fef6df/test-data/cleaned.faUT`wePK]Wt < /funannotate_annotate-3bbe70fef6df/test-data/cleaned_ident.faUT`wePK]W=S;)E m0funannotate_annotate-3bbe70fef6df/test-data/compare/Genus_species.gbkUT`wePK]WhەC $N2funannotate_annotate-3bbe70fef6df/test-data/compare/Other_beast.gbkUT`wePK]WI.hE y3funannotate_annotate-3bbe70fef6df/test-data/compare/Other_species.gbkUT`wePK]W,bVzוC 5funannotate_annotate-3bbe70fef6df/test-data/compare/Yet_another.gbkUT`wePK]W`iN; 97funannotate_annotate-3bbe70fef6df/test-data/funannotate.locUT`wePK]WN>K X7funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/Pfam-A.clans.tsvUT`wePK]WO6E (#7funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/Pfam-A.hmmUT`wePK]W͔|WI d7funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/Pfam-A.hmm.h3fUT`wePK]WM|?I `P8funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/Pfam-A.hmm.h3iUT`wePK]W,'ל(I \Q8funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/Pfam-A.hmm.h3mUT`wePK]Wh{S[gI x 9funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/Pfam-A.hmm.h3pUT`wePK]WNlJ_D q:funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/dbCAN.hmmUT`wePK]WznH :funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/dbCAN.hmm.h3fUT`wePK]W6\r<H 1:funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/dbCAN.hmm.h3iUT`wePK]WCyH :funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/dbCAN.hmm.h3mUT`wePK]WpH ;funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/dbCAN.hmm.h3pUT`wePK]WG R ;funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/funannotate-db-info.txtUT`wePK]W[ ?A e;funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/go.oboUT`wePK]W4q0L ;funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/ancestralUT`wePK]WĺesN D@funannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/dataset.cfgUT`wePK]W]s*.W ,%+W Gfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/hmms/EOG090W0DGR.hmmUT`wePK]WNW FGfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/hmms/EOG090W0E07.hmmUT`wePK]W./tW (Gfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/hmms/EOG090W0EOF.hmmUT`wePK]WD8LW Gfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/hmms/EOG090W0GYE.hmmUT`wePK]W!gna%W Gfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/hmms/EOG090W0IVU.hmmUT`wePK]Wr^W Hfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/hmms/EOG090W0MBV.hmmUT`wePK]W؛ZJ&zW !Hfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/hmms/EOG090W0T3K.hmmUT`wePK]Wf.Q LmHfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/lengths_cutoffUT`wePK]W@N^BNѡX Hfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W00C1.prflUT`wePK]W>io3X iIfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W01M6.prflUT`wePK]WH.;A[X :Ifunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W02B6.prflUT`wePK]WY2X fJfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W02CW.prflUT`wePK]W.b,X NJfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W03A6.prflUT`wePK]Ww(6 X {Jfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W04UC.prflUT`wePK]WA/N1X UJfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W06A3.prflUT`wePK]W]=X Jfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W06CL.prflUT`wePK]WF6+X e#Kfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W06HU.prflUT`wePK]WpN,X ZKfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W06OE.prflUT`wePK]Wӝ&+X sKfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W07NX.prflUT`wePK]Wǂ=uX ӳKfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W08R7.prflUT`wePK]W(+Q X .Kfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W09HB.prflUT`wePK]WJzb+͍X CLfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W0CIU.prflUT`wePK]WvG(XX oLfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W0DGR.prflUT`wePK]Wx8mX Lfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W0E07.prflUT`wePK]WɲF_X 1Lfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W0EOF.prflUT`wePK]WEn GX Lfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W0GYE.prflUT`wePK]WNau*PX WLfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W0IVU.prflUT`wePK]WƵWWMX [Lfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W0MBV.prflUT`wePK]WllN6.X AMfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/prfl/EOG090W0T3K.prflUT`wePK]W,+ݗP FMfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/insecta/scores_cutoffUT`wePK]We' G sMfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/interpro.tsvUT`wePK]W-WT F wMfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/merops.dmndUT`wePK]W<֮1a N E|Mfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/merops.formatted.faUT`wePK]Wj9Y Mfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/ncbi_cleaned_gene_products.txtUT`wePK]W[% G Mfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/repeats.dmndUT`wePK]WS yXj Mfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/trained_species/fly/augustus/fly_exon_probs.pblUT`wePK]WEx>l j Ofunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/trained_species/fly/augustus/fly_igenic_probs.pblUT`wePK]W<%kl HOfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/trained_species/fly/augustus/fly_intron_probs.pblUT`wePK]Wu0 h oPfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/trained_species/fly/augustus/fly_metapars.cfgUT`wePK]WogKl rPfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/trained_species/fly/augustus/fly_metapars.utr.cfgUT`wePK]W&juj uPfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/trained_species/fly/augustus/fly_parameters.cfgUT`wePK]WU,<i ePfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/trained_species/fly/augustus/fly_utr_probs.pblUT`wePK]WYk_*l A&Qfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/trained_species/fly/augustus/fly_weightmatrix.txtUT`wePK]W[X x(Qfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/trained_species/fly/info.jsonUT`wePK]Wj2 G )Qfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/uniprot.dmndUT`wePK]W[T< N W7Qfunannotate_annotate-3bbe70fef6df/test-data/funannotate_db/uniprot_sprot.fastaUT`wePK]W5_:5 DQfunannotate_annotate-3bbe70fef6df/test-data/genome.faUT`wePK]W,e < VRfunannotate_annotate-3bbe70fef6df/test-data/genome_masked.faUT`wePK]Wf'~] Vfunannotate_annotate-3bbe70fef6df/test-data/predict_augustus/Genus_species.cds-transcripts.faUT`wePK]Wq(a ,Vfunannotate_annotate-3bbe70fef6df/test-data/predict_augustus/Genus_species.discrepency.report.txtUT`wePK]Wư##\ 2Vfunannotate_annotate-3bbe70fef6df/test-data/predict_augustus/Genus_species.error.summary.txtUT`wePK\\g3V