From f797972c97b7db04ba636d5a0079fc7ce019a8bf Mon Sep 17 00:00:00 2001 From: LightenedLimited Date: Wed, 13 May 2020 14:13:30 +0200 Subject: [PATCH 1/5] Forked to work with Windows, Python 3.7 --- .gitignore | 4 + attic_util/util.py | 5 +- dna2vec/multi_k_model.py | 12 +- requirements.txt | 39 +- scripts/train_dna2vec.py | 4 +- ...512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt | 854 +++++++++++ ...512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt | 855 +++++++++++ ...512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt | 854 +++++++++++ ...512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt | 855 +++++++++++ ...512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt | 860 +++++++++++ ...512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v | 1345 +++++++++++++++++ ...513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt | 783 ++++++++++ ...513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt | 789 ++++++++++ ...513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v | 1345 +++++++++++++++++ 14 files changed, 8576 insertions(+), 28 deletions(-) create mode 100644 tmp/dna2vec-20200512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt create mode 100644 tmp/dna2vec-20200512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt create mode 100644 tmp/dna2vec-20200512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt create mode 100644 tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt create mode 100644 tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt create mode 100644 tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v create mode 100644 tmp/dna2vec-20200513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt create mode 100644 tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt create mode 100644 tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v diff --git a/.gitignore b/.gitignore index a224e6b..b3c7575 100644 --- a/.gitignore +++ b/.gitignore @@ -90,3 +90,7 @@ ENV/ # Rope project settings .ropeproject + +test.py + +data/ \ No newline at end of file diff --git a/attic_util/util.py b/attic_util/util.py index 4deb572..5c591dc 100644 --- a/attic_util/util.py +++ b/attic_util/util.py @@ -1,6 +1,6 @@ import random import string -import resource +# import resource import logbook import arrow import numpy as np @@ -26,7 +26,8 @@ def random_str(N): return ''.join(random.SystemRandom().choice(string.ascii_lowercase + string.ascii_uppercase + string.digits) for _ in range(N)) def memory_usage(): - return resource.getrusage(resource.RUSAGE_SELF).ru_maxrss / 1E6 + # return resource.getrusage(resource.RUSAGE_SELF).ru_maxrss / 1E6 + return 0 def estimate_bytes(filenames): return sum([os.stat(f).st_size for f in filenames]) diff --git a/dna2vec/multi_k_model.py b/dna2vec/multi_k_model.py index 1d1513c..2493844 100644 --- a/dna2vec/multi_k_model.py +++ b/dna2vec/multi_k_model.py @@ -4,9 +4,11 @@ import tempfile import numpy as np -from gensim.models import word2vec +# from gensim.models import word2vec from gensim import matutils +import gensim + class SingleKModel: def __init__(self, model): self.model = model @@ -14,7 +16,7 @@ def __init__(self, model): class MultiKModel: def __init__(self, filepath): - self.aggregate = word2vec.Word2Vec.load_word2vec_format(filepath, binary=False) + self.aggregate = gensim.models.KeyedVectors.load_word2vec_format(filepath, binary=False) self.logger = logbook.Logger(self.__class__.__name__) vocab_lens = [len(vocab) for vocab in self.aggregate.vocab.keys()] @@ -25,6 +27,7 @@ def __init__(self, filepath): self.data = {} for k in range(self.k_low, self.k_high + 1): self.data[k] = self.separate_out_model(k) + print(len(self.data)) def model(self, k_len): """ @@ -50,10 +53,11 @@ def separate_out_model(self, k_len): self.logger.warn('Missing {}-mers: {} / {}'.format(k_len, len(vocabs), 4 ** k_len)) header_str = '{} {}'.format(len(vocabs), self.vec_dim) - with tempfile.NamedTemporaryFile(mode='w') as fptr: + with tempfile.NamedTemporaryFile(mode='w', delete=False) as fptr: print(header_str, file=fptr) for vocab in vocabs: vec_str = ' '.join("%f" % val for val in self.aggregate[vocab]) print('{} {}'.format(vocab, vec_str), file=fptr) fptr.flush() - return SingleKModel(word2vec.Word2Vec.load_word2vec_format(fptr.name, binary=False)) + open(fptr.name, "rb") + return SingleKModel(gensim.models.KeyedVectors.load_word2vec_format(fptr.name, binary=False)) diff --git a/requirements.txt b/requirements.txt index 14b5c6a..ce97a24 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,20 +1,19 @@ -arrow==0.8.0 -biopython==1.68 -boto==2.46.1 -bz2file==0.98 -ConfigArgParse==0.11.0 -gensim==0.13.2 -Logbook==1.0.0 -numpy==1.16 -pep8==1.7.0 -pluggy==0.4.0 -py==1.4.33 -pytest==3.0.7 -python-dateutil==2.6.0 -requests==2.20.0 -scipy==0.19.0 -six==1.10.0 -smart-open==1.5.1 -tox==2.7.0 -tox-pyenv==1.0.3 -virtualenv==15.1.0 +arrow +biopython +biopython +bz2file +ConfigArgParse +gensim +Logbook +numpy +pep8 +pluggy +py +pytest +python-dateutil +requests +six +smart-open +tox +tox-pyenv +virtualenv diff --git a/scripts/train_dna2vec.py b/scripts/train_dna2vec.py index e2fe6a2..d576208 100755 --- a/scripts/train_dna2vec.py +++ b/scripts/train_dna2vec.py @@ -52,7 +52,7 @@ def train(self, kmer_seq_generator): def write_vec(self): out_filename = '{}.w2v'.format(self.out_fileroot) - self.model.wv.save_word2vec_format(out_filename, binary=False) + self.model.wv.save_word2vec_format("."+out_filename, binary=False) def run_main(args, inputs, out_fileroot): logbook.info(' '.join(sys.argv)) @@ -132,7 +132,7 @@ def main(): args.kmer_fragmenter)) out_txt_filename = '{}.txt'.format(out_fileroot) - with open(out_txt_filename, 'w') as summary_fptr: + with open("."+out_txt_filename, 'w+') as summary_fptr: with Tee(summary_fptr): logbook.StreamHandler(sys.stdout, level=log_level).push_application() redirect_logging() diff --git a/tmp/dna2vec-20200512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt b/tmp/dna2vec-20200512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt new file mode 100644 index 0000000..b4238a8 --- /dev/null +++ b/tmp/dna2vec-20200512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt @@ -0,0 +1,854 @@ +[2020-05-12 20:35:45.963650] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml +[2020-05-12 20:35:45.964647] INFO: Generic: kmer fragmenter: sliding +[2020-05-12 20:35:45.964647] INFO: SeqGenerator: Number of epochs: 1 +[2020-05-12 20:35:45.964647] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 +[2020-05-12 20:35:45.964647] INFO: Learner: Context window half size: 4 +[2020-05-12 20:35:45.964647] INFO: Learner: Use skipgram: 1 +[2020-05-12 20:35:45.965645] INFO: Learner: gensim_iters: 1 +[2020-05-12 20:35:45.965645] INFO: Learner: vec_dim: 12 +[2020-05-12 20:35:45.965645] INFO: gensim.models.word2vec: collecting all words and their counts +[2020-05-12 20:35:45.992573] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:35:45.998558] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:45.999555] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:46.014516] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:35:46.015512] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:35:46.015512] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:35:46.020498] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types +[2020-05-12 20:35:46.026482] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:35:46.026482] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:35:46.034461] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:35:46.037453] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:35:46.047427] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:35:46.056403] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:35:46.071362] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:35:46.072362] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:35:46.087321] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:35:46.096297] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:35:46.101283] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:35:46.109262] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:35:46.117239] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:35:46.125218] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:35:46.130205] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:35:46.137187] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:35:46.141175] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:35:46.142173] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:35:46.156135] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:35:46.164115] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:35:46.169101] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:35:46.170099] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:35:46.191043] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:35:46.196029] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:35:46.207000] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:35:46.207998] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:35:46.212983] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:35:46.220963] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:35:46.229939] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:35:46.235923] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:35:46.243902] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:35:46.250883] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:35:46.261853] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:35:46.266840] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:35:46.274819] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:35:46.283794] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:35:46.301748] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:35:46.317704] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:35:46.331667] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:35:46.337651] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:35:46.348620] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:35:46.353609] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:35:46.362585] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:35:46.368568] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:35:46.376546] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:35:46.381533] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:35:46.393501] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:35:46.393501] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:35:46.399486] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:35:46.406467] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:35:46.411452] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:35:46.412450] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:35:46.417437] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:35:46.421427] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:35:46.426413] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:35:46.441373] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:35:46.445362] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:35:46.445362] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:35:46.451346] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:35:46.455844] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:35:46.459832] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:35:46.460830] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:35:46.465816] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:35:46.476788] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:35:46.482773] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:35:46.490751] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:35:46.501721] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:35:46.505760] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:35:46.511694] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:35:46.517679] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:35:46.531641] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:35:46.532639] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:35:46.536627] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:35:46.536627] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:35:46.542611] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:35:46.546601] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:35:46.550590] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:35:46.550590] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:35:46.558569] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:35:46.561561] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:35:46.565550] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:35:46.573529] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:35:46.592478] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:35:46.592478] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:46.592478] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:46.594473] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:35:46.601455] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:35:46.601455] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:35:46.606440] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:35:46.606440] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:35:46.620403] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:35:46.621402] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:35:46.637358] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:35:46.643343] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:35:46.646334] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:35:46.647331] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:35:46.653315] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:35:46.656308] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:35:46.660296] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:35:46.660296] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:35:46.665283] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:35:46.670271] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:35:46.679246] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:35:46.686228] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:35:46.690217] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:35:46.691215] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:35:46.705177] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:35:46.711162] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:35:46.717144] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:35:46.717144] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:35:46.723128] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:35:46.725124] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:35:46.740084] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:35:46.746068] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:35:46.750056] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:35:46.751054] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:35:46.756040] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:35:46.761028] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:35:46.767012] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:35:46.774991] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:35:46.778979] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:35:46.778979] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:35:46.783965] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:35:46.788953] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:35:46.793939] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:35:46.801918] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:35:46.808899] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:35:46.815881] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:35:46.820867] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:35:46.820867] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:35:46.825854] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:35:46.830841] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:35:46.835827] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:35:46.836825] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:35:46.851785] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:35:46.857770] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:35:46.861758] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:35:46.861758] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:35:46.865747] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:35:46.870734] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:35:46.877715] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:35:46.885695] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:35:46.890680] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:35:46.891678] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:35:46.904643] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:35:46.904643] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:35:46.910627] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:35:46.919604] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:35:46.932568] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:35:46.932568] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:35:46.944536] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:35:46.945534] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:35:46.951518] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:35:46.956025] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:35:46.962997] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:35:46.968982] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:35:46.973967] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:35:46.974965] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:35:46.979951] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:35:46.989926] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:35:46.996907] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:35:47.003888] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:35:47.007876] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:35:47.008874] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:35:47.012863] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:35:47.017851] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:35:47.021839] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:35:47.021839] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:35:47.045777] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:35:47.045777] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:47.046773] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:47.046773] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:35:47.046773] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:35:47.047770] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:35:47.052757] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:35:47.059246] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:35:47.063234] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:35:47.063234] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:35:47.070215] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:35:47.073208] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:35:47.078193] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:35:47.078193] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:35:47.083180] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:35:47.088168] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:35:47.094152] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:35:47.100136] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:35:47.104124] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:35:47.105122] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:35:47.141026] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:35:47.141026] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:47.141026] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:47.142024] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:35:47.143021] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:35:47.150003] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:35:47.154988] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:35:47.154988] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:35:47.167465] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:35:47.167465] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:35:47.173449] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:35:47.184420] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:35:47.189406] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:35:47.189406] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:35:47.195390] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:35:47.198383] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:35:47.205364] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:35:47.212346] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:35:47.218329] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:35:47.226309] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:35:47.233289] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:35:47.240271] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:35:47.246255] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:35:47.253237] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:35:47.257728] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:35:47.257728] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:35:47.262715] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:35:47.267703] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:35:47.271691] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:35:47.271691] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:35:47.278673] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:35:47.281666] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:35:47.288647] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:35:47.295628] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:35:47.299616] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:35:47.299616] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:35:47.306598] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:35:47.309591] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:35:47.333526] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:35:47.336519] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:47.337515] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:47.337515] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:35:47.338512] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:35:47.338512] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:35:47.344497] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:35:47.351479] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:35:47.357462] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:35:47.364444] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:35:47.371425] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:35:47.378407] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:35:47.383392] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:35:47.383392] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:35:47.388379] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:35:47.393367] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:35:47.400347] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:35:47.405335] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:35:47.410320] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:35:47.411317] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:35:47.416304] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:35:47.421292] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:35:47.425280] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:35:47.425280] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:35:47.429270] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:35:47.435254] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:35:47.455201] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:35:47.460187] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:47.462183] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:47.463179] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:35:47.463179] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:35:47.463179] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:35:47.469163] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:35:47.476145] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:35:47.482129] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:35:47.490108] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:35:47.496092] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:35:47.504071] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:35:47.509056] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:35:47.509056] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:35:47.516038] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:35:47.518033] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:35:47.523019] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:35:47.524017] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:35:47.539973] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:35:47.541969] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:35:47.545958] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:35:47.551943] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:35:47.557926] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:35:47.558923] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:35:47.587846] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:35:47.587846] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:47.587846] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:47.588843] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:35:47.588843] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:35:47.589840] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:35:47.593830] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:35:47.599815] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:35:47.605797] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:35:47.605797] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:35:47.609787] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:35:47.621756] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:35:47.627739] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:35:47.634721] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:35:47.642700] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:35:47.649681] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:35:47.654667] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:35:47.655665] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:35:47.667632] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:35:47.670625] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:35:47.674613] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:35:47.674613] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:35:47.680597] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:35:47.684589] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:35:47.689573] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:35:47.690571] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:35:47.702539] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:35:47.702539] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:35:47.707526] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:35:47.712513] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:35:47.716501] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:35:47.716501] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:35:47.723483] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:35:47.726475] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:35:47.730464] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:35:47.730464] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:35:47.735451] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:35:47.740438] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:35:47.744427] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:35:47.744427] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:35:47.752405] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:35:47.756395] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:35:47.762379] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:35:47.768364] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:35:47.775344] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:35:47.780332] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:35:47.786315] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:35:47.793296] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:35:47.800277] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:35:47.801276] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:35:47.826208] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:35:47.828202] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:47.830199] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:47.831195] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:35:47.831195] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:35:47.831195] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:35:47.840171] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:35:47.845158] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:35:47.851143] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:35:47.860119] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:35:47.862112] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:35:47.863109] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:35:47.867099] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:35:47.879067] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:35:47.882059] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:35:47.882059] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:35:47.890037] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:35:47.893030] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:35:47.897018] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:35:47.897018] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:35:47.904998] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:35:47.907990] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:35:47.912976] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:35:47.919959] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:35:47.926939] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:35:47.934918] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:35:47.938907] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:35:47.939904] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:35:47.942897] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:35:47.948881] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:35:47.953867] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:35:47.953867] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:35:47.960849] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:35:47.962843] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:35:47.968828] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:35:47.975809] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:35:47.978800] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:35:47.979797] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:35:47.985782] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:35:47.989772] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:35:47.995755] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:35:48.002738] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:35:48.006726] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences +[2020-05-12 20:35:48.009718] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) +[2020-05-12 20:35:48.010717] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) +[2020-05-12 20:35:48.021685] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items +[2020-05-12 20:35:48.022683] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words +[2020-05-12 20:35:48.022683] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) +[2020-05-12 20:35:48.022683] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes +[2020-05-12 20:35:48.026672] INFO: gensim.models.word2vec: resetting layer weights +[2020-05-12 20:35:48.051606] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 +[2020-05-12 20:35:48.053601] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey +[2020-05-12 20:35:48.055595] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:35:48.055595] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:48.055595] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:48.057589] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:35:48.057589] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:35:48.058587] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:35:48.062576] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:35:48.067563] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:35:48.071552] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:35:48.071552] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:35:48.076539] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 +[2020-05-12 20:35:48.080529] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:35:48.082523] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:35:48.089504] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:35:48.094492] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:35:48.097482] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 +[2020-05-12 20:35:48.097482] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:35:48.100475] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:35:48.111445] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:35:48.111445] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:35:48.116432] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 +[2020-05-12 20:35:48.122417] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:35:48.124411] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:35:48.127403] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:35:48.136379] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:35:48.139370] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:35:48.139370] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:35:48.143361] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 +[2020-05-12 20:35:48.150342] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:35:48.152336] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:35:48.156326] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:35:48.179771] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:35:48.187749] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 +[2020-05-12 20:35:48.192737] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:35:48.197724] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:35:48.209690] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:35:48.210687] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:35:48.213680] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 +[2020-05-12 20:35:48.219664] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:35:48.220661] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:35:48.224650] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:35:48.233627] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:35:48.236618] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:35:48.236618] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:35:48.240608] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 +[2020-05-12 20:35:48.246594] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:35:48.248586] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:35:48.251578] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:35:48.252577] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:35:48.259557] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 +[2020-05-12 20:35:48.263547] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:35:48.264544] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:35:48.272522] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:35:48.278507] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:35:48.285487] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 +[2020-05-12 20:35:48.289478] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:35:48.291472] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:35:48.295462] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:35:48.305436] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:35:48.309425] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 +[2020-05-12 20:35:48.316406] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:35:48.318400] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:35:48.324384] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:35:48.330369] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:35:48.334357] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 +[2020-05-12 20:35:48.335354] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:35:48.337350] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:35:48.349317] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:35:48.349317] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:35:48.353306] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 +[2020-05-12 20:35:48.359292] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:35:48.361285] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:35:48.365275] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:35:48.371259] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:35:48.375248] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:35:48.375248] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:35:48.379238] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 +[2020-05-12 20:35:48.385222] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:35:48.387216] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:35:48.392204] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:35:48.400182] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:35:48.404170] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:35:48.404170] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:35:48.407164] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 +[2020-05-12 20:35:48.414144] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:35:48.416139] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:35:48.420128] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:35:48.428107] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:35:48.431098] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:35:48.432096] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:35:48.438079] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 +[2020-05-12 20:35:48.442070] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:35:48.444064] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:35:48.448054] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:35:48.455037] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:35:48.458026] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 +[2020-05-12 20:35:48.458026] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:35:48.460021] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:35:48.465008] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:35:48.470992] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:35:48.474981] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:35:48.484955] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:35:48.487946] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 +[2020-05-12 20:35:48.487946] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:35:48.491936] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:35:48.501909] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:35:48.502907] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:48.513877] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:48.515872] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:35:48.515872] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:35:48.515872] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:35:48.520859] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:35:48.524849] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:35:48.528837] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 +[2020-05-12 20:35:48.528837] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:35:48.530832] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:35:48.542799] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:35:48.542799] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:35:48.545792] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 +[2020-05-12 20:35:48.552774] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:35:48.553771] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:35:48.558757] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:35:48.566736] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:35:48.569727] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:35:48.569727] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:35:48.573717] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 +[2020-05-12 20:35:48.580700] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:35:48.582693] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:35:48.589674] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:35:48.598651] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:35:48.602640] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 +[2020-05-12 20:35:48.608624] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:35:48.610618] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:35:48.618597] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:35:48.623585] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:35:48.627573] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 +[2020-05-12 20:35:48.636550] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:35:48.638544] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:35:48.642533] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:35:48.650512] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:35:48.656496] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 +[2020-05-12 20:35:48.663478] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:35:48.665471] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:35:48.669967] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:35:48.676950] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:35:48.681934] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 +[2020-05-12 20:35:48.682932] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:35:48.684928] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:35:48.706867] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:35:48.712853] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:35:48.715843] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 +[2020-05-12 20:35:48.716840] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:35:48.718836] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:35:48.729806] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:35:48.729806] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:35:48.736787] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 +[2020-05-12 20:35:48.741776] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:35:48.742772] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:35:48.749753] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:35:48.753743] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:35:48.756734] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 +[2020-05-12 20:35:48.757731] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:35:48.759726] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:35:48.765710] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:35:48.769233] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:35:48.775218] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 +[2020-05-12 20:35:48.782199] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:35:48.784193] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:35:48.789180] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:35:48.796161] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:35:48.799153] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 +[2020-05-12 20:35:48.799153] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:35:48.801148] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:35:48.805137] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:35:48.810124] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:35:48.815111] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 +[2020-05-12 20:35:48.823090] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:35:48.825084] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:35:48.828075] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:35:48.828075] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:35:48.836055] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 +[2020-05-12 20:35:48.846029] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:35:48.848022] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:35:48.853009] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:35:48.858993] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:35:48.864980] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 +[2020-05-12 20:35:48.872464] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:35:48.874458] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:35:48.877450] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:35:48.877450] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:35:48.882436] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 +[2020-05-12 20:35:48.886426] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:35:48.888420] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:35:48.895402] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:35:48.899391] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:35:48.903380] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 +[2020-05-12 20:35:48.903380] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:35:48.906373] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:35:48.919338] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:35:48.927318] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:35:48.933301] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 +[2020-05-12 20:35:48.941280] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:35:48.944271] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:35:48.949258] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:35:48.958234] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:35:48.961226] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 +[2020-05-12 20:35:48.968712] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:35:48.970706] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:35:48.973698] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:35:48.973698] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:35:48.975693] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:35:48.983672] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:48.983672] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:48.984669] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:35:48.984669] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:35:48.984669] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:35:48.990652] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 +[2020-05-12 20:35:48.995642] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:35:48.997634] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:35:49.003619] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:35:49.012594] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:35:49.017580] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 +[2020-05-12 20:35:49.025559] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:35:49.026557] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:35:49.031544] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:35:49.039523] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:35:49.047500] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 +[2020-05-12 20:35:49.051491] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:35:49.053485] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:35:49.058471] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:35:49.066451] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:35:49.069442] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:35:49.069442] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:35:49.073432] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 +[2020-05-12 20:35:49.080413] INFO: gensim.models.word2vec: PROGRESS: at 50.00% examples, 264634 words/s, in_qsize 0, out_qsize 0 +[2020-05-12 20:35:49.083404] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:35:49.083404] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:49.083404] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:49.084402] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:35:49.085399] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:35:49.085399] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:35:49.091383] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:35:49.093379] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:35:49.098364] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 +[2020-05-12 20:35:49.099362] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:35:49.101357] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:35:49.114322] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:35:49.122302] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:35:49.126290] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 +[2020-05-12 20:35:49.126290] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:35:49.129282] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:35:49.139255] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:35:49.139255] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:35:49.145239] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 +[2020-05-12 20:35:49.150226] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:35:49.152220] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:35:49.158204] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:35:49.166184] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:35:49.173164] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 +[2020-05-12 20:35:49.178152] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:35:49.180146] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:35:49.186129] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:35:49.193111] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:35:49.197101] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 +[2020-05-12 20:35:49.197101] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:35:49.200093] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:35:49.211063] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:35:49.212060] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:35:49.223031] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:35:49.223031] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:35:49.230012] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 +[2020-05-12 20:35:49.233005] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:35:49.234999] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:35:49.241980] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:35:49.247965] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:35:49.249959] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 +[2020-05-12 20:35:49.250956] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:35:49.252951] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:35:49.270903] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:35:49.274893] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:35:49.276887] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:35:49.276887] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:49.276887] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:49.277884] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:35:49.277884] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:35:49.277884] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:35:49.283868] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 +[2020-05-12 20:35:49.288855] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:35:49.290850] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:35:49.294839] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:35:49.303816] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:35:49.308802] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 +[2020-05-12 20:35:49.316782] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:35:49.318775] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:35:49.323762] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:35:49.328748] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:35:49.335729] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 +[2020-05-12 20:35:49.336728] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:35:49.346701] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:35:49.352684] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:35:49.358670] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:35:49.361661] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 +[2020-05-12 20:35:49.362657] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:35:49.364652] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:35:49.378616] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:35:49.385597] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:35:49.390583] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 +[2020-05-12 20:35:49.391580] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:35:49.398564] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:35:49.416513] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:35:49.416513] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:35:49.419506] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:35:49.427485] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:49.427485] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:49.428482] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:35:49.428482] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:35:49.428482] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:35:49.432471] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 +[2020-05-12 20:35:49.432471] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:35:49.435464] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:35:49.457404] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:35:49.461395] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:35:49.465383] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 +[2020-05-12 20:35:49.469372] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:35:49.471367] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:35:49.475356] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:35:49.484332] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:35:49.487324] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 +[2020-05-12 20:35:49.487324] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:35:49.490317] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:35:49.504280] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:35:49.510264] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:35:49.515249] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 +[2020-05-12 20:35:49.516247] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:35:49.518242] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:35:49.528215] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:35:49.536194] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:35:49.542178] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 +[2020-05-12 20:35:49.546168] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:35:49.548161] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:35:49.550156] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:35:49.550156] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:49.550156] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:49.551154] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:35:49.552152] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:35:49.560130] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:35:49.563121] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:35:49.563121] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:35:49.567111] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 +[2020-05-12 20:35:49.573095] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:35:49.575090] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:35:49.579079] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:35:49.589053] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:35:49.591047] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:35:49.591047] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:35:49.597031] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 +[2020-05-12 20:35:49.601022] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:35:49.603015] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:35:49.608999] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:35:49.613987] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:35:49.619969] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 +[2020-05-12 20:35:49.620968] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:35:49.628947] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:35:49.631937] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:35:49.631937] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:35:49.634930] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:35:49.641911] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:35:49.646897] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 +[2020-05-12 20:35:49.647895] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:35:49.649890] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:35:49.667841] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:35:49.667841] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:35:49.671831] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 +[2020-05-12 20:35:49.684798] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:35:49.685794] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:35:49.689783] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:35:49.689783] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:35:49.695767] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 +[2020-05-12 20:35:49.702749] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:35:49.703745] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:35:49.708732] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:35:49.714717] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:35:49.717708] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 +[2020-05-12 20:35:49.717708] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:35:49.719704] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:35:49.729676] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:35:49.730674] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:35:49.735660] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 +[2020-05-12 20:35:49.742642] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:35:49.743639] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:35:49.749623] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:35:49.754610] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:35:49.758599] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 +[2020-05-12 20:35:49.758599] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:35:49.760594] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:35:49.772561] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:35:49.772561] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:35:49.778545] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 +[2020-05-12 20:35:49.789517] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:35:49.790514] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:35:49.792508] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:35:49.792508] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:35:49.792508] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:35:49.793505] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:35:49.793505] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:35:49.794504] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:35:49.809463] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:35:49.816445] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:35:49.820433] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 +[2020-05-12 20:35:49.820433] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:35:49.822428] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:35:49.831404] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:35:49.831404] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:35:49.834396] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:35:49.834396] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:35:49.835393] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:35:49.835393] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:35:49.841377] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 +[2020-05-12 20:35:49.845367] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:35:49.846364] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:35:49.850354] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:35:49.858333] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:35:49.863319] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 +[2020-05-12 20:35:49.871299] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:35:49.873292] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:35:49.875791] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:35:49.876789] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:35:49.881775] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 +[2020-05-12 20:35:49.895738] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:35:49.897733] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:35:49.902720] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:35:49.907707] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:35:49.908703] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:35:49.908703] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:35:49.912693] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 +[2020-05-12 20:35:49.920672] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:35:49.922666] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:35:49.928650] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:35:49.934635] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:35:49.938623] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 +[2020-05-12 20:35:49.938623] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:35:49.941616] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:35:49.954583] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:35:49.961563] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:35:49.966549] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 +[2020-05-12 20:35:49.966549] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:35:49.968544] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:35:49.979514] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:35:49.980511] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:35:49.983504] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 +[2020-05-12 20:35:49.996469] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs +[2020-05-12 20:35:49.999461] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs +[2020-05-12 20:35:49.999461] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:35:49.999461] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:35:50.000458] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads +[2020-05-12 20:35:50.000458] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads +[2020-05-12 20:35:50.000458] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads +[2020-05-12 20:35:50.020404] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:35:50.026390] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads +[2020-05-12 20:35:50.026390] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 2.0s, 263344 effective words/s diff --git a/tmp/dna2vec-20200512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt b/tmp/dna2vec-20200512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt new file mode 100644 index 0000000..a95da28 --- /dev/null +++ b/tmp/dna2vec-20200512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt @@ -0,0 +1,855 @@ +[2020-05-12 20:38:53.095469] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml +[2020-05-12 20:38:53.095469] INFO: Generic: kmer fragmenter: sliding +[2020-05-12 20:38:53.096467] INFO: SeqGenerator: Number of epochs: 1 +[2020-05-12 20:38:53.096467] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 +[2020-05-12 20:38:53.096467] INFO: Learner: Context window half size: 4 +[2020-05-12 20:38:53.096467] INFO: Learner: Use skipgram: 1 +[2020-05-12 20:38:53.096467] INFO: Learner: gensim_iters: 1 +[2020-05-12 20:38:53.096467] INFO: Learner: vec_dim: 12 +[2020-05-12 20:38:53.096467] INFO: gensim.models.word2vec: collecting all words and their counts +[2020-05-12 20:38:53.096467] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:38:53.097464] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:53.097464] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:53.109433] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:38:53.112424] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:38:53.113422] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:38:53.118409] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types +[2020-05-12 20:38:53.120501] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:38:53.121401] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:38:53.128382] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:38:53.128382] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:38:53.142344] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:38:53.148328] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:38:53.156307] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:38:53.158302] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:38:53.168275] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:38:53.168275] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:38:53.173262] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:38:53.179246] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:38:53.184232] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:38:53.185230] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:38:53.194206] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:38:53.198196] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:38:53.209166] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:38:53.210163] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:38:53.215150] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:38:53.220137] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:38:53.225123] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:38:53.225123] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:38:53.232104] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:38:53.238088] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:38:53.244072] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:38:53.248062] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:38:53.254045] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:38:53.261028] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:38:53.267011] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:38:53.267011] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:38:53.274990] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:38:53.276984] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:38:53.279976] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:38:53.280974] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:38:53.284963] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:38:53.288953] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:38:53.294936] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:38:53.294936] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:38:53.302916] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:38:53.309897] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:38:53.323859] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:38:53.324856] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:38:53.334829] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:38:53.335827] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:38:53.339816] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:38:53.343806] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:38:53.349790] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:38:53.351786] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:38:53.356771] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:38:53.357799] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:38:53.368739] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:38:53.370733] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:38:53.375720] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:38:53.378712] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:38:53.389683] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:38:53.389683] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:38:53.393672] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:38:53.400657] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:38:53.404643] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:38:53.404643] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:38:53.409629] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:38:53.412622] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:38:53.418605] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:38:53.421598] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:38:53.425587] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:38:53.425587] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:38:53.429576] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:38:53.434564] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:38:53.439549] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:38:53.442542] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:38:53.448525] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:38:53.449524] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:38:53.462489] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:38:53.464484] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:38:53.468472] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:38:53.469470] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:38:53.478445] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:38:53.483433] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:38:53.487926] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:38:53.488923] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:38:53.493909] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:38:53.497899] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:38:53.501888] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:38:53.501888] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:53.501888] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:53.503883] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:38:53.504881] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:38:53.510865] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:38:53.522833] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:38:53.523830] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:38:53.530812] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:38:53.531809] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:38:53.542779] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:38:53.545772] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:38:53.549760] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:38:53.550758] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:38:53.555744] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:38:53.558736] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:38:53.564720] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:38:53.564720] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:38:53.570704] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:38:53.572699] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:38:53.579680] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:38:53.580743] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:38:53.591155] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:38:53.593150] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:38:53.600131] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:38:53.602127] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:38:53.607113] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:38:53.607113] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:38:53.611102] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:38:53.616089] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:38:53.622073] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:38:53.622073] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:38:53.626063] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:38:53.635038] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:38:53.640025] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:38:53.643017] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:38:53.649000] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:38:53.649000] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:38:53.652990] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:38:53.655982] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:38:53.660969] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:38:53.664959] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:38:53.671940] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:38:53.676926] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:38:53.684906] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:38:53.687408] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:38:53.691396] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:38:53.691396] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:38:53.703364] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:38:53.703364] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:38:53.714335] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:38:53.719322] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:38:53.725305] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:38:53.725305] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:38:53.730292] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:38:53.732287] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:38:53.738271] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:38:53.741263] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:38:53.747247] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:38:53.753231] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:38:53.757220] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:38:53.761211] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:38:53.767193] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:38:53.767193] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:38:53.773177] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:38:53.774177] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:38:53.780159] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:38:53.782154] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:38:53.786142] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:38:53.786657] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:38:53.791633] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:38:53.794625] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:38:53.804598] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:38:53.805596] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:38:53.810583] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:38:53.816566] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:38:53.820555] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:38:53.820555] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:38:53.826540] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:38:53.829532] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:38:53.833521] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:38:53.838508] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:38:53.842497] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:38:53.842497] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:38:53.846486] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:38:53.850476] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:38:53.854465] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:38:53.854465] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:53.854465] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:53.855462] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:38:53.855462] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:38:53.855462] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:38:53.861446] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:38:53.865436] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:38:53.869425] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:38:53.869425] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:38:53.875409] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:38:53.878401] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:38:53.883388] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:38:53.883388] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:38:53.888375] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:38:53.893361] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:38:53.898347] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:38:53.899345] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:38:53.902337] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:38:53.906328] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:38:53.911313] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:38:53.914307] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:53.914307] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:53.915303] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:38:53.916300] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:38:53.916300] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:38:53.922284] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:38:53.927271] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:38:53.932257] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:38:53.935250] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:38:53.939238] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:38:53.939238] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:38:53.945222] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:38:53.948215] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:38:53.952204] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:38:53.953201] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:38:53.960182] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:38:53.961180] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:38:53.966167] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:38:53.969159] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:38:53.976140] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:38:53.982124] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:38:53.987110] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:38:53.989105] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:38:53.994092] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:38:53.998082] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:38:54.002071] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:38:54.002071] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:38:54.006060] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:38:54.010049] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:38:54.016033] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:38:54.019025] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:38:54.027004] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:38:54.031991] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:38:54.036977] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:38:54.037974] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:38:54.045954] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:38:54.051937] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:38:54.054929] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:38:54.055926] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:54.055926] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:54.055926] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:38:54.056924] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:38:54.056924] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:38:54.062908] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:38:54.065900] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:38:54.071884] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:38:54.073880] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:38:54.080860] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:38:54.085846] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:38:54.090834] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:38:54.094824] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:38:54.099809] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:38:54.099809] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:38:54.104796] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:38:54.107820] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:38:54.114770] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:38:54.116763] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:38:54.121750] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:38:54.128732] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:38:54.135713] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:38:54.142695] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:38:54.146683] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:38:54.146683] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:38:54.149676] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:38:54.154662] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:54.155660] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:54.155660] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:38:54.156657] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:38:54.156657] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:38:54.161644] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:38:54.163639] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:38:54.178599] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:38:54.183585] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:38:54.191565] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:38:54.191565] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:38:54.202534] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:38:54.205526] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:38:54.212508] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:38:54.218492] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:38:54.230460] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:38:54.231457] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:38:54.238439] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:38:54.240465] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:38:54.246417] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:38:54.246417] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:38:54.258385] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:38:54.258385] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:38:54.260379] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:38:54.260379] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:54.261378] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:54.263372] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:38:54.268359] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:38:54.268359] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:38:54.273345] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:38:54.273345] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:38:54.277334] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:38:54.281324] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:38:54.285313] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:38:54.289303] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:38:54.293291] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:38:54.293291] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:38:54.303266] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:38:54.304262] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:38:54.315232] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:38:54.315232] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:38:54.320220] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:38:54.324210] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:38:54.328198] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:38:54.328198] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:38:54.332187] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:38:54.337175] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:38:54.342161] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:38:54.345154] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:38:54.349142] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:38:54.349142] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:38:54.355126] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:38:54.357121] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:38:54.361111] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:38:54.366098] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:38:54.373078] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:38:54.379062] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:38:54.383051] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:38:54.383051] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:38:54.389035] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:38:54.392028] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:38:54.398012] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:38:54.401004] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:38:54.405990] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:38:54.406988] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:38:54.413969] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:38:54.414967] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:38:54.422945] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:38:54.426934] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:38:54.433916] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:38:54.436908] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:38:54.443889] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:38:54.447879] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:38:54.448876] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:38:54.449873] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:54.455858] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:54.465830] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:38:54.466827] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:38:54.466827] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:38:54.472811] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:38:54.476802] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:38:54.487772] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:38:54.492759] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:38:54.494753] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:38:54.495750] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:38:54.500737] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:38:54.503729] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:38:54.505724] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:38:54.505724] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:38:54.518689] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:38:54.523675] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:38:54.530657] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:38:54.534648] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:38:54.541628] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:38:54.545617] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:38:54.550604] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:38:54.550604] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:38:54.557585] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:38:54.559580] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:38:54.563569] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:38:54.567559] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:38:54.570550] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:38:54.570550] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:38:54.575537] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:38:54.579526] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:38:54.584513] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:38:54.589501] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:38:54.595483] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:38:54.602465] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:38:54.607451] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:38:54.607451] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:38:54.616428] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:38:54.616428] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:38:54.620417] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:38:54.621414] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:38:54.624406] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences +[2020-05-12 20:38:54.631388] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) +[2020-05-12 20:38:54.635377] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) +[2020-05-12 20:38:54.646347] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items +[2020-05-12 20:38:54.652332] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words +[2020-05-12 20:38:54.652332] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) +[2020-05-12 20:38:54.653329] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes +[2020-05-12 20:38:54.655323] INFO: gensim.models.word2vec: resetting layer weights +[2020-05-12 20:38:54.667292] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 +[2020-05-12 20:38:54.667292] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey +[2020-05-12 20:38:54.669286] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:38:54.670301] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:54.677265] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:54.688236] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:38:54.688236] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:38:54.688236] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:38:54.693222] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:38:54.700709] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:38:54.705695] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:38:54.716666] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:38:54.721652] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 +[2020-05-12 20:38:54.726641] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:38:54.728634] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:38:54.735615] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:38:54.741600] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:38:54.745588] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 +[2020-05-12 20:38:54.745588] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:38:54.748580] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:38:54.758553] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:38:54.759551] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:38:54.764537] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 +[2020-05-12 20:38:54.769525] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:38:54.771519] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:38:54.775508] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:38:54.785481] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:38:54.789471] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:38:54.796453] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:38:54.799444] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 +[2020-05-12 20:38:54.800441] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:38:54.802436] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:38:54.808420] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:38:54.812501] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:38:54.817396] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 +[2020-05-12 20:38:54.823380] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:38:54.825375] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:38:54.836346] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:38:54.837343] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:38:54.850308] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 +[2020-05-12 20:38:54.850308] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:38:54.852303] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:38:54.863274] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:38:54.871252] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:38:54.883220] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:38:54.883220] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:38:54.887209] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 +[2020-05-12 20:38:54.892196] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:38:54.894191] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:38:54.900176] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:38:54.903167] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:38:54.909151] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 +[2020-05-12 20:38:54.913140] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:38:54.916132] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:38:54.922116] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:38:54.929099] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:38:54.935082] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 +[2020-05-12 20:38:54.946053] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:38:54.948047] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:38:54.956027] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:38:54.960016] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:38:54.965001] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 +[2020-05-12 20:38:54.969990] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:38:54.971983] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:38:54.980959] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:38:54.985945] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:38:54.991929] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 +[2020-05-12 20:38:54.996917] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:38:55.000906] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:38:55.006890] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:38:55.012874] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:38:55.017860] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 +[2020-05-12 20:38:55.026836] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:38:55.028831] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:38:55.034815] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:38:55.040800] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:38:55.043791] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:38:55.044789] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:38:55.050772] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 +[2020-05-12 20:38:55.056756] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:38:55.058751] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:38:55.065732] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:38:55.073800] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:38:55.077700] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:38:55.077700] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:38:55.082687] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 +[2020-05-12 20:38:55.089669] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:38:55.091663] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:38:55.097647] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:38:55.104629] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:38:55.109615] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:38:55.117594] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:38:55.125572] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 +[2020-05-12 20:38:55.129563] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:38:55.132554] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:38:55.139534] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:38:55.143525] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:38:55.151503] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 +[2020-05-12 20:38:55.157488] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:38:55.159482] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:38:55.165466] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:38:55.170453] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:38:55.174441] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:38:55.181423] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:38:55.186410] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 +[2020-05-12 20:38:55.192395] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:38:55.195903] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:38:55.200878] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:38:55.211850] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:55.211850] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:55.215840] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:38:55.224818] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:38:55.225813] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:38:55.233791] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:38:55.235785] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:38:55.243764] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 +[2020-05-12 20:38:55.250746] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:38:55.252739] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:38:55.260718] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:38:55.266703] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:38:55.273684] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 +[2020-05-12 20:38:55.281664] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:38:55.285652] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:38:55.292634] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:38:55.298127] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:38:55.304111] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:38:55.312091] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:38:55.324059] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 +[2020-05-12 20:38:55.324059] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:38:55.334033] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:38:55.339018] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:38:55.347994] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:38:55.351983] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 +[2020-05-12 20:38:55.357968] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:38:55.359962] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:38:55.364949] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:38:55.370933] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:38:55.375919] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 +[2020-05-12 20:38:55.379910] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:38:55.381903] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:38:55.384895] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:38:55.385893] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:38:55.403352] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 +[2020-05-12 20:38:55.407343] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:38:55.408339] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:38:55.412328] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:38:55.412328] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:38:55.416317] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 +[2020-05-12 20:38:55.421305] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:38:55.423298] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:38:55.429283] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:38:55.434270] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:38:55.440253] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 +[2020-05-12 20:38:55.442249] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:38:55.444243] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:38:55.447235] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:38:55.448232] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:38:55.459202] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 +[2020-05-12 20:38:55.459202] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:38:55.461198] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:38:55.466184] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:38:55.471171] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:38:55.476157] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 +[2020-05-12 20:38:55.476157] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:38:55.479149] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:38:55.488125] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:38:55.488125] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:38:55.496616] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 +[2020-05-12 20:38:55.497607] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:38:55.499601] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:38:55.503590] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:38:55.504588] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:38:55.513564] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 +[2020-05-12 20:38:55.514561] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:38:55.516556] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:38:55.520545] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:38:55.527527] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:38:55.532513] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 +[2020-05-12 20:38:55.538497] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:38:55.540495] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:38:55.543484] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:38:55.543484] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:38:55.549467] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 +[2020-05-12 20:38:55.558443] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:38:55.566423] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:38:55.571409] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:38:55.571409] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:38:55.578390] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 +[2020-05-12 20:38:55.582381] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:38:55.584375] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:38:55.588364] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:38:55.597340] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:38:55.603324] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 +[2020-05-12 20:38:55.608310] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:38:55.611303] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:38:55.615292] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:38:55.623272] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:38:55.627259] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 +[2020-05-12 20:38:55.627259] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:38:55.629255] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:38:55.639228] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:38:55.643218] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:38:55.649201] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 +[2020-05-12 20:38:55.649201] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:38:55.651196] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:38:55.663164] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:38:55.664162] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:38:55.666156] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 +[2020-05-12 20:38:55.671143] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:38:55.673137] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:38:55.676129] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:38:55.676129] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:38:55.679122] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:38:55.686103] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:55.686103] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:55.687100] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:38:55.687100] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:38:55.687100] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:38:55.693084] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 +[2020-05-12 20:38:55.699068] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:38:55.699068] INFO: gensim.models.word2vec: PROGRESS: at 45.98% examples, 244516 words/s, in_qsize 0, out_qsize 0 +[2020-05-12 20:38:55.701063] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:38:55.705051] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:38:55.705051] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:38:55.709041] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 +[2020-05-12 20:38:55.713033] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:38:55.714028] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:38:55.718017] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:38:55.719016] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:38:55.724001] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 +[2020-05-12 20:38:55.726995] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:38:55.727991] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:38:55.733975] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:38:55.739959] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:38:55.743947] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:38:55.743947] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:38:55.747937] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 +[2020-05-12 20:38:55.755916] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:38:55.760903] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:55.761901] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:55.762897] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:38:55.762897] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:38:55.762897] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:38:55.766886] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:38:55.767884] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:38:55.771873] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 +[2020-05-12 20:38:55.775863] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:38:55.776860] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:38:55.781846] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:38:55.790823] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:38:55.794811] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 +[2020-05-12 20:38:55.795810] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:38:55.802791] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:38:55.805782] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:38:55.806779] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:38:55.810769] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 +[2020-05-12 20:38:55.816753] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:38:55.818747] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:38:55.824732] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:38:55.835704] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:38:55.852657] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 +[2020-05-12 20:38:55.859639] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:38:55.860636] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:38:55.875596] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:38:55.881581] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:38:55.897537] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 +[2020-05-12 20:38:55.904519] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:38:55.907511] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:38:55.923468] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:38:55.931447] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:38:55.936433] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:38:55.945410] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:38:55.957377] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 +[2020-05-12 20:38:55.959372] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:38:55.962364] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:38:55.974333] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:38:55.974333] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:38:55.982310] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 +[2020-05-12 20:38:55.987298] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:38:55.991287] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:38:56.010236] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:38:56.014226] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:38:56.016220] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:38:56.017217] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:56.017217] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:56.018215] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:38:56.024198] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:38:56.032178] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:38:56.037163] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 +[2020-05-12 20:38:56.038161] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:38:56.040155] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:38:56.049132] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:38:56.056113] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:38:56.061100] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 +[2020-05-12 20:38:56.066086] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:38:56.069078] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:38:56.073091] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:38:56.079051] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:38:56.084038] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 +[2020-05-12 20:38:56.089025] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:38:56.091020] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:38:56.096006] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:38:56.104983] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:38:56.108972] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 +[2020-05-12 20:38:56.115954] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:38:56.117948] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:38:56.123932] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:38:56.130913] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:38:56.134902] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 +[2020-05-12 20:38:56.134902] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:38:56.136897] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:38:56.145873] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:38:56.145873] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:38:56.147867] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:38:56.148865] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:56.148865] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:56.148865] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:38:56.149863] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:38:56.156844] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:38:56.167814] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 +[2020-05-12 20:38:56.169809] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:38:56.176790] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:38:56.188758] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:38:56.189755] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:38:56.194742] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 +[2020-05-12 20:38:56.199729] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:38:56.201723] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:38:56.206710] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:38:56.214689] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:38:56.218678] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 +[2020-05-12 20:38:56.218678] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:38:56.221670] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:38:56.235633] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:38:56.239622] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:38:56.244609] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 +[2020-05-12 20:38:56.247602] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:38:56.249596] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:38:56.252587] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:38:56.252587] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:38:56.257574] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 +[2020-05-12 20:38:56.260566] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:38:56.262561] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:38:56.270540] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:38:56.270540] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:56.270540] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:56.272534] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:38:56.272534] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:38:56.272534] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:38:56.276524] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:38:56.281511] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:38:56.285499] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 +[2020-05-12 20:38:56.285499] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:38:56.287495] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:38:56.291483] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:38:56.295473] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:38:56.305446] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:38:56.315419] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:38:56.329382] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 +[2020-05-12 20:38:56.330380] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:38:56.332374] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:38:56.342347] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:38:56.347334] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:38:56.350326] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 +[2020-05-12 20:38:56.351324] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:38:56.353318] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:38:56.361297] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:38:56.366283] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:38:56.369275] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:38:56.369275] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:38:56.375259] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 +[2020-05-12 20:38:56.379249] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:38:56.381243] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:38:56.384235] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:38:56.385233] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:38:56.391217] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 +[2020-05-12 20:38:56.392214] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:38:56.395206] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:38:56.405684] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:38:56.406682] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:38:56.418649] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 +[2020-05-12 20:38:56.418649] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:38:56.420644] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:38:56.423636] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:38:56.428623] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:38:56.431614] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 +[2020-05-12 20:38:56.432612] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:38:56.433609] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:38:56.437598] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:38:56.442587] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:38:56.446574] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 +[2020-05-12 20:38:56.446574] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:38:56.447572] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:38:56.456548] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:38:56.458542] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:38:56.464527] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 +[2020-05-12 20:38:56.469514] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:38:56.471508] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:38:56.475497] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:38:56.475497] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:38:56.488462] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 +[2020-05-12 20:38:56.488462] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:38:56.491455] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:38:56.498436] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:38:56.498436] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:38:56.498436] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:38:56.499433] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:38:56.500431] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:38:56.500431] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:38:56.507412] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:38:56.511402] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:38:56.515390] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 +[2020-05-12 20:38:56.516388] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:38:56.517385] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:38:56.527358] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:38:56.527358] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:38:56.529353] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:38:56.530350] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:38:56.531348] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:38:56.531348] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:38:56.537332] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 +[2020-05-12 20:38:56.547306] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:38:56.549300] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:38:56.552292] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:38:56.552292] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:38:56.560271] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 +[2020-05-12 20:38:56.566256] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:38:56.575231] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:38:56.578222] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:38:56.578222] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:38:56.583209] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 +[2020-05-12 20:38:56.587199] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:38:56.596175] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:38:56.600163] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:38:56.601162] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:38:56.602159] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:38:56.608143] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:38:56.622106] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 +[2020-05-12 20:38:56.624100] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:38:56.626095] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:38:56.631081] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:38:56.636069] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:38:56.641054] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 +[2020-05-12 20:38:56.641054] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:38:56.643050] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:38:56.654019] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:38:56.654019] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:38:56.660004] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 +[2020-05-12 20:38:56.664991] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:38:56.666985] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:38:56.669977] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:38:56.670975] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:38:56.680948] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 +[2020-05-12 20:38:56.684938] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs +[2020-05-12 20:38:56.692916] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs +[2020-05-12 20:38:56.692916] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:38:56.693914] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:38:56.693914] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads +[2020-05-12 20:38:56.694911] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads +[2020-05-12 20:38:56.694911] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads +[2020-05-12 20:38:56.709870] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:38:56.709870] INFO: gensim.models.word2vec: PROGRESS: at 100.00% examples, 254406 words/s, in_qsize 0, out_qsize 1 +[2020-05-12 20:38:56.710868] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads +[2020-05-12 20:38:56.710868] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 2.0s, 254283 effective words/s diff --git a/tmp/dna2vec-20200512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt b/tmp/dna2vec-20200512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt new file mode 100644 index 0000000..148333c --- /dev/null +++ b/tmp/dna2vec-20200512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt @@ -0,0 +1,854 @@ +[2020-05-12 20:40:34.614334] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml +[2020-05-12 20:40:34.614334] INFO: Generic: kmer fragmenter: sliding +[2020-05-12 20:40:34.614334] INFO: SeqGenerator: Number of epochs: 1 +[2020-05-12 20:40:34.614334] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 +[2020-05-12 20:40:34.615332] INFO: Learner: Context window half size: 4 +[2020-05-12 20:40:34.615332] INFO: Learner: Use skipgram: 1 +[2020-05-12 20:40:34.615332] INFO: Learner: gensim_iters: 1 +[2020-05-12 20:40:34.615332] INFO: Learner: vec_dim: 12 +[2020-05-12 20:40:34.625305] INFO: gensim.models.word2vec: collecting all words and their counts +[2020-05-12 20:40:34.625305] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:40:34.625305] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:34.625305] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:34.636275] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:40:34.637273] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:40:34.638271] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:40:34.643257] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types +[2020-05-12 20:40:34.651236] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:40:34.651236] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:40:34.657219] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:40:34.658217] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:40:34.672180] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:40:34.677166] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:40:34.684147] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:40:34.686142] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:40:34.690131] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:40:34.690131] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:40:34.694121] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:40:34.699108] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:40:34.704094] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:40:34.705091] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:40:34.708083] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:40:34.713071] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:40:34.717059] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:40:34.721050] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:40:34.726035] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:40:34.727033] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:40:34.738003] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:40:34.740997] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:40:34.749971] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:40:34.754959] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:40:34.759944] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:40:34.760942] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:40:34.765929] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:40:34.768923] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:40:34.774905] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:40:34.776899] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:40:34.780889] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:40:34.781886] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:40:34.784878] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:40:34.787870] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:40:34.792856] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:40:34.796847] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:40:34.801832] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:40:34.802830] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:40:34.808814] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:40:34.809812] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:40:34.823774] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:40:34.823774] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:40:34.828761] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:40:34.830755] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:40:34.841726] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:40:34.844718] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:40:34.862670] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:40:34.862670] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:40:34.869651] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:40:34.872644] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:40:34.877630] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:40:34.880623] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:40:34.884611] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:40:34.884611] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:40:34.888600] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:40:34.894585] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:40:34.897576] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:40:34.898574] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:40:34.903560] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:40:34.906552] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:40:34.911539] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:40:34.913534] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:40:34.918520] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:40:34.921513] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:40:34.930488] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:40:34.931486] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:40:34.935475] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:40:34.941460] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:40:34.946445] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:40:34.946445] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:40:34.956420] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:40:34.957417] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:40:34.967390] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:40:34.968387] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:40:34.972376] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:40:34.976871] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:40:34.980860] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:40:34.983852] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:40:34.988838] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:40:34.988838] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:40:34.992828] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:40:34.996817] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:40:35.001804] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:40:35.004796] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:35.004796] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:35.006791] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:40:35.011778] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:40:35.017761] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:40:35.022748] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:40:35.023745] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:40:35.029729] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:40:35.032869] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:40:35.037708] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:40:35.037708] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:40:35.042694] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:40:35.047681] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:40:35.053666] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:40:35.058652] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:40:35.062641] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:40:35.066630] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:40:35.071617] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:40:35.071617] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:40:35.079104] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:40:35.080101] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:40:35.084090] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:40:35.088081] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:40:35.095062] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:40:35.096059] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:40:35.101045] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:40:35.102043] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:40:35.112016] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:40:35.116006] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:40:35.122987] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:40:35.128970] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:40:35.132960] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:40:35.137947] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:40:35.141936] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:40:35.142933] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:40:35.147920] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:40:35.149915] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:40:35.154901] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:40:35.158891] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:40:35.162880] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:40:35.162880] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:40:35.169861] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:40:35.171857] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:40:35.177347] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:40:35.178345] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:40:35.188318] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:40:35.192308] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:40:35.196296] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:40:35.196296] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:40:35.203278] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:40:35.204275] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:40:35.210259] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:40:35.213253] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:40:35.217240] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:40:35.218238] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:40:35.222227] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:40:35.227215] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:40:35.234196] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:40:35.239182] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:40:35.245166] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:40:35.248159] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:40:35.253144] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:40:35.254142] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:40:35.259128] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:40:35.261124] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:40:35.267107] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:40:35.269102] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:40:35.273091] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:40:35.273091] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:40:35.279581] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:40:35.281575] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:40:35.288557] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:40:35.289556] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:40:35.294541] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:40:35.296536] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:40:35.301522] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:40:35.301522] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:40:35.308503] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:40:35.309502] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:40:35.313490] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:40:35.317480] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:40:35.320471] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:40:35.321469] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:40:35.326455] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:40:35.330445] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:40:35.334434] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:40:35.337426] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:35.338426] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:35.339422] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:40:35.339422] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:40:35.340418] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:40:35.346402] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:40:35.350391] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:40:35.354381] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:40:35.359369] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:40:35.364354] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:40:35.364354] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:40:35.369341] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:40:35.373331] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:40:35.377319] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:40:35.377319] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:40:35.382306] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:40:35.385298] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:40:35.389287] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:40:35.394275] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:40:35.399260] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:40:35.399260] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:35.399260] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:35.400259] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:40:35.401256] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:40:35.407240] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:40:35.419207] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:40:35.421203] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:40:35.426188] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:40:35.427186] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:40:35.435166] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:40:35.436163] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:40:35.441148] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:40:35.441148] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:40:35.446135] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:40:35.448131] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:40:35.453116] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:40:35.456110] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:40:35.461095] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:40:35.462092] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:40:35.468077] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:40:35.469074] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:40:35.475058] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:40:35.477054] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:40:35.481042] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:40:35.482039] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:40:35.486029] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:40:35.490018] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:40:35.496002] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:40:35.496999] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:40:35.513954] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:40:35.513954] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:40:35.520936] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:40:35.521933] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:40:35.525922] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:40:35.530908] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:40:35.540882] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:40:35.541879] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:40:35.544871] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:40:35.544871] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:35.544871] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:35.545868] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:40:35.545868] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:40:35.545868] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:40:35.551852] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:40:35.552850] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:40:35.564818] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:40:35.566858] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:40:35.573794] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:40:35.574792] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:40:35.581773] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:40:35.586759] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:40:35.591746] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:40:35.591746] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:40:35.596732] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:40:35.600723] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:40:35.608701] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:40:35.611693] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:40:35.616681] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:40:35.621666] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:40:35.627650] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:40:35.628647] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:40:35.632636] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:40:35.636627] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:40:35.645602] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:40:35.646599] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:35.646599] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:35.646599] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:40:35.647597] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:40:35.647597] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:40:35.653580] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:40:35.656573] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:40:35.663554] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:40:35.664552] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:40:35.668540] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:40:35.672530] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:40:35.680508] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:40:35.684500] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:40:35.693474] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:40:35.694473] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:40:35.700455] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:40:35.705442] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:40:35.713421] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:40:35.714418] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:40:35.722397] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:40:35.727384] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:40:35.733367] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:40:35.733367] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:40:35.736359] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:40:35.747330] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:35.748329] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:35.749325] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:40:35.750322] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:40:35.750322] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:40:35.758300] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:40:35.760295] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:40:35.764284] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:40:35.767276] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:40:35.773260] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:40:35.775255] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:40:35.785228] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:40:35.789218] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:40:35.798194] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:40:35.798194] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:40:35.803180] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:40:35.804178] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:40:35.817144] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:40:35.824125] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:40:35.828114] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:40:35.828114] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:40:35.833100] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:40:35.838088] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:40:35.848060] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:40:35.852051] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:40:35.856039] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:40:35.856039] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:40:35.864018] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:40:35.865015] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:40:35.869004] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:40:35.875986] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:40:35.882967] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:40:35.885959] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:40:35.889948] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:40:35.893939] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:40:35.897927] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:40:35.897927] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:40:35.902914] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:40:35.905906] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:40:35.914883] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:40:35.915881] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:40:35.922860] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:40:35.927847] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:40:35.936823] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:40:35.940812] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:40:35.947794] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:40:35.949789] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:40:35.958764] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:40:35.965746] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:40:35.966743] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:40:35.968737] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:35.968737] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:35.969736] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:40:35.970733] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:40:35.976717] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:40:36.006636] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:40:36.006636] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:40:36.012622] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:40:36.014615] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:40:36.018604] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:40:36.024589] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:40:36.027581] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:40:36.034562] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:40:36.036556] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:40:36.037553] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:40:36.043537] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:40:36.047529] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:40:36.051516] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:40:36.051516] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:40:36.057500] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:40:36.060493] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:40:36.064482] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:40:36.065479] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:40:36.071463] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:40:36.074456] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:40:36.079441] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:40:36.079441] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:40:36.082434] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:40:36.088419] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:40:36.093404] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:40:36.094401] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:40:36.100385] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:40:36.101383] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:40:36.118338] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:40:36.118338] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:40:36.122327] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:40:36.123325] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:40:36.135292] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:40:36.135292] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:40:36.140279] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:40:36.149255] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:40:36.154241] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences +[2020-05-12 20:40:36.160226] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) +[2020-05-12 20:40:36.165213] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) +[2020-05-12 20:40:36.168204] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items +[2020-05-12 20:40:36.169202] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words +[2020-05-12 20:40:36.169202] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) +[2020-05-12 20:40:36.169202] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes +[2020-05-12 20:40:36.174188] INFO: gensim.models.word2vec: resetting layer weights +[2020-05-12 20:40:36.190650] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 +[2020-05-12 20:40:36.192646] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey +[2020-05-12 20:40:36.194640] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:40:36.195637] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:36.195637] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:36.197631] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:40:36.197631] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:40:36.197631] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:40:36.202618] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:40:36.216582] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:40:36.222565] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:40:36.229546] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:40:36.238522] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 +[2020-05-12 20:40:36.243509] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:40:36.245503] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:40:36.255477] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:40:36.260463] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:40:36.268441] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 +[2020-05-12 20:40:36.272432] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:40:36.275423] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:40:36.279412] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:40:36.283402] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:40:36.287391] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 +[2020-05-12 20:40:36.288388] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:40:36.296367] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:40:36.301354] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:40:36.301354] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:40:36.306340] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:40:36.312325] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:40:36.315316] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 +[2020-05-12 20:40:36.316313] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:40:36.318310] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:40:36.329279] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:40:36.329279] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:40:36.335263] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 +[2020-05-12 20:40:36.338255] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:40:36.340250] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:40:36.346234] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:40:36.351220] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:40:36.358202] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 +[2020-05-12 20:40:36.359199] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:40:36.361194] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:40:36.366180] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:40:36.374159] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:40:36.377151] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:40:36.377151] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:40:36.382138] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 +[2020-05-12 20:40:36.386127] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:40:36.388122] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:40:36.400089] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:40:36.401089] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:40:36.414052] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 +[2020-05-12 20:40:36.415050] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:40:36.422031] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:40:36.427017] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:40:36.428015] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:40:36.436991] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 +[2020-05-12 20:40:36.436991] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:40:36.438986] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:40:36.444970] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:40:36.449957] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:40:36.457935] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 +[2020-05-12 20:40:36.463919] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:40:36.465914] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:40:36.472895] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:40:36.482869] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:40:36.491845] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 +[2020-05-12 20:40:36.494837] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:40:36.498826] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:40:36.509796] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:40:36.510794] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:40:36.514783] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 +[2020-05-12 20:40:36.520768] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:40:36.522761] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:40:36.527748] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:40:36.533733] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:40:36.538719] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:40:36.546699] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:40:36.553680] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 +[2020-05-12 20:40:36.561658] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:40:36.563652] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:40:36.569636] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:40:36.575621] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:40:36.581604] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:40:36.587588] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:40:36.595568] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 +[2020-05-12 20:40:36.603547] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:40:36.605541] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:40:36.614516] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:40:36.618506] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:40:36.624490] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:40:36.630474] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:40:36.637456] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 +[2020-05-12 20:40:36.644436] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:40:36.646431] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:40:36.651418] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:40:36.659397] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:40:36.663386] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 +[2020-05-12 20:40:36.664384] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:40:36.674357] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:40:36.680341] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:40:36.686831] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:40:36.694809] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:40:36.698799] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:40:36.702787] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 +[2020-05-12 20:40:36.702787] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:40:36.704782] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:40:36.709769] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:40:36.712761] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:36.713759] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:36.715753] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:40:36.715753] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:40:36.715753] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:40:36.723731] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:40:36.726724] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:40:36.734703] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 +[2020-05-12 20:40:36.745674] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:40:36.748666] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:40:36.767615] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:40:36.770607] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:40:36.773598] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 +[2020-05-12 20:40:36.774596] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:40:36.776590] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:40:36.798040] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:40:36.801033] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:40:36.807016] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:40:36.815993] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:40:36.819981] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 +[2020-05-12 20:40:36.825966] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:40:36.827960] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:40:36.838931] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:40:36.839928] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:40:36.842920] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 +[2020-05-12 20:40:36.842920] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:40:36.845913] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:40:36.860872] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:40:36.867855] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:40:36.872840] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 +[2020-05-12 20:40:36.879821] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:40:36.881816] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:40:36.884807] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:40:36.885805] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:40:36.891298] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 +[2020-05-12 20:40:36.893293] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:40:36.903267] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:40:36.906258] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:40:36.906258] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:40:36.910247] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 +[2020-05-12 20:40:36.915234] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:40:36.916231] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:40:36.922215] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:40:36.931191] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:40:36.934183] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 +[2020-05-12 20:40:36.935180] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:40:36.937175] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:40:36.946151] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:40:36.946151] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:40:36.951138] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 +[2020-05-12 20:40:36.957123] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:40:36.958119] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:40:36.964106] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:40:36.970087] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:40:36.973079] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 +[2020-05-12 20:40:36.973079] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:40:36.975073] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:40:36.979063] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:40:36.984050] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:40:36.989541] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 +[2020-05-12 20:40:36.989541] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:40:36.990538] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:40:37.002506] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:40:37.007493] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:40:37.010485] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 +[2020-05-12 20:40:37.010485] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:40:37.012480] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:40:37.023450] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:40:37.023450] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:40:37.030431] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 +[2020-05-12 20:40:37.032426] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:40:37.033424] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:40:37.037413] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:40:37.038410] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:40:37.043397] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 +[2020-05-12 20:40:37.049382] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:40:37.051376] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:40:37.056362] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:40:37.059354] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:40:37.067333] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 +[2020-05-12 20:40:37.068330] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:40:37.070325] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:40:37.074315] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:40:37.074315] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:40:37.082293] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 +[2020-05-12 20:40:37.082293] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:40:37.084288] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:40:37.090272] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:40:37.095259] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:40:37.099247] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 +[2020-05-12 20:40:37.099247] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:40:37.101242] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:40:37.106229] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:40:37.117200] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:40:37.122186] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 +[2020-05-12 20:40:37.131163] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:40:37.133157] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:40:37.137147] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:40:37.143130] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:40:37.148117] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 +[2020-05-12 20:40:37.148117] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:40:37.150112] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:40:37.154101] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:40:37.163077] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:40:37.166069] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:40:37.172054] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:37.172054] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:37.173050] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:40:37.173050] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:40:37.173050] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:40:37.178037] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 +[2020-05-12 20:40:37.188011] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:40:37.190005] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:40:37.193994] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:40:37.198981] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:40:37.203967] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 +[2020-05-12 20:40:37.203967] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:40:37.204965] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:40:37.206960] INFO: gensim.models.word2vec: PROGRESS: at 47.70% examples, 253947 words/s, in_qsize 0, out_qsize 0 +[2020-05-12 20:40:37.217930] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:40:37.222917] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:40:37.225909] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 +[2020-05-12 20:40:37.225909] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:40:37.227904] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:40:37.240870] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:40:37.247851] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:40:37.250843] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:40:37.251839] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:40:37.256826] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 +[2020-05-12 20:40:37.263807] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:40:37.268795] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:37.268795] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:37.270789] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:40:37.270789] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:40:37.271786] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:40:37.274778] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:40:37.283755] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:40:37.286746] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 +[2020-05-12 20:40:37.287743] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:40:37.288741] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:40:37.292730] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:40:37.302704] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:40:37.316666] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 +[2020-05-12 20:40:37.316666] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:40:37.319658] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:40:37.335615] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:40:37.335615] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:40:37.340602] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 +[2020-05-12 20:40:37.344592] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:40:37.346586] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:40:37.356559] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:40:37.356559] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:40:37.363541] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 +[2020-05-12 20:40:37.365536] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:40:37.367530] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:40:37.374511] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:40:37.381493] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:40:37.384485] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 +[2020-05-12 20:40:37.384485] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:40:37.386479] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:40:37.397450] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:40:37.397450] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:40:37.400443] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:40:37.401440] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:40:37.412410] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 +[2020-05-12 20:40:37.412410] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:40:37.414405] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:40:37.425375] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:40:37.427370] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:40:37.432357] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 +[2020-05-12 20:40:37.435349] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:40:37.437343] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:40:37.443327] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:40:37.449312] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:40:37.451306] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:40:37.452303] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:37.452303] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:37.452303] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:40:37.452303] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:40:37.453301] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:40:37.459285] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 +[2020-05-12 20:40:37.463275] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:40:37.465269] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:40:37.471253] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:40:37.476239] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:40:37.482223] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 +[2020-05-12 20:40:37.488208] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:40:37.491200] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:40:37.501173] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:40:37.501173] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:40:37.506159] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 +[2020-05-12 20:40:37.511147] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:40:37.513141] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:40:37.518127] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:40:37.518127] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:40:37.522117] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 +[2020-05-12 20:40:37.526107] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:40:37.527104] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:40:37.533088] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:40:37.538074] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:40:37.544058] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 +[2020-05-12 20:40:37.547051] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:40:37.549045] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:40:37.552036] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:40:37.552036] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:40:37.556026] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:40:37.560015] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:37.561014] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:37.561014] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:40:37.562010] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:40:37.562010] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:40:37.565999] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 +[2020-05-12 20:40:37.565999] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:40:37.567994] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:40:37.581957] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:40:37.586943] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:40:37.591930] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 +[2020-05-12 20:40:37.594922] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:40:37.596917] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:40:37.602901] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:40:37.608885] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:40:37.615866] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 +[2020-05-12 20:40:37.615866] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:40:37.616864] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:40:37.626836] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:40:37.626836] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:40:37.631823] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 +[2020-05-12 20:40:37.635813] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:40:37.637808] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:40:37.647780] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:40:37.647780] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:40:37.653764] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 +[2020-05-12 20:40:37.656756] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:40:37.658752] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:40:37.661743] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:40:37.661743] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:37.661743] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:37.662741] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:40:37.662741] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:40:37.663738] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:40:37.667727] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:40:37.673711] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:40:37.677700] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 +[2020-05-12 20:40:37.677700] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:40:37.679696] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:40:37.691663] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:40:37.691663] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:40:37.697647] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:40:37.698645] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:40:37.710613] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 +[2020-05-12 20:40:37.710613] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:40:37.711610] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:40:37.717594] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:40:37.726570] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:40:37.737540] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 +[2020-05-12 20:40:37.737540] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:40:37.739535] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:40:37.744522] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:40:37.749509] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:40:37.754495] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:40:37.755493] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:40:37.766463] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 +[2020-05-12 20:40:37.775440] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:40:37.781424] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:40:37.785412] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:40:37.785412] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:40:37.788404] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 +[2020-05-12 20:40:37.789402] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:40:37.795386] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:40:37.807354] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:40:37.807354] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:40:37.816330] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 +[2020-05-12 20:40:37.817328] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:40:37.819322] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:40:37.822314] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:40:37.822314] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:40:37.827300] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 +[2020-05-12 20:40:37.830293] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:40:37.837274] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:40:37.848244] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:40:37.852234] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:40:37.857220] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 +[2020-05-12 20:40:37.857220] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:40:37.858218] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:40:37.869188] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:40:37.873181] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:40:37.878164] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 +[2020-05-12 20:40:37.878164] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:40:37.880160] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:40:37.890132] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:40:37.894123] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:40:37.899617] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 +[2020-05-12 20:40:37.899617] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:40:37.900615] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:40:37.908593] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:40:37.909591] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:40:37.909591] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:40:37.910588] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:40:37.910588] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:40:37.911586] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:40:37.917569] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:40:37.921560] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:40:37.924550] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 +[2020-05-12 20:40:37.925547] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:40:37.926545] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:40:37.929537] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:40:37.942503] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:40:37.945494] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:40:37.945494] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:40:37.946492] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:40:37.946492] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:40:37.953473] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 +[2020-05-12 20:40:37.957463] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:40:37.958460] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:40:37.961452] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:40:37.962449] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:40:37.967436] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 +[2020-05-12 20:40:37.976412] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:40:37.983393] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:40:37.988379] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:40:37.988379] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:40:37.993366] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 +[2020-05-12 20:40:37.998355] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:40:37.999351] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:40:38.003340] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:40:38.004351] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:40:38.007329] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:40:38.012317] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:40:38.016305] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 +[2020-05-12 20:40:38.016305] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:40:38.018299] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:40:38.024283] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:40:38.034257] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:40:38.038246] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 +[2020-05-12 20:40:38.039244] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:40:38.041239] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:40:38.050214] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:40:38.051212] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:40:38.054204] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 +[2020-05-12 20:40:38.060188] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:40:38.062183] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:40:38.065174] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:40:38.066171] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:40:38.069164] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 +[2020-05-12 20:40:38.074150] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs +[2020-05-12 20:40:38.077142] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs +[2020-05-12 20:40:38.078140] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:40:38.078140] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads +[2020-05-12 20:40:38.078140] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads +[2020-05-12 20:40:38.080134] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:40:38.080134] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads +[2020-05-12 20:40:38.099083] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:40:38.102076] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads +[2020-05-12 20:40:38.102076] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 1.9s, 272191 effective words/s diff --git a/tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt b/tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt new file mode 100644 index 0000000..fb9b410 --- /dev/null +++ b/tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt @@ -0,0 +1,855 @@ +[2020-05-12 20:42:53.638727] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml +[2020-05-12 20:42:53.639724] INFO: Generic: kmer fragmenter: sliding +[2020-05-12 20:42:53.639724] INFO: SeqGenerator: Number of epochs: 1 +[2020-05-12 20:42:53.639724] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 +[2020-05-12 20:42:53.639724] INFO: Learner: Context window half size: 4 +[2020-05-12 20:42:53.639724] INFO: Learner: Use skipgram: 1 +[2020-05-12 20:42:53.640722] INFO: Learner: gensim_iters: 1 +[2020-05-12 20:42:53.640722] INFO: Learner: vec_dim: 12 +[2020-05-12 20:42:53.640722] INFO: gensim.models.word2vec: collecting all words and their counts +[2020-05-12 20:42:53.648210] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:42:53.648210] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:53.648210] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:53.659179] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:42:53.659179] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:42:53.660176] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:42:53.664165] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types +[2020-05-12 20:42:53.665163] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:42:53.665163] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:42:53.671146] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:42:53.672145] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:42:53.678128] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:42:53.679126] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:42:53.692091] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:42:53.692091] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:42:53.699071] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:42:53.702065] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:42:53.707051] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:42:53.713034] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:42:53.723008] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:42:53.724006] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:42:53.728992] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:42:53.733978] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:42:53.739962] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:42:53.749443] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:42:53.758418] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:42:53.762408] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:42:53.769389] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:42:53.770387] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:42:53.777368] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:42:53.783353] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:42:53.791331] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:42:53.792329] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:42:53.799309] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:42:53.805293] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:42:53.811277] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:42:53.818259] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:42:53.824242] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:42:53.831224] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:42:53.837208] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:42:53.840201] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:42:53.844189] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:42:53.844189] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:42:53.853166] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:42:53.853166] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:42:53.868125] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:42:53.872114] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:42:53.883085] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:42:53.889070] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:42:53.893058] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:42:53.894056] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:42:53.901037] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:42:53.902035] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:42:53.909016] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:42:53.914002] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:42:53.922979] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:42:53.922979] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:42:53.928962] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:42:53.928962] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:42:53.942926] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:42:53.948909] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:42:53.953895] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:42:53.960878] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:42:53.964867] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:42:53.970851] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:42:53.974840] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:42:53.981821] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:42:53.988802] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:42:53.991795] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:42:53.995784] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:42:53.999773] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:42:54.003763] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:42:54.003763] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:42:54.009746] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:42:54.015731] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:42:54.021715] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:42:54.025705] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:42:54.032685] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:42:54.035678] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:42:54.039666] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:42:54.039666] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:42:54.045650] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:42:54.049640] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:42:54.053629] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:42:54.053629] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:42:54.059613] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:42:54.060611] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:42:54.071581] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:42:54.073576] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:42:54.078562] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:42:54.082552] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:54.082552] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:54.084546] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:42:54.084546] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:42:54.084546] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:42:54.089533] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:42:54.094520] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:42:54.100503] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:42:54.103497] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:42:54.107485] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:42:54.108482] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:42:54.112472] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:42:54.116461] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:42:54.122445] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:42:54.122445] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:42:54.127432] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:42:54.132419] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:42:54.136407] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:42:54.137405] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:42:54.148376] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:42:54.148376] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:42:54.155357] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:42:54.157352] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:42:54.166328] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:42:54.166328] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:42:54.172313] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:42:54.174307] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:42:54.179294] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:42:54.186274] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:42:54.197245] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:42:54.200238] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:42:54.204226] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:42:54.205224] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:42:54.212205] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:42:54.252099] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:42:54.259079] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:42:54.264067] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:42:54.270050] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:42:54.279026] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:42:54.285011] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:42:54.292989] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:42:54.300968] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:42:54.304957] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:42:54.314930] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:42:54.321912] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:42:54.326898] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:42:54.333880] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:42:54.337869] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:42:54.337869] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:42:54.347843] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:42:54.348840] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:42:54.355821] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:42:54.362802] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:42:54.370781] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:42:54.378760] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:42:54.382749] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:42:54.386738] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:42:54.394717] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:42:54.400702] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:42:54.404690] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:42:54.408680] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:42:54.413666] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:42:54.414663] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:42:54.424637] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:42:54.429624] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:42:54.434610] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:42:54.435608] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:42:54.442589] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:42:54.450569] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:42:54.459543] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:42:54.465528] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:42:54.477495] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:42:54.479491] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:42:54.487469] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:42:54.492458] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:42:54.496445] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:42:54.497442] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:42:54.506418] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:42:54.513400] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:42:54.518386] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:42:54.518386] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:42:54.530354] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:42:54.535342] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:42:54.542323] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:42:54.547309] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:42:54.551298] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:42:54.551298] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:54.551298] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:54.552296] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:42:54.552296] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:42:54.552296] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:42:54.558280] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:42:54.561272] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:42:54.565261] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:42:54.565261] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:42:54.573240] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:42:54.575235] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:42:54.581218] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:42:54.584211] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:42:54.592189] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:42:54.598174] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:42:54.607149] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:42:54.610141] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:42:54.615127] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:42:54.615127] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:42:54.621112] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:42:54.624104] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:54.624104] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:54.625101] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:42:54.626098] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:42:54.626098] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:42:54.632083] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:42:54.638067] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:42:54.646046] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:42:54.653027] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:42:54.661512] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:42:54.665502] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:42:54.671485] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:42:54.672484] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:42:54.688439] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:42:54.694424] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:42:54.700408] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:42:54.706392] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:42:54.716366] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:42:54.719357] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:42:54.730328] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:42:54.732323] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:42:54.742298] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:42:54.742298] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:42:54.747282] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:42:54.747282] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:42:54.752269] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:42:54.765235] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:42:54.775208] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:42:54.785181] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:42:54.798147] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:42:54.800141] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:42:54.812111] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:42:54.816099] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:42:54.827070] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:42:54.830062] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:42:54.838040] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:42:54.839037] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:42:54.853000] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:42:54.853000] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:54.853000] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:54.853997] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:42:54.859983] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:42:54.859983] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:42:54.865964] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:42:54.865964] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:42:54.873944] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:42:54.880926] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:42:54.894888] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:42:54.900871] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:42:54.906856] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:42:54.906856] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:42:54.911842] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:42:54.915832] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:42:54.920818] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:42:54.921815] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:42:54.926802] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:42:54.928797] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:42:54.933783] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:42:54.937773] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:42:54.942777] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:42:54.952733] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:42:54.955725] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:42:54.955725] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:42:54.961708] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:42:54.965698] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:54.965698] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:54.966696] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:42:54.966696] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:42:54.966696] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:42:54.972679] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:42:54.977667] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:42:54.984647] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:42:54.990631] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:42:54.996615] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:42:54.996615] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:42:55.001602] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:42:55.006589] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:42:55.011575] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:42:55.012573] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:42:55.017559] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:42:55.019555] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:42:55.026535] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:42:55.026535] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:42:55.031522] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:42:55.033517] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:42:55.039500] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:42:55.039500] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:42:55.042493] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:42:55.048477] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:55.048477] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:55.049474] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:42:55.049474] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:42:55.050471] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:42:55.054461] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:42:55.061443] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:42:55.066428] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:42:55.066428] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:42:55.072412] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:42:55.074408] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:42:55.079394] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:42:55.079394] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:42:55.086375] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:42:55.088370] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:42:55.097347] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:42:55.103331] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:42:55.108316] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:42:55.109314] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:42:55.113303] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:42:55.117294] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:42:55.121282] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:42:55.121282] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:42:55.127266] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:42:55.131256] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:42:55.134247] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:42:55.135245] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:42:55.140231] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:42:55.144221] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:42:55.148210] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:42:55.148210] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:42:55.157691] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:42:55.162677] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:42:55.167664] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:42:55.172653] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:42:55.176640] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:42:55.176640] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:42:55.181627] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:42:55.185616] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:42:55.191600] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:42:55.193595] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:42:55.206560] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:42:55.207558] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:42:55.218528] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:42:55.220525] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:42:55.229499] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:42:55.229499] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:42:55.235483] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:42:55.241469] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:42:55.244459] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:42:55.244459] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:55.244459] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:55.245456] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:42:55.245456] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:42:55.246453] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:42:55.253435] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:42:55.255950] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:42:55.260923] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:42:55.261920] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:42:55.263915] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:42:55.268902] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:42:55.272891] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:42:55.276881] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:42:55.278875] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:42:55.278875] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:42:55.284859] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:42:55.289847] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:42:55.295830] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:42:55.295830] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:42:55.302811] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:42:55.304807] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:42:55.308795] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:42:55.308795] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:42:55.316774] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:42:55.317777] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:42:55.323755] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:42:55.323755] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:42:55.326747] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:42:55.331734] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:42:55.336720] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:42:55.336720] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:42:55.342704] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:42:55.345696] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:42:55.351680] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:42:55.358169] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:42:55.363156] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:42:55.368144] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:42:55.374126] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:42:55.380111] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:42:55.384100] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:42:55.385097] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:42:55.388089] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences +[2020-05-12 20:42:55.397065] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) +[2020-05-12 20:42:55.397065] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) +[2020-05-12 20:42:55.400057] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items +[2020-05-12 20:42:55.400057] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words +[2020-05-12 20:42:55.400057] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) +[2020-05-12 20:42:55.400057] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes +[2020-05-12 20:42:55.403049] INFO: gensim.models.word2vec: resetting layer weights +[2020-05-12 20:42:55.419006] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 +[2020-05-12 20:42:55.422996] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey +[2020-05-12 20:42:55.424990] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:42:55.424990] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:55.424990] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:55.426985] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:42:55.426985] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:42:55.426985] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:42:55.430974] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:42:55.437956] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:42:55.441945] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:42:55.442942] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:42:55.446931] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 +[2020-05-12 20:42:55.451919] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:42:55.453913] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:42:55.460401] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:42:55.464391] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:42:55.468380] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 +[2020-05-12 20:42:55.468380] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:42:55.470375] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:42:55.474364] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:42:55.481346] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:42:55.486332] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 +[2020-05-12 20:42:55.492317] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:42:55.494311] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:42:55.497303] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:42:55.497303] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:42:55.501292] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:42:55.506279] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:42:55.510268] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 +[2020-05-12 20:42:55.511265] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:42:55.513261] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:42:55.522236] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:42:55.523233] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:42:55.528221] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 +[2020-05-12 20:42:55.534206] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:42:55.536199] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:42:55.540188] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:42:55.540188] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:42:55.547170] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 +[2020-05-12 20:42:55.555149] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:42:55.562131] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:42:55.565121] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:42:55.566119] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:42:55.570108] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:42:55.576093] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:42:55.579084] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 +[2020-05-12 20:42:55.579084] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:42:55.581079] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:42:55.585068] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:42:55.588060] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:42:55.594044] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 +[2020-05-12 20:42:55.597037] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:42:55.598034] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:42:55.604017] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:42:55.609004] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:42:55.614988] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 +[2020-05-12 20:42:55.616984] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:42:55.618978] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:42:55.622967] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:42:55.623965] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:42:55.627953] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 +[2020-05-12 20:42:55.630946] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:42:55.632940] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:42:55.638924] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:42:55.643911] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:42:55.648897] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 +[2020-05-12 20:42:55.648897] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:42:55.651890] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:42:55.662860] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:42:55.667847] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:42:55.672833] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 +[2020-05-12 20:42:55.678818] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:42:55.680812] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:42:55.689788] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:42:55.689788] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:42:55.695772] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:42:55.699761] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:42:55.703751] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 +[2020-05-12 20:42:55.707740] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:42:55.709735] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:42:55.714722] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:42:55.720707] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:42:55.726689] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:42:55.728685] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:42:55.731676] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 +[2020-05-12 20:42:55.731676] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:42:55.733670] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:42:55.738657] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:42:55.741650] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:42:55.751623] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:42:55.754615] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:42:55.769575] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 +[2020-05-12 20:42:55.772567] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:42:55.774562] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:42:55.777553] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:42:55.784535] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:42:55.787527] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 +[2020-05-12 20:42:55.787527] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:42:55.789521] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:42:55.795505] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:42:55.797501] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:42:55.800492] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:42:55.801490] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:42:55.804482] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 +[2020-05-12 20:42:55.810465] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:42:55.812460] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:42:55.823431] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:42:55.823431] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:55.823431] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:55.826424] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:42:55.832408] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:42:55.832408] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:42:55.835399] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:42:55.835399] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:42:55.840385] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 +[2020-05-12 20:42:55.845372] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:42:55.848364] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:42:55.859335] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:42:55.860332] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:42:55.870305] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 +[2020-05-12 20:42:55.870305] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:42:55.871303] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:42:55.876289] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:42:55.880285] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:42:55.885265] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:42:55.888258] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:42:55.891249] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 +[2020-05-12 20:42:55.891249] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:42:55.893244] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:42:55.904215] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:42:55.904215] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:42:55.907206] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 +[2020-05-12 20:42:55.908204] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:42:55.916183] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:42:55.925159] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:42:55.929149] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:42:55.935132] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 +[2020-05-12 20:42:55.937127] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:42:55.939121] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:42:55.944108] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:42:55.949094] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:42:55.956076] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 +[2020-05-12 20:42:55.958071] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:42:55.960065] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:42:55.964055] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:42:55.970038] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:42:55.974028] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 +[2020-05-12 20:42:55.979015] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:42:55.981009] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:42:55.986993] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:42:55.990983] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:42:55.995969] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 +[2020-05-12 20:42:55.998961] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:42:56.000956] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:42:56.006940] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:42:56.012924] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:42:56.016913] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 +[2020-05-12 20:42:56.017910] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:42:56.018908] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:42:56.023894] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:42:56.032871] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:42:56.043841] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 +[2020-05-12 20:42:56.046833] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:42:56.049826] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:42:56.058801] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:42:56.058801] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:42:56.063788] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 +[2020-05-12 20:42:56.067785] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:42:56.069772] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:42:56.074758] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:42:56.075756] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:42:56.085729] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 +[2020-05-12 20:42:56.088722] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:42:56.091713] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:42:56.096700] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:42:56.105676] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:42:56.111660] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 +[2020-05-12 20:42:56.116647] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:42:56.118641] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:42:56.121633] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:42:56.122630] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:42:56.128615] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 +[2020-05-12 20:42:56.131608] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:42:56.133601] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:42:56.138588] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:42:56.144572] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:42:56.149558] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 +[2020-05-12 20:42:56.149558] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:42:56.151553] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:42:56.156540] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:42:56.158535] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:42:56.163521] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 +[2020-05-12 20:42:56.163521] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:42:56.165517] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:42:56.178481] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:42:56.179480] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:42:56.185462] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 +[2020-05-12 20:42:56.186460] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:42:56.188454] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:42:56.191447] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:42:56.192444] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:42:56.197431] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 +[2020-05-12 20:42:56.206407] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:42:56.216381] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:42:56.219372] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:42:56.219372] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:42:56.223361] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 +[2020-05-12 20:42:56.227350] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:42:56.229345] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:42:56.233334] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:42:56.233334] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:42:56.236327] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:42:56.243308] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:56.243308] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:56.244305] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:42:56.244305] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:42:56.245302] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:42:56.250289] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 +[2020-05-12 20:42:56.255287] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:42:56.257271] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:42:56.266246] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:42:56.266246] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:42:56.271233] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 +[2020-05-12 20:42:56.276220] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:42:56.278214] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:42:56.287190] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:42:56.287190] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:42:56.290183] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 +[2020-05-12 20:42:56.298162] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:42:56.299159] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:42:56.304145] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:42:56.304145] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:42:56.307137] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:42:56.313121] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:42:56.316113] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 +[2020-05-12 20:42:56.320103] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:42:56.325090] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:56.325090] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:56.326087] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:42:56.326087] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:42:56.327083] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:42:56.330076] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:42:56.330076] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:42:56.335062] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 +[2020-05-12 20:42:56.338054] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:42:56.346034] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:42:56.349025] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:42:56.350022] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:42:56.353015] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 +[2020-05-12 20:42:56.358998] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:42:56.360993] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:42:56.372469] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:42:56.372469] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:42:56.380447] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 +[2020-05-12 20:42:56.383439] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:42:56.385434] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:42:56.389423] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:42:56.394410] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:42:56.399397] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 +[2020-05-12 20:42:56.400394] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:42:56.402389] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:42:56.412362] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:42:56.416352] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:42:56.419343] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 +[2020-05-12 20:42:56.420341] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:42:56.425328] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:42:56.434303] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:42:56.434303] INFO: gensim.models.word2vec: PROGRESS: at 56.32% examples, 300482 words/s, in_qsize 0, out_qsize 0 +[2020-05-12 20:42:56.434303] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:42:56.439290] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:42:56.444277] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:42:56.449263] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 +[2020-05-12 20:42:56.449263] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:42:56.451259] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:42:56.462229] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:42:56.462229] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:42:56.466218] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 +[2020-05-12 20:42:56.473199] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:42:56.475194] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:42:56.481178] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:42:56.485168] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:42:56.487162] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:42:56.487162] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:56.487162] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:56.488159] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:42:56.488159] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:42:56.489157] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:42:56.495141] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 +[2020-05-12 20:42:56.498133] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:42:56.500127] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:42:56.510101] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:42:56.511098] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:42:56.516084] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 +[2020-05-12 20:42:56.519077] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:42:56.521071] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:42:56.531044] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:42:56.532042] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:42:56.535034] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 +[2020-05-12 20:42:56.539023] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:42:56.541018] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:42:56.551989] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:42:56.555978] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:42:56.559967] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 +[2020-05-12 20:42:56.559967] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:42:56.561962] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:42:56.571935] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:42:56.571935] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:42:56.575925] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 +[2020-05-12 20:42:56.580911] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:42:56.582907] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:42:56.591882] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:42:56.591882] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:42:56.594874] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:42:56.595872] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:56.602854] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:56.610832] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:42:56.610832] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:42:56.611829] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:42:56.615818] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 +[2020-05-12 20:42:56.615818] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:42:56.617813] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:42:56.627786] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:42:56.629781] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:42:56.639754] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 +[2020-05-12 20:42:56.644741] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:42:56.646735] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:42:56.650724] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:42:56.650724] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:42:56.658704] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 +[2020-05-12 20:42:56.663690] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:42:56.666682] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:42:56.676655] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:42:56.677652] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:42:56.683636] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 +[2020-05-12 20:42:56.687626] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:42:56.688624] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:42:56.692613] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:42:56.693611] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:42:56.708570] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 +[2020-05-12 20:42:56.710565] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:42:56.712559] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:42:56.714554] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:42:56.720538] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:56.720538] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:56.722533] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:42:56.722533] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:42:56.728517] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:42:56.732506] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:42:56.733503] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:42:56.736495] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 +[2020-05-12 20:42:56.741482] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:42:56.743476] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:42:56.752452] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:42:56.753449] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:42:56.756442] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:42:56.762426] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:42:56.767412] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 +[2020-05-12 20:42:56.767412] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:42:56.769408] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:42:56.773396] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:42:56.776389] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:42:56.780378] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 +[2020-05-12 20:42:56.780378] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:42:56.781376] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:42:56.785364] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:42:56.796335] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:42:56.807306] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:42:56.811296] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:42:56.815284] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 +[2020-05-12 20:42:56.818277] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:42:56.824261] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:42:56.831242] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:42:56.834234] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:42:56.840218] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 +[2020-05-12 20:42:56.846202] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:42:56.848197] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:42:56.851188] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:42:56.851188] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:42:56.857172] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 +[2020-05-12 20:42:56.863156] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:42:56.865151] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:42:56.868648] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:42:56.873635] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:42:56.879619] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 +[2020-05-12 20:42:56.886600] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:42:56.888595] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:42:56.899565] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:42:56.900563] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:42:56.908542] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 +[2020-05-12 20:42:56.908542] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:42:56.910536] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:42:56.915523] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:42:56.921507] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:42:56.925496] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 +[2020-05-12 20:42:56.929487] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:42:56.931480] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:42:56.936468] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:42:56.943448] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:42:56.948435] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 +[2020-05-12 20:42:56.948435] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:42:56.950430] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:42:56.957411] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:42:56.958409] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:42:56.958409] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:42:56.959406] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:42:56.959406] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:42:56.959406] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:42:56.965906] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:42:56.970882] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:42:56.975868] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 +[2020-05-12 20:42:56.978861] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:42:56.980855] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:42:56.982849] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:42:56.982849] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:42:56.985842] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:42:56.991827] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:42:56.992823] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:42:56.992823] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:42:56.998808] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 +[2020-05-12 20:42:57.004791] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:42:57.006786] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:42:57.016759] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:42:57.016759] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:42:57.022743] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 +[2020-05-12 20:42:57.026733] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:42:57.027730] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:42:57.031719] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:42:57.032716] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:42:57.037703] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 +[2020-05-12 20:42:57.042689] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:42:57.043687] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:42:57.050668] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:42:57.053660] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:42:57.056652] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:42:57.056652] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:42:57.060642] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 +[2020-05-12 20:42:57.069124] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:42:57.072116] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:42:57.078100] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:42:57.083087] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:42:57.090068] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 +[2020-05-12 20:42:57.096052] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:42:57.098047] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:42:57.102036] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:42:57.103034] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:42:57.114004] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 +[2020-05-12 20:42:57.118991] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:42:57.120985] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:42:57.125972] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:42:57.131957] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:42:57.133951] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 +[2020-05-12 20:42:57.133951] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs +[2020-05-12 20:42:57.136943] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs +[2020-05-12 20:42:57.137941] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:42:57.144922] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads +[2020-05-12 20:42:57.145920] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:42:57.145920] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads +[2020-05-12 20:42:57.145920] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads +[2020-05-12 20:42:57.158885] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:42:57.159883] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads +[2020-05-12 20:42:57.159883] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 1.7s, 299086 effective words/s +[2020-05-12 20:42:57.159883] INFO: gensim.models.word2vec: storing 1344x12 projection weights into /tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.w2v diff --git a/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt b/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt new file mode 100644 index 0000000..c252a79 --- /dev/null +++ b/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt @@ -0,0 +1,860 @@ +[2020-05-12 20:43:18.940072] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml +[2020-05-12 20:43:18.940072] INFO: Generic: kmer fragmenter: sliding +[2020-05-12 20:43:18.941071] INFO: SeqGenerator: Number of epochs: 1 +[2020-05-12 20:43:18.941071] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 +[2020-05-12 20:43:18.941071] INFO: Learner: Context window half size: 4 +[2020-05-12 20:43:18.941071] INFO: Learner: Use skipgram: 1 +[2020-05-12 20:43:18.941071] INFO: Learner: gensim_iters: 1 +[2020-05-12 20:43:18.941071] INFO: Learner: vec_dim: 12 +[2020-05-12 20:43:18.942068] INFO: gensim.models.word2vec: collecting all words and their counts +[2020-05-12 20:43:18.947053] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:43:18.948052] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:18.948052] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:18.959022] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:43:18.963011] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:43:18.964009] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:43:18.968995] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types +[2020-05-12 20:43:18.970990] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:43:18.970990] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:43:18.976973] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:43:18.984953] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:43:18.993928] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:43:18.993928] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:43:19.000910] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:43:19.007892] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:43:19.015869] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:43:19.021854] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:43:19.025843] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:43:19.026841] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:43:19.036813] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:43:19.038810] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:43:19.055764] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:43:19.064740] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:43:19.073715] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:43:19.078702] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:43:19.087678] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:43:19.092666] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:43:19.098648] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:43:19.105630] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:43:19.119592] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:43:19.120590] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:43:19.133555] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:43:19.135550] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:43:19.145525] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:43:19.147518] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:43:19.157491] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:43:19.161481] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:43:19.170456] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:43:19.175443] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:43:19.182424] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:43:19.189406] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:43:19.199379] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:43:19.202371] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:43:19.212344] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:43:19.216334] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:43:19.225309] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:43:19.227305] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:43:19.237278] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:43:19.237278] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:43:19.244259] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:43:19.248248] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:43:19.255229] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:43:19.257224] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:43:19.264206] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:43:19.269192] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:43:19.276174] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:43:19.276174] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:43:19.281160] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:43:19.284153] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:43:19.289139] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:43:19.289139] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:43:19.295123] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:43:19.296120] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:43:19.301107] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:43:19.304099] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:43:19.310082] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:43:19.310082] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:43:19.315069] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:43:19.322053] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:43:19.327037] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:43:19.332025] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:43:19.335016] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:43:19.341002] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:43:19.345987] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:43:19.346985] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:43:19.357955] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:43:19.358952] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:43:19.364936] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:43:19.366931] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:43:19.371917] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:43:19.371917] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:43:19.375907] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:43:19.379896] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:43:19.387875] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:43:19.387875] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:43:19.392861] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:43:19.396851] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:43:19.400840] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:43:19.400840] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:43:19.405827] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:43:19.408819] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:19.408819] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:19.410813] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:43:19.410813] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:43:19.410813] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:43:19.416798] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:43:19.424777] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:43:19.429763] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:43:19.435747] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:43:19.441731] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:43:19.443726] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:43:19.447714] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:43:19.447714] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:43:19.453698] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:43:19.455693] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:43:19.460680] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:43:19.465668] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:43:19.475640] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:43:19.477634] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:43:19.486612] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:43:19.487609] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:43:19.492595] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:43:19.498579] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:43:19.506558] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:43:19.507556] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:43:19.515533] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:43:19.550440] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:43:19.555427] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:43:19.563406] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:43:19.570387] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:43:19.579363] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:43:19.584349] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:43:19.591331] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:43:19.597315] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:43:19.608286] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:43:19.617262] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:43:19.620253] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:43:19.626237] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:43:19.638206] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:43:19.643192] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:43:19.644189] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:43:19.654163] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:43:19.663139] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:43:19.673112] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:43:19.679097] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:43:19.684082] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:43:19.684082] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:43:19.689069] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:43:19.693059] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:43:19.699042] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:43:19.701038] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:43:19.707021] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:43:19.707021] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:43:19.712008] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:43:19.719986] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:43:19.727966] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:43:19.727966] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:43:19.737938] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:43:19.740930] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:43:19.745917] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:43:19.745917] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:43:19.751901] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:43:19.754893] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:43:19.759880] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:43:19.763871] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:43:19.771848] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:43:19.775837] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:43:19.784813] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:43:19.785811] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:43:19.796782] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:43:19.798776] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:43:19.811742] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:43:19.811742] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:43:19.823709] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:43:19.824707] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:43:19.833683] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:43:19.839668] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:43:19.850638] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:43:19.855624] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:43:19.861608] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:43:19.867593] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:43:19.871581] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:43:19.871581] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:43:19.876568] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:43:19.880557] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:43:19.883550] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:43:19.888537] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:19.888537] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:19.889534] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:43:19.889534] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:43:19.889534] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:43:19.897512] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:43:19.903497] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:43:19.910477] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:43:19.917458] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:43:19.925437] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:43:19.929427] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:43:19.934413] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:43:19.938403] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:43:19.944387] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:43:19.951369] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:43:19.959347] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:43:19.964333] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:43:19.971315] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:43:19.978297] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:43:19.983282] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:43:19.984279] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:19.984279] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:19.985278] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:43:19.991262] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:43:19.997245] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:43:20.004227] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:43:20.006223] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:43:20.025170] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:43:20.029160] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:43:20.040131] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:43:20.043124] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:43:20.057086] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:43:20.064067] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:43:20.072045] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:43:20.085011] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:43:20.098974] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:43:20.103960] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:43:20.124904] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:43:20.133880] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:43:20.140861] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:43:20.144851] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:43:20.153827] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:43:20.160315] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:43:20.166299] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:43:20.172283] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:43:20.176272] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:43:20.177270] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:43:20.181259] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:43:20.186246] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:43:20.192229] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:43:20.193227] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:43:20.208187] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:43:20.214171] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:43:20.226139] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:43:20.230128] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:43:20.236112] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:43:20.245088] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:43:20.247082] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:43:20.247082] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:20.248080] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:20.248080] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:43:20.248080] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:43:20.249078] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:43:20.255061] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:43:20.256584] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:43:20.262551] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:43:20.262551] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:43:20.269532] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:43:20.270531] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:43:20.274519] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:43:20.274519] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:43:20.279505] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:43:20.283495] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:43:20.288482] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:43:20.290476] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:43:20.296460] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:43:20.296460] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:43:20.301447] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:43:20.304439] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:43:20.309425] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:43:20.310423] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:43:20.314412] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:43:20.317404] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:43:20.321394] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:43:20.325383] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:20.326381] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:20.327378] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:43:20.327378] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:43:20.327378] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:43:20.332364] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:43:20.338348] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:43:20.345329] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:43:20.345329] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:43:20.352311] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:43:20.352311] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:43:20.357297] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:43:20.360290] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:43:20.365276] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:43:20.366273] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:43:20.372257] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:43:20.374253] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:43:20.380236] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:43:20.387218] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:43:20.392204] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:43:20.393201] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:43:20.399185] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:43:20.402179] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:43:20.404172] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:43:20.404172] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:20.404172] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:20.405169] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:43:20.405169] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:43:20.405169] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:43:20.411154] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:43:20.416141] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:43:20.420129] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:43:20.420129] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:43:20.425116] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:43:20.429106] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:43:20.434092] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:43:20.434092] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:43:20.442071] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:43:20.443069] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:43:20.449052] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:43:20.449052] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:43:20.457031] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:43:20.458029] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:43:20.462017] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:43:20.463015] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:43:20.469996] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:43:20.473985] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:43:20.482962] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:43:20.487948] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:43:20.495927] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:43:20.497922] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:43:20.502908] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:43:20.502908] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:43:20.507894] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:43:20.511884] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:43:20.520861] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:43:20.520861] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:43:20.524849] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:43:20.525847] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:43:20.530834] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:43:20.532828] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:43:20.537815] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:43:20.540807] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:43:20.546790] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:43:20.546790] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:43:20.553772] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:43:20.554770] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:43:20.559756] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:43:20.560754] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:43:20.566737] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:43:20.567735] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:43:20.573718] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:43:20.574716] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:43:20.582695] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:43:20.589677] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:20.595660] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:20.600647] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:43:20.600647] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:43:20.600647] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:43:20.609623] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:43:20.610621] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:43:20.616604] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:43:20.616604] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:43:20.618599] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:43:20.629569] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:43:20.634556] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:43:20.638546] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:43:20.639543] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:43:20.640540] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:43:20.646524] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:43:20.652508] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:43:20.655500] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:43:20.656497] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:43:20.662481] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:43:20.664476] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:43:20.670460] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:43:20.670460] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:43:20.679436] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:43:20.682429] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:43:20.687414] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:43:20.693400] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:43:20.695393] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:43:20.696391] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:43:20.701378] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:43:20.706364] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:43:20.716337] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:43:20.717336] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:43:20.723318] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:43:20.728306] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:43:20.732295] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:43:20.732295] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:43:20.738278] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:43:20.741271] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:43:20.746257] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:43:20.747254] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:43:20.750247] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences +[2020-05-12 20:43:20.758225] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) +[2020-05-12 20:43:20.759223] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) +[2020-05-12 20:43:20.761218] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items +[2020-05-12 20:43:20.761218] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words +[2020-05-12 20:43:20.762215] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) +[2020-05-12 20:43:20.762215] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes +[2020-05-12 20:43:20.764210] INFO: gensim.models.word2vec: resetting layer weights +[2020-05-12 20:43:20.787148] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 +[2020-05-12 20:43:20.791138] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey +[2020-05-12 20:43:20.793132] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-12 20:43:20.793132] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:20.793132] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:20.795127] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-12 20:43:20.795127] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-12 20:43:20.795127] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-12 20:43:20.799116] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-12 20:43:20.806097] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-12 20:43:20.811084] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-12 20:43:20.819063] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-12 20:43:20.823052] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 +[2020-05-12 20:43:20.823052] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-12 20:43:20.825047] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-12 20:43:20.834023] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-12 20:43:20.834023] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-12 20:43:20.841004] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 +[2020-05-12 20:43:20.847987] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-12 20:43:20.849980] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-12 20:43:20.853969] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-12 20:43:20.861948] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-12 20:43:20.866935] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 +[2020-05-12 20:43:20.867933] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-12 20:43:20.876908] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-12 20:43:20.879900] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-12 20:43:20.879900] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-12 20:43:20.882892] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-12 20:43:20.887879] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-12 20:43:20.891868] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 +[2020-05-12 20:43:20.891868] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-12 20:43:20.893862] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-12 20:43:20.897852] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-12 20:43:20.901842] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-12 20:43:20.906827] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 +[2020-05-12 20:43:20.906827] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-12 20:43:20.907826] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-12 20:43:20.912812] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-12 20:43:20.916802] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-12 20:43:20.920790] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 +[2020-05-12 20:43:20.920790] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-12 20:43:20.922785] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-12 20:43:20.928769] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-12 20:43:20.932759] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-12 20:43:20.934753] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:43:20.935750] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:43:20.940737] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 +[2020-05-12 20:43:20.943729] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-12 20:43:20.945724] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-12 20:43:20.948716] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:43:20.949713] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:43:20.953702] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 +[2020-05-12 20:43:20.957692] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-12 20:43:20.959686] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-12 20:43:20.965670] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-12 20:43:20.971656] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-12 20:43:20.977638] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 +[2020-05-12 20:43:20.977638] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-12 20:43:20.979634] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-12 20:43:20.990604] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-12 20:43:20.991602] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-12 20:43:21.002572] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 +[2020-05-12 20:43:21.011548] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-12 20:43:21.018529] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-12 20:43:21.025510] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-12 20:43:21.026508] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-12 20:43:21.030497] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 +[2020-05-12 20:43:21.033490] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-12 20:43:21.035484] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-12 20:43:21.039473] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-12 20:43:21.039473] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-12 20:43:21.044460] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 +[2020-05-12 20:43:21.050443] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-12 20:43:21.052438] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-12 20:43:21.056428] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-12 20:43:21.061416] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-12 20:43:21.066401] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-12 20:43:21.067398] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-12 20:43:21.072385] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 +[2020-05-12 20:43:21.076375] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-12 20:43:21.078369] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-12 20:43:21.082358] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-12 20:43:21.088342] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-12 20:43:21.094326] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-12 20:43:21.096322] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-12 20:43:21.100310] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 +[2020-05-12 20:43:21.100310] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-12 20:43:21.102305] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-12 20:43:21.107292] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-12 20:43:21.109286] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-12 20:43:21.115270] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-12 20:43:21.119261] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-12 20:43:21.123249] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 +[2020-05-12 20:43:21.124247] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-12 20:43:21.125245] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-12 20:43:21.139206] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-12 20:43:21.144194] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-12 20:43:21.147185] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 +[2020-05-12 20:43:21.151175] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-12 20:43:21.158156] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-12 20:43:21.163142] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-12 20:43:21.163142] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-12 20:43:21.167132] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-12 20:43:21.172121] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-12 20:43:21.175110] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 +[2020-05-12 20:43:21.180098] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-12 20:43:21.182092] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-12 20:43:21.186081] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-12 20:43:21.187079] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:21.193062] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:21.208023] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-12 20:43:21.209020] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-12 20:43:21.209020] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-12 20:43:21.212012] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-12 20:43:21.213009] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-12 20:43:21.217995] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 +[2020-05-12 20:43:21.219990] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-12 20:43:21.221985] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-12 20:43:21.233953] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-12 20:43:21.233953] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-12 20:43:21.239937] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 +[2020-05-12 20:43:21.243927] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-12 20:43:21.245921] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-12 20:43:21.249910] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-12 20:43:21.256892] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-12 20:43:21.259884] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-12 20:43:21.259884] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-12 20:43:21.262876] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 +[2020-05-12 20:43:21.268860] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-12 20:43:21.270855] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-12 20:43:21.281825] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-12 20:43:21.282822] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-12 20:43:21.286811] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 +[2020-05-12 20:43:21.290801] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-12 20:43:21.292795] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-12 20:43:21.298780] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-12 20:43:21.304764] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-12 20:43:21.311745] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 +[2020-05-12 20:43:21.317729] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-12 20:43:21.319724] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-12 20:43:21.331691] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-12 20:43:21.338673] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-12 20:43:21.342662] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 +[2020-05-12 20:43:21.346652] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-12 20:43:21.348646] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-12 20:43:21.351638] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-12 20:43:21.351638] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-12 20:43:21.356625] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 +[2020-05-12 20:43:21.360615] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-12 20:43:21.362609] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-12 20:43:21.366598] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-12 20:43:21.367596] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-12 20:43:21.376571] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 +[2020-05-12 20:43:21.380562] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-12 20:43:21.386545] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-12 20:43:21.391532] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-12 20:43:21.391532] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-12 20:43:21.396519] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 +[2020-05-12 20:43:21.401505] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-12 20:43:21.403500] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-12 20:43:21.407489] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-12 20:43:21.408487] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-12 20:43:21.411478] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 +[2020-05-12 20:43:21.415468] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-12 20:43:21.417462] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-12 20:43:21.421451] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-12 20:43:21.421451] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-12 20:43:21.426438] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 +[2020-05-12 20:43:21.429431] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-12 20:43:21.431425] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-12 20:43:21.436411] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-12 20:43:21.443393] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-12 20:43:21.447382] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 +[2020-05-12 20:43:21.448380] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-12 20:43:21.451372] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-12 20:43:21.460347] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-12 20:43:21.461346] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-12 20:43:21.467329] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 +[2020-05-12 20:43:21.470321] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-12 20:43:21.471319] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-12 20:43:21.481292] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-12 20:43:21.482289] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-12 20:43:21.489271] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 +[2020-05-12 20:43:21.492263] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-12 20:43:21.494257] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-12 20:43:21.498246] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-12 20:43:21.499244] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-12 20:43:21.510214] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 +[2020-05-12 20:43:21.518193] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-12 20:43:21.520188] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-12 20:43:21.524177] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-12 20:43:21.527169] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-12 20:43:21.532155] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 +[2020-05-12 20:43:21.532155] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-12 20:43:21.533153] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-12 20:43:21.547115] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-12 20:43:21.547115] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-12 20:43:21.551105] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 +[2020-05-12 20:43:21.554097] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-12 20:43:21.561078] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-12 20:43:21.565067] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-12 20:43:21.566065] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-12 20:43:21.570054] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 +[2020-05-12 20:43:21.575042] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-12 20:43:21.576039] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-12 20:43:21.579030] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-12 20:43:21.583020] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-12 20:43:21.586011] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 +[2020-05-12 20:43:21.586011] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-12 20:43:21.588006] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-12 20:43:21.590998] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-12 20:43:21.596983] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-12 20:43:21.598977] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-12 20:43:21.598977] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:21.599974] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:21.599974] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-12 20:43:21.599974] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-12 20:43:21.600973] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-12 20:43:21.606955] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 +[2020-05-12 20:43:21.609948] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-12 20:43:21.611942] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-12 20:43:21.623910] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:43:21.629894] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:43:21.634881] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 +[2020-05-12 20:43:21.637874] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-12 20:43:21.639868] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-12 20:43:21.642859] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-12 20:43:21.643857] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-12 20:43:21.646849] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 +[2020-05-12 20:43:21.652834] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-12 20:43:21.654827] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-12 20:43:21.659815] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-12 20:43:21.666347] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-12 20:43:21.669302] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-12 20:43:21.669302] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-12 20:43:21.672295] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 +[2020-05-12 20:43:21.675286] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-12 20:43:21.685260] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:21.692241] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:21.694237] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-12 20:43:21.694237] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-12 20:43:21.694237] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-12 20:43:21.698225] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-12 20:43:21.698225] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-12 20:43:21.702214] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 +[2020-05-12 20:43:21.706204] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-12 20:43:21.708199] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-12 20:43:21.717175] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-12 20:43:21.718172] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-12 20:43:21.722161] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 +[2020-05-12 20:43:21.727148] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-12 20:43:21.728146] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-12 20:43:21.740113] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-12 20:43:21.741111] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-12 20:43:21.746097] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 +[2020-05-12 20:43:21.749090] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-12 20:43:21.750087] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-12 20:43:21.756071] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-12 20:43:21.758066] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-12 20:43:21.762054] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 +[2020-05-12 20:43:21.762054] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-12 20:43:21.764049] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-12 20:43:21.776521] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-12 20:43:21.776521] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-12 20:43:21.779513] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 +[2020-05-12 20:43:21.784501] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-12 20:43:21.786495] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-12 20:43:21.789487] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-12 20:43:21.789487] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-12 20:43:21.793476] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-12 20:43:21.797465] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-12 20:43:21.806441] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 +[2020-05-12 20:43:21.810430] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-12 20:43:21.810430] INFO: gensim.models.word2vec: PROGRESS: at 57.47% examples, 306542 words/s, in_qsize 0, out_qsize 0 +[2020-05-12 20:43:21.813423] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-12 20:43:21.824393] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-12 20:43:21.824393] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-12 20:43:21.828383] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 +[2020-05-12 20:43:21.831374] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-12 20:43:21.842347] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-12 20:43:21.847333] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-12 20:43:21.853317] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-12 20:43:21.855310] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-12 20:43:21.855310] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:21.855310] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:21.856308] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-12 20:43:21.856308] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-12 20:43:21.857305] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-12 20:43:21.862292] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 +[2020-05-12 20:43:21.866281] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-12 20:43:21.868276] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-12 20:43:21.878249] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-12 20:43:21.878249] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-12 20:43:21.886228] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 +[2020-05-12 20:43:21.887225] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-12 20:43:21.889220] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-12 20:43:21.899193] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-12 20:43:21.899193] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-12 20:43:21.903183] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 +[2020-05-12 20:43:21.911161] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-12 20:43:21.913156] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-12 20:43:21.917145] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-12 20:43:21.923130] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-12 20:43:21.927118] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 +[2020-05-12 20:43:21.927118] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-12 20:43:21.929113] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-12 20:43:21.935097] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-12 20:43:21.942078] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-12 20:43:21.946068] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 +[2020-05-12 20:43:21.949060] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-12 20:43:21.951055] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-12 20:43:21.962025] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-12 20:43:21.962025] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-12 20:43:21.965017] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-12 20:43:21.971002] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:21.971002] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:21.971999] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-12 20:43:21.971999] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-12 20:43:21.971999] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-12 20:43:21.975988] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 +[2020-05-12 20:43:21.975988] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-12 20:43:21.977982] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-12 20:43:21.987956] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-12 20:43:21.991946] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-12 20:43:21.994937] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 +[2020-05-12 20:43:21.998927] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-12 20:43:22.005909] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-12 20:43:22.010894] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-12 20:43:22.010894] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-12 20:43:22.015881] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 +[2020-05-12 20:43:22.018873] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-12 20:43:22.020869] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-12 20:43:22.025854] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-12 20:43:22.026853] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-12 20:43:22.039817] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 +[2020-05-12 20:43:22.040816] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-12 20:43:22.049791] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-12 20:43:22.052782] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-12 20:43:22.052782] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-12 20:43:22.057769] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 +[2020-05-12 20:43:22.061759] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-12 20:43:22.063753] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-12 20:43:22.064750] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-12 20:43:22.065747] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:22.065747] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:22.066745] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-12 20:43:22.066745] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-12 20:43:22.066745] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-12 20:43:22.070734] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-12 20:43:22.074724] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-12 20:43:22.077716] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 +[2020-05-12 20:43:22.082703] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-12 20:43:22.084697] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-12 20:43:22.087689] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-12 20:43:22.088686] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-12 20:43:22.093673] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-12 20:43:22.096666] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-12 20:43:22.100655] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 +[2020-05-12 20:43:22.101652] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-12 20:43:22.102649] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-12 20:43:22.107636] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-12 20:43:22.110629] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-12 20:43:22.113620] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 +[2020-05-12 20:43:22.114617] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-12 20:43:22.115614] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-12 20:43:22.120601] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-12 20:43:22.123593] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-12 20:43:22.133566] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-12 20:43:22.134564] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-12 20:43:22.139550] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 +[2020-05-12 20:43:22.144537] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-12 20:43:22.146532] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-12 20:43:22.155508] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-12 20:43:22.155508] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-12 20:43:22.159497] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 +[2020-05-12 20:43:22.165481] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-12 20:43:22.167476] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-12 20:43:22.170468] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-12 20:43:22.170468] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-12 20:43:22.178446] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 +[2020-05-12 20:43:22.178446] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-12 20:43:22.180441] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-12 20:43:22.186425] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-12 20:43:22.189417] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-12 20:43:22.192409] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 +[2020-05-12 20:43:22.193407] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-12 20:43:22.201386] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-12 20:43:22.204377] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-12 20:43:22.204377] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-12 20:43:22.209364] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 +[2020-05-12 20:43:22.214351] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-12 20:43:22.215348] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-12 20:43:22.221332] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-12 20:43:22.229311] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-12 20:43:22.233299] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 +[2020-05-12 20:43:22.233299] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-12 20:43:22.235294] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-12 20:43:22.247262] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-12 20:43:22.252249] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-12 20:43:22.257236] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 +[2020-05-12 20:43:22.262222] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-12 20:43:22.264217] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-12 20:43:22.265214] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-12 20:43:22.265214] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-12 20:43:22.266212] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-12 20:43:22.267209] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-12 20:43:22.267209] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-12 20:43:22.267209] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-12 20:43:22.272196] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-12 20:43:22.276185] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-12 20:43:22.280174] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 +[2020-05-12 20:43:22.284165] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-12 20:43:22.286158] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-12 20:43:22.288153] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:43:22.288153] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-12 20:43:22.292143] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-12 20:43:22.297143] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-12 20:43:22.298127] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-12 20:43:22.298127] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-12 20:43:22.309097] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 +[2020-05-12 20:43:22.318073] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-12 20:43:22.324057] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-12 20:43:22.329043] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-12 20:43:22.329043] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-12 20:43:22.335027] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 +[2020-05-12 20:43:22.338020] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-12 20:43:22.340015] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-12 20:43:22.343006] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-12 20:43:22.343006] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-12 20:43:22.347993] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 +[2020-05-12 20:43:22.353977] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-12 20:43:22.356969] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-12 20:43:22.360959] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-12 20:43:22.368937] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-12 20:43:22.370932] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-12 20:43:22.370932] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-12 20:43:22.374921] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 +[2020-05-12 20:43:22.379908] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-12 20:43:22.381903] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-12 20:43:22.391875] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-12 20:43:22.392873] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-12 20:43:22.397859] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 +[2020-05-12 20:43:22.400852] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-12 20:43:22.403844] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-12 20:43:22.412819] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-12 20:43:22.412819] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-12 20:43:22.416809] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 +[2020-05-12 20:43:22.421796] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-12 20:43:22.423791] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-12 20:43:22.427780] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-12 20:43:22.431770] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-12 20:43:22.434761] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 +[2020-05-12 20:43:22.434761] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs +[2020-05-12 20:43:22.437753] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs +[2020-05-12 20:43:22.443738] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:43:22.443738] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads +[2020-05-12 20:43:22.444735] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:43:22.444735] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads +[2020-05-12 20:43:22.444735] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads +[2020-05-12 20:43:22.459694] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs +[2020-05-12 20:43:22.464681] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads +[2020-05-12 20:43:22.465679] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 1.7s, 310359 effective words/s +[2020-05-12 20:43:22.465679] INFO: gensim.models.word2vec: storing 1344x12 projection weights into ./tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v +[2020-05-12 20:43:22.475652] INFO: Histogram: Percent of 3-mers: 33.3% (202162) +[2020-05-12 20:43:22.479641] INFO: Histogram: Percent of 4-mers: 33.3% (202583) +[2020-05-12 20:43:22.480638] INFO: Histogram: Percent of 5-mers: 33.4% (203129) +[2020-05-12 20:43:22.480638] INFO: Histogram: Number of base-pairs: 2432463 +[2020-05-12 20:43:22.480638] INFO: Benchmark: wall=0.059m cpu=0.059m diff --git a/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v b/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v new file mode 100644 index 0000000..02553c1 --- /dev/null +++ b/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v @@ -0,0 +1,1345 @@ +1344 12 +AAA 0.546189 -1.259668 -0.366947 0.969053 -0.504060 -0.456787 1.116572 -0.008423 -0.056775 0.619004 0.033565 -0.376411 +TTT -0.344229 -0.425393 -1.152862 0.813219 -0.125951 0.875238 1.282149 -0.123639 0.009176 0.086126 -0.515594 0.132046 +AAT 0.474628 -0.864700 -0.184958 1.350230 0.316870 -0.580679 1.035690 -0.337995 -0.123307 -0.162033 -0.288421 0.043777 +GAA 0.330343 -0.934976 -0.226808 1.187080 -0.373331 -0.397190 0.936016 0.119489 -0.468260 -0.112125 -0.135486 0.005868 +ATT 0.350908 -0.573798 -1.081136 1.159762 0.855219 0.580489 0.773274 -0.150796 -0.372844 -0.316263 -0.337082 0.748988 +ATG -0.034731 -0.864593 0.236959 1.233980 0.440055 -0.267860 1.037553 -0.474075 0.032739 -0.667933 -0.067932 -0.096923 +TGG -0.445273 -1.289125 0.009625 1.246895 0.165632 -0.152397 0.702077 0.070254 -0.342303 -0.890420 -0.342413 -0.080352 +GGA -0.171479 -1.322656 0.144900 1.248439 0.273928 -0.206738 0.752680 -0.041780 -0.910902 -0.458491 -0.120207 -0.134977 +TTC 0.092711 0.026518 -1.457474 0.714839 -0.115150 0.554167 0.745122 -0.749999 -0.068693 0.308462 0.124892 0.453213 +AGA 0.127798 -0.535240 -0.148841 1.520696 -0.551292 -0.434565 0.355871 -0.281922 -1.209827 0.274918 -0.239478 0.131302 +CAT 0.073716 -0.465628 -1.240675 0.803730 -0.148969 0.080753 0.326389 -0.966793 0.687468 0.106469 -0.220643 0.932891 +TCT 0.092082 0.055045 -0.843923 0.648312 0.437563 0.283577 1.155337 -1.003636 -0.116065 0.402730 0.227560 -0.557157 +ACA 0.209190 -1.481848 -0.183591 0.952533 -0.110722 0.238624 -0.226531 -0.771979 -0.390827 0.699955 0.011424 0.581044 +TGA 0.239690 -0.216650 -0.147703 1.264111 -0.857912 0.358145 0.940185 -0.358275 -0.327454 -0.794140 -0.139352 0.166867 +TGT -0.726906 -0.270709 0.206578 1.267456 -0.124692 0.686375 1.188185 -0.608463 0.455139 -0.192293 0.190892 0.297301 +TTG -0.219619 -0.416410 -0.774841 0.797200 -0.544081 0.379618 1.218855 -0.290518 0.138878 -0.934104 -0.593836 0.199114 +CCA 0.033753 -0.629788 -1.547567 0.757666 0.232864 0.075136 0.237833 -0.167239 0.308267 0.294250 0.739826 0.896121 +CTT 0.014824 -0.271079 -1.163428 0.749176 0.045008 1.304293 0.775230 -0.358873 -0.297718 0.021557 -0.003750 -0.474470 +TCA 0.301154 -0.997242 -0.645266 0.380093 0.549754 -0.223998 0.702014 -1.107370 -0.420756 0.718917 0.323976 0.657205 +CAA 0.685055 -1.378237 -0.460297 0.543133 -0.114161 -0.467986 0.848141 -0.528430 0.101220 0.312625 0.493289 0.390156 +ATA 0.334066 -0.519546 -0.493570 1.819810 0.510506 -0.552805 0.159209 -0.269363 -0.186259 0.518426 -0.546403 -0.046661 +AAG -0.232947 -1.073942 -0.292902 0.552998 -0.824181 -0.859995 1.111870 -0.238029 -0.499150 0.349502 -0.134182 -0.341464 +CTG -0.046363 -0.572535 0.179357 0.771144 0.369851 0.561913 0.702773 -0.790171 -0.405146 -0.655079 0.611568 -0.701663 +TAT -0.269932 0.163274 -0.666834 1.515608 0.315880 -0.157802 0.698402 -0.514682 0.576728 0.213350 -0.522611 -0.081896 +TCC -0.147457 -0.290404 -1.675700 0.685184 0.213771 0.369160 0.665928 -0.155859 0.407640 0.358520 1.003923 0.697425 +CAG -0.642839 -0.664987 -0.684767 0.466575 -1.248295 -0.422079 0.044815 -0.718529 -0.378233 0.261921 -0.264825 0.483900 +TTA -0.223107 -0.431410 -0.901388 1.413379 -0.023152 0.335456 0.590561 -0.006174 0.270921 0.745388 -0.831174 0.042340 +TAA 0.083187 -0.881374 0.046745 1.480157 0.023647 -0.255733 1.097897 -0.097629 0.361482 0.808557 -0.229989 -0.280105 +GAG -0.722809 -0.278549 -0.398914 0.768796 -1.166237 -0.275903 0.680646 -0.447324 -0.847556 -0.526644 -0.294167 0.019228 +AGG -0.632470 -1.329399 -0.727789 0.482794 -0.161920 -0.774849 0.689049 0.322418 -0.798317 -0.092859 -0.308016 -0.315052 +ACT 0.587507 -0.702582 -0.529459 0.786405 -0.276660 0.886657 0.224664 -0.472955 -0.401915 0.150641 0.281169 -0.915461 +CTC 0.689419 -0.353592 -0.978981 0.478320 -0.043706 0.535594 0.314611 -0.829297 -0.902561 0.025501 0.759703 -0.214093 +CCT -0.275292 0.110867 -1.420062 0.770790 -0.025283 0.326480 0.640568 0.282061 0.209720 -0.043290 0.795881 -0.679031 +GTG -0.959831 -0.675703 0.362173 0.911261 -0.304888 0.191970 1.187907 -0.580015 0.088483 -0.742829 0.292707 0.242069 +CAC 0.206640 -1.141454 -0.694943 0.526823 -0.548278 0.413753 -0.395751 -1.034195 0.225720 0.437238 0.553430 0.214986 +AGT -1.039354 -0.484051 -0.061534 0.901472 -0.536262 0.096025 0.945692 -0.120437 -0.636114 0.201876 0.129024 0.735583 +AAC 0.490324 -1.313811 -0.442128 0.776374 -0.502771 0.345981 0.241317 -0.007895 -0.081869 0.404754 0.231330 -0.583615 +AATG 0.291440 -1.446429 0.208284 1.489961 0.270506 -0.608250 1.108914 -0.394902 -0.163073 -0.746392 -0.083834 -0.149111 +GTT -0.751360 -0.447907 -0.423180 0.771652 -0.232486 0.932315 1.184074 -0.098992 -0.542421 0.183776 0.053277 0.540246 +ATC 0.842369 -0.196608 -0.739388 1.029368 0.432887 -0.567150 0.622652 -0.878688 -0.441644 0.043143 0.469818 0.370028 +TGC 0.201439 -0.639994 -0.476914 0.519712 -0.270466 -0.230874 0.575893 -1.126653 0.900078 -0.906242 -0.006704 -0.277034 +GAAT 0.297825 -1.040601 -0.282785 1.541637 0.229211 -0.888864 0.982450 -0.184514 -0.488024 -0.745278 -0.251085 0.001295 +TTTT -0.319947 -0.627043 -1.446140 0.925729 -0.057146 1.316307 1.387941 -0.263916 -0.119121 0.313449 -0.884345 0.133367 +GCA -0.100780 -1.006028 -0.388680 0.272427 0.017384 -0.626826 0.439120 -1.332960 0.484195 -0.266423 -0.114505 0.084760 +TGGA -0.310096 -1.411276 0.039555 1.432081 0.000446 -0.144871 0.706969 0.093590 -0.575005 -0.888799 -0.239807 -0.058172 +GAT -0.135883 -0.134030 -0.571136 1.247606 0.197211 -0.110115 0.616686 -0.580406 -0.436734 -0.724631 -0.691362 0.463420 +AAAA 0.714487 -1.476171 -0.340549 1.185711 -0.348955 -0.442046 1.416679 0.067912 -0.107872 0.861085 0.168655 -0.400316 +GGAA -0.125725 -1.767705 0.092490 1.370196 0.130471 -0.745949 1.050057 0.142997 -0.616667 -0.350678 -0.075788 -0.143439 +GCT -0.378231 -0.178162 -0.809214 0.309610 -0.014679 -0.041455 0.705412 -0.808034 0.090574 -0.383615 0.060704 -1.287741 +TAG -0.629974 -0.381354 -0.430650 1.427370 -0.634963 -0.931746 0.433991 -0.075882 -0.326794 0.476044 -0.727204 -0.463751 +ATGG -0.154693 -1.373016 -0.083817 1.447385 0.696806 -0.621548 1.010448 -0.142955 -0.330712 -0.791611 -0.255559 -0.280411 +CTA 0.027744 0.071054 -0.540394 1.453250 0.463406 0.243918 0.249731 -0.393490 -0.239586 0.794000 0.195172 -0.668606 +AGC -0.176068 -0.226450 -0.818959 0.448749 -0.737128 -0.833123 0.049754 -0.783018 -0.310430 -0.175774 0.182769 -0.538055 +GGG -0.982917 -1.312583 -0.794074 0.321485 0.141839 -0.236440 0.526797 0.373444 -0.736547 -0.825860 0.042458 -0.178267 +CCC -0.140669 -0.372256 -1.427939 0.801721 -0.398467 -0.057533 -0.039841 0.255792 0.399050 -0.014540 1.307120 0.015967 +GTA -0.860427 -0.606816 0.376630 1.786828 0.268358 0.107269 0.648835 0.100121 0.137433 0.458094 0.007751 0.041384 +ACC 0.210577 -0.840151 -0.785480 1.078355 -0.403398 0.394607 -0.317049 0.482451 0.137486 0.118046 0.998294 -0.010203 +GGT -1.306661 -0.843942 -0.195118 0.563243 0.533391 0.250767 0.864496 -0.082056 -0.349469 -0.187734 0.023133 0.215341 +AAAT 0.827381 -0.922353 -0.346245 1.443992 0.128534 -0.753530 1.421393 -0.199886 0.320428 0.169213 -0.069033 0.089472 +GAC 0.284419 -1.177585 -0.388919 1.064191 -0.072696 0.471837 -0.467034 -0.095571 -0.887527 -0.326984 0.119149 -0.327784 +TAC -0.153937 -1.024485 -0.788662 1.014535 0.510277 0.247008 -0.316437 -0.259920 0.511198 0.924711 -0.157776 -0.335389 +ATTT 0.112627 -0.643743 -1.038347 1.444674 0.686488 1.063759 0.936809 -0.072861 -0.395637 -0.067855 -0.737350 0.649397 +GCC -0.473414 -0.207952 -1.046044 0.480118 -0.091206 -0.669469 0.152916 -0.268284 0.595482 -0.672581 0.961352 -0.491863 +GGC -0.721752 -0.942379 -0.967746 0.073893 0.187472 -0.571644 -0.025347 -0.570478 -0.023852 -0.963778 0.207097 -0.495596 +CATT -0.037873 -0.434103 -1.618319 0.871696 -0.347275 0.490981 0.328504 -0.871929 0.540954 -0.146099 -0.404849 1.052638 +GTC -0.694152 -0.108567 -0.420055 0.643611 -0.124476 0.109295 0.902027 -0.713793 -0.525726 0.226361 0.997678 0.981127 +AGAA 0.270576 -0.784253 -0.274895 1.513873 -0.697882 -0.683455 0.554214 -0.039074 -1.128286 0.444339 -0.080158 -0.035658 +ATGGA 0.065870 -1.651207 -0.125587 1.689748 0.420817 -0.581576 1.086424 -0.127111 -0.660753 -0.675224 -0.204194 -0.346824 +ATTC 0.268879 -0.274542 -1.409763 1.008076 1.008432 0.457463 0.664507 -0.740869 -0.317688 0.142286 0.230393 0.737290 +GAATG -0.070116 -1.433005 0.071259 1.741487 0.024001 -0.776431 1.105713 -0.178371 -0.473083 -1.087341 -0.141348 -0.182845 +GAAA 0.319477 -1.287233 -0.139773 1.087856 -0.554295 -0.181827 1.186957 0.257330 -0.730257 0.166917 0.084983 -0.173367 +TGGAA -0.126867 -1.790631 -0.103095 1.591508 0.007454 -0.573034 1.051298 0.298665 -0.198638 -0.834573 -0.363202 -0.048605 +TCCA 0.026045 -0.522177 -1.677238 0.781874 0.160611 0.302210 0.440537 -0.491887 0.319831 0.488797 0.939767 1.022021 +AATGG 0.084935 -1.677079 0.027176 1.617532 0.369332 -0.574121 1.120127 -0.244454 -0.542378 -0.786907 -0.064925 -0.121372 +TTCC -0.181606 -0.121421 -2.123319 1.078093 0.004719 0.699270 0.519463 -0.283020 0.515805 0.079869 0.372979 0.730107 +TTCT -0.167157 0.408586 -1.161619 0.904029 0.016929 0.837192 1.223942 -1.053080 -0.217870 0.349671 0.150411 -0.349580 +TTTC -0.249893 -0.326938 -1.589827 0.359675 0.131458 0.681900 1.224525 -0.509142 -0.099718 0.506432 0.098428 0.181077 +AAAG -0.067481 -1.479040 -0.374382 0.668625 -0.860388 -1.046013 1.394800 0.056362 -0.465766 0.581388 -0.059861 -0.660379 +TTTG -0.488539 -0.469321 -0.977129 0.795381 -0.378370 0.882594 1.219530 -0.258800 0.213563 -0.815479 -0.690059 -0.002226 +CAAA 0.806283 -1.538183 -0.286401 0.655737 -0.229442 -0.407700 1.029945 -0.559561 -0.259608 0.609032 0.600031 0.289073 +GGAAT -0.194570 -1.629243 -0.123281 1.658172 0.456101 -0.899205 1.327767 -0.063649 -0.461483 -0.700336 -0.134440 -0.160901 +CTTT -0.184238 -0.216230 -1.493564 0.866907 -0.141211 1.498603 0.986102 -0.086005 -0.402438 0.120931 -0.028755 -0.407752 +TAAA 0.319917 -1.072872 -0.195993 1.402948 0.156367 -0.306275 1.216136 0.039750 0.293597 1.257934 -0.017589 -0.416927 +AATA 0.507098 -0.771935 -0.384038 1.904278 0.231152 -1.056716 0.687885 -0.306883 -0.194231 0.775966 -0.426378 -0.364402 +AATT 0.744976 -0.858539 -1.024461 1.175886 -0.120108 -0.000315 1.621418 -0.132180 0.101678 -0.069133 -0.764591 0.475429 +TGAA 0.526060 -0.784331 -0.059635 1.403682 -0.958654 0.317190 1.472516 0.101510 -0.118089 -0.774228 -0.077786 0.058589 +CCAT -0.283526 -0.318997 -1.848825 1.103117 0.439175 0.230467 0.327691 -0.555108 0.635339 0.043172 0.458542 0.957076 +TTTA -0.313245 -0.652835 -1.136462 1.133871 0.156029 0.370473 1.018050 -0.099087 0.340467 0.869649 -1.138509 -0.224490 +TTCA 0.318365 -0.835537 -1.387308 0.267273 0.079790 0.187925 0.838091 -1.180571 -0.201040 0.550242 -0.316053 0.859967 +ATAT 0.310954 -0.256387 -0.702833 1.862387 0.962675 -0.309417 0.527419 -0.608436 0.073165 0.227889 -0.710085 0.032626 +TATT -0.319431 0.157036 -1.288168 1.584328 0.258626 0.268812 0.843175 -0.464856 0.684410 0.391023 -0.804480 0.176183 +TTGA 0.268168 -0.203893 -0.784177 1.201754 -0.958478 0.522367 1.247549 -0.130706 -0.354033 -0.866791 -0.536923 0.125431 +CACA 0.222700 -1.547556 -0.560003 0.665423 -0.515061 0.062381 -0.382352 -1.238654 0.073509 0.796428 0.224688 0.565956 +TCTT 0.006694 -0.156087 -1.460895 0.466893 0.180474 0.713026 1.529584 -0.926303 -0.002343 0.340442 -0.169705 -0.587618 +AAAC 0.774197 -1.602452 -0.434123 0.931815 -1.076320 0.306644 0.484979 0.075662 0.026240 0.439842 0.264459 -0.510807 +GTTT -1.049953 -0.739824 -0.661206 0.701417 0.002151 1.361047 1.202147 0.083686 -0.597502 0.279549 0.066800 0.571920 +TGTG -0.767430 -0.532737 0.305083 1.179562 -0.361305 0.990805 1.122382 -0.918985 0.617280 -0.741914 0.264026 0.070869 +AAGA 0.440757 -0.812468 -0.275920 1.349380 -1.087012 -0.756417 0.960673 -0.263376 -0.994883 0.344752 -0.269785 -0.032212 +TGTT -0.911293 -0.347193 -0.503543 0.997059 -0.177399 1.327187 1.367324 -0.508134 0.478243 -0.055499 -0.125222 0.280330 +TTAT -0.135855 -0.126517 -0.994406 1.706286 0.389940 0.432347 0.864357 -0.351758 0.538565 0.267047 -1.041422 -0.032427 +CAGA 0.095525 -0.763984 -0.684689 1.075367 -1.359388 -0.632235 -0.290971 -0.828839 -0.815862 0.078448 -0.282404 0.556106 +TTAA 0.212618 -0.801560 -0.752546 1.285508 -0.235122 0.109720 1.387649 0.284546 0.335428 0.721236 -0.691054 -0.311119 +ATGT -0.522721 -0.527859 0.471054 1.667085 0.182102 0.004805 1.172380 -0.619874 0.728097 -0.192471 0.232091 0.711515 +TCAA 0.591923 -1.218811 -0.588977 0.286158 0.380805 -0.400166 1.550472 -1.021359 -0.336217 0.785248 0.433777 0.322154 +AACA 0.337947 -1.973764 0.063012 1.101861 -0.433644 -0.201521 0.104637 -0.503711 -0.138169 0.665799 -0.032816 0.240974 +TGCA 0.292883 -1.102123 -0.302912 0.417004 -0.200827 -0.171242 0.645536 -1.538398 0.812873 -0.693342 -0.140126 0.097463 +ATAA 0.931288 -0.896085 -0.307115 1.983312 0.054810 -0.438212 0.566506 -0.321855 0.458583 0.775106 -0.228049 -0.296029 +ACAA 0.801100 -2.110909 -0.234801 0.976411 -0.007662 -0.123373 0.127131 -0.387372 -0.141605 0.739646 0.452627 0.230511 +TCTG -0.062834 -0.077812 -0.238579 0.559649 0.586674 0.174131 1.392348 -1.199095 -0.235864 -0.256324 0.709908 -0.735462 +ACAT 0.310792 -1.309816 -0.479024 1.226683 0.441006 0.491746 -0.276827 -0.948982 0.277213 0.242519 -0.454124 0.878007 +TGAG -0.313771 0.209054 -0.384758 1.006452 -1.134062 0.271761 0.470761 -0.781274 -0.859159 -0.878911 0.080648 -0.058778 +TAAT 0.052168 -0.299727 -0.289649 1.911350 0.299486 -0.473402 1.523349 0.072813 0.552243 0.313001 -0.122582 -0.006354 +AGGA 0.006982 -1.583252 -0.756935 1.058143 -0.357690 -0.765376 0.628244 0.402803 -1.241125 0.075064 -0.328826 -0.277888 +TTGT -0.854664 -0.244419 -0.548169 1.159541 -0.276231 0.904927 1.557172 -0.226432 0.695051 -0.305786 -0.236900 0.154598 +GAGA -0.005518 -0.538681 -0.465576 1.382094 -1.113567 -0.174106 0.244465 -0.298169 -1.475048 -0.589703 -0.536491 0.098208 +ACAG -0.564160 -1.392173 -0.097571 1.020794 -0.721026 -0.170873 -0.495532 -0.763477 -1.036272 0.878875 -0.076298 0.265211 +TCCT -0.445295 0.256351 -1.592382 0.829123 0.336092 0.713821 1.245284 -0.066102 0.153493 0.181958 1.083923 -0.471220 +TTTTT -0.154665 -0.726945 -1.758578 1.134314 0.018167 1.568252 1.571638 -0.208155 -0.092470 0.263418 -1.053584 0.155641 +CAAT 0.866371 -1.095717 -0.590407 0.928461 0.305417 -0.587150 1.049111 -0.771567 0.536372 -0.240002 0.206817 0.597011 +AGAG -0.671856 -0.575209 -0.197605 1.048347 -1.040516 -0.669120 0.390255 -0.743761 -1.579606 0.051610 -0.128124 0.159547 +ATTG 0.224538 -0.893259 -0.718633 1.102609 0.374517 0.431980 1.150195 -0.299923 0.010790 -1.072136 -0.573560 0.357119 +AAGG -0.457406 -1.726978 -0.572831 0.470680 -0.424076 -0.940709 1.280138 0.193377 -0.711700 0.198938 -0.284965 -0.761448 +ATTA 0.127579 -0.899720 -0.998779 1.542894 1.071398 0.221021 0.528391 -0.066876 -0.136342 0.974438 -0.614711 0.357290 +AGTG -1.138582 -0.845622 0.493102 1.101484 -0.794097 -0.114444 0.994450 -0.374449 -0.482759 -0.429251 0.277646 -0.045264 +AATC 1.041900 -0.412666 -0.724616 1.162063 0.115299 -1.005556 1.243575 -0.582084 -0.500514 -0.034919 0.612352 0.248206 +TCTC 0.137621 -0.106204 -1.049654 0.238854 0.100649 0.344923 1.139821 -1.441007 -0.590747 0.596107 1.079014 0.023768 +CTCA 0.752393 -0.793594 -0.820646 0.237120 0.275150 0.085931 0.265870 -1.548853 -0.981230 0.198165 0.665538 -0.049395 +GGAG -1.190596 -0.975299 -0.167747 0.971898 -0.331398 -0.391457 0.653723 -0.341654 -1.208803 -0.745535 -0.126813 -0.099476 +AAAAA 0.898904 -1.804014 -0.383752 1.291513 -0.359066 -0.405212 1.743605 0.244604 -0.228821 1.062035 0.232550 -0.517876 +AGTT -1.027419 -0.433718 -0.551057 0.774499 -1.055181 0.595027 1.050347 -0.109086 -0.758504 0.574463 -0.324013 0.563942 +TAGA -0.058578 -0.293474 -0.536292 2.023458 -0.602696 -0.907993 0.297918 -0.103322 -0.739216 0.436652 -0.752596 -0.161916 +CCTT -0.351265 0.009886 -2.050188 0.853075 -0.187109 0.876595 0.913801 0.402874 0.320608 -0.014385 0.454341 -0.413249 +GATT -0.012916 -0.252138 -1.357725 1.012664 0.130486 0.123857 0.862953 -0.464254 -0.746961 -0.710431 -1.026169 0.623195 +TGTA -0.694857 -0.404573 0.347181 2.030244 0.037627 0.266864 0.959925 0.042894 0.688109 0.256458 -0.098009 0.056391 +TCAT -0.255358 -0.394286 -1.082031 0.679808 0.943588 -0.178082 0.843620 -1.570037 0.171695 0.416641 -0.095517 0.743222 +ATGA 0.773525 -0.547190 0.078498 1.951168 -0.431412 -0.366682 0.643800 -0.508338 -0.169859 -0.897604 0.007228 0.124101 +CGA 0.348214 -0.486201 -0.762198 1.275711 -0.026671 -0.560731 0.587845 -0.109305 -0.968398 -0.795787 0.493946 0.240960 +CTTC 0.173203 -0.358434 -1.487392 0.349604 0.208414 0.958753 0.527732 -0.879614 -0.498956 0.606279 0.599032 -0.338246 +CTGT -0.805314 -0.095241 0.080956 1.050431 0.136579 1.200922 0.914555 -1.023945 0.389086 0.190883 0.916536 -0.504816 +ACTT 0.335984 -1.106622 -1.165643 0.575688 -0.713090 1.306532 0.333792 -0.162036 -0.066728 0.349350 -0.510331 -0.901284 +CACT 0.337679 -0.949191 -1.065752 0.446393 -0.318315 1.191897 -0.113998 -1.095694 0.135181 0.184796 0.417196 -0.462782 +CTCC 0.003160 -0.142632 -1.555596 0.607245 -0.314377 0.737314 0.045975 -0.803454 -0.478048 -0.200305 1.561412 -0.072925 +TATA -0.120367 -0.207979 -0.556313 2.203632 0.235708 -0.253375 0.312119 -0.548208 0.715000 0.910174 -0.787816 -0.156579 +AACT 0.695047 -1.040637 -0.385013 0.746299 -0.505303 0.718522 0.766200 -0.448322 -0.231578 0.537199 0.207236 -1.364653 +ATCT 0.619346 0.320844 -0.667086 1.180949 0.256402 -0.057430 0.899838 -1.424096 -0.067153 0.339559 0.193571 -0.250865 +ACAC 0.360046 -1.970614 -0.458326 1.031837 -0.519809 0.659809 -0.814027 -0.732725 0.130474 0.478859 0.288282 -0.013887 +GAAG -0.341668 -0.910892 -0.259112 0.943684 -0.852854 -0.845393 0.980658 0.018102 -1.191810 -0.204679 -0.104369 -0.263491 +TGAT -0.139150 0.258016 -0.500714 1.759130 0.025511 0.496442 1.081411 -0.897722 0.111168 -1.149286 -0.526330 0.420535 +GAGT -1.208281 -0.437937 0.006018 1.112325 -0.851149 0.000781 0.990251 -0.241033 -1.096707 -0.311862 0.089913 0.517222 +TCCAT -0.343921 -0.430862 -1.850555 1.177338 0.305464 0.463099 0.785342 -0.865096 0.616584 0.225136 0.530313 1.133393 +CTCT 0.175380 0.342929 -0.936535 0.729119 -0.045019 0.798202 0.796710 -1.389253 -0.494448 0.061552 0.701740 -1.046744 +CTGG -0.502245 -1.377011 -0.318952 0.740449 0.877534 0.390205 0.263713 -0.147262 -0.631589 -0.848400 0.567007 -1.012386 +AGAT -0.067330 0.010764 -0.568256 1.573248 -0.123783 -0.603633 0.208543 -0.819008 -1.034818 -0.035517 -0.761906 0.585887 +TCG 0.242943 -0.359574 -1.106606 1.030057 0.258835 -0.530687 0.709896 -0.175296 -1.033230 -0.839935 0.490977 0.295047 +AGCA -0.091630 -1.009278 -0.406394 0.331900 -0.705328 -0.909122 0.112713 -1.438771 -0.507847 0.143469 -0.146178 -0.065452 +TGCT -0.160366 -0.042702 -0.690772 0.699627 -0.033874 0.466277 0.714066 -1.185288 0.569066 -0.827597 0.021918 -1.265728 +ATCA 0.901365 -1.129742 -0.668770 1.002482 0.385759 -0.833581 0.649286 -1.193190 -0.689154 0.317548 0.045126 0.856880 +CCTG -0.430380 -0.236918 -0.459188 1.008652 0.185839 0.267550 0.316545 -0.142885 0.147611 -1.072004 1.653032 -0.902035 +GTGG -1.517237 -1.359489 0.172174 0.846747 -0.043278 -0.465153 1.045631 -0.228868 -0.384917 -0.778141 0.175444 0.061970 +CATTC -0.058090 -0.275990 -1.990771 0.904777 -0.083610 0.337717 0.489914 -1.263242 0.571095 0.244643 0.259211 0.921862 +AAGT -0.638644 -0.793394 0.252640 0.783128 -1.067081 -0.215416 1.710075 -0.150404 -0.333979 0.722618 0.587199 -0.030112 +TACA -0.269000 -1.461280 -0.548858 0.985852 0.573098 -0.071527 -0.235731 -0.760979 0.360301 1.366140 -0.497894 0.086462 +TTCCA -0.098390 -0.352766 -2.056067 1.143157 -0.124829 0.591152 0.550242 -0.474559 0.339298 0.350887 0.397625 1.147871 +TCAG -0.705393 -0.353121 -0.861584 0.121634 0.062986 -0.615923 0.419203 -1.274396 -1.178104 0.469827 0.361702 0.381383 +ACTC 1.050590 -0.655614 -0.912811 0.721278 -0.245681 0.781269 0.155883 -0.837195 -0.870829 -0.009881 0.817114 -0.469552 +ACTG 0.033028 -1.451840 0.491968 1.139151 -0.068070 0.807900 0.066906 -0.624277 -0.026913 -0.549834 0.390701 -1.186298 +CAGG -1.080154 -1.513342 -1.389269 -0.162637 -0.464696 -0.751489 -0.264541 -0.373177 -0.642076 -0.216957 -0.020623 0.417159 +TTGG -0.686907 -1.118109 -0.953680 0.560022 0.320696 0.168461 1.080784 0.125090 -0.099984 -0.965806 -0.816177 -0.063243 +CTGA 0.642716 0.023108 -0.184741 1.284401 -0.276772 0.312121 0.500119 -0.680362 -0.921275 -0.991780 0.579535 -0.789073 +TCTA -0.171100 0.408506 -1.005122 1.374961 0.703503 0.031780 0.894355 -0.904882 -0.152663 1.258900 0.302519 -0.570232 +CCAG -0.982650 -0.415196 -1.441734 0.645916 -0.556413 -0.600970 -0.395656 -0.089932 -0.507565 0.344574 1.029901 0.592604 +TCAC -0.056843 -1.105513 -0.743912 0.337346 0.209730 0.521949 -0.243383 -1.630454 -0.249205 0.928401 0.465861 0.263459 +TGGG -1.218282 -1.120109 -0.586487 0.691175 0.557984 0.053850 0.411206 0.201914 -0.250742 -1.280127 -0.073380 -0.370588 +CCCA -0.123668 -0.948052 -1.181291 0.793367 -0.554487 -0.653304 -0.245425 0.078146 0.211843 0.177026 1.482991 0.913298 +GTGA -0.564683 -0.310905 0.545804 1.436235 -0.759018 0.304279 0.764717 -0.584610 -0.307451 -0.852617 0.325557 0.248517 +GTGT -1.559325 -0.453405 0.231593 1.124583 -0.073690 0.563653 1.358174 -0.672261 0.480337 -0.038492 0.483046 0.386369 +CTGC 0.307599 -0.778783 -0.521848 0.306147 0.037681 0.104666 0.393023 -1.360250 0.361969 -0.547900 0.816067 -1.163736 +CATG -0.081292 -0.897366 -0.192355 1.094591 -0.017472 -0.215995 0.120995 -0.980697 0.633068 -1.081452 0.172271 1.104788 +CCATT -0.306220 -0.464459 -2.070066 1.157778 0.295854 0.416197 0.495397 -0.531365 0.490664 0.113851 0.333622 0.969179 +TGGT -1.454518 -0.792846 -0.089510 0.996052 0.651477 0.457662 0.743815 -0.128825 -0.001146 -0.619295 -0.048653 0.021744 +GACT 0.386927 -1.203304 -0.373006 1.068954 0.155703 0.613795 0.334209 -0.381318 -1.119689 -0.489588 0.153834 -1.182194 +CCAA 0.685054 -1.080970 -1.232731 0.788369 -0.182844 -0.779287 0.604393 0.176338 0.351255 0.330579 1.254572 0.515354 +GACA 0.068857 -1.510417 -0.191427 1.075807 -0.344676 0.328218 -0.524212 -0.782119 -0.911615 -0.165855 -0.400124 0.457398 +ATAG -0.366368 -0.627492 -0.440166 1.769908 -0.092448 -1.398930 0.336267 -0.271132 -0.539775 0.327497 -0.666400 -0.044681 +ACCA 0.198436 -1.068893 -0.606791 1.396461 -0.314906 -0.131223 -0.639069 -0.036562 0.230078 0.251380 0.999855 0.712786 +CCTC 0.093093 -0.058428 -1.675271 0.356961 -0.041691 0.046170 0.333038 -0.720502 -0.380041 -0.278696 1.610886 -0.318524 +CCAC 0.126685 -1.017643 -1.268332 0.703520 -0.226767 0.601894 -0.572143 -0.573402 0.406626 0.070428 1.099014 0.173563 +GGGA -0.527714 -1.486984 -0.570200 0.804737 0.145126 -0.465542 0.370649 0.239912 -0.969240 -0.766644 -0.473195 -0.467542 +ATTCC -0.008591 -0.448220 -2.011458 1.398426 0.736965 0.608983 0.608951 -0.356485 0.249126 0.327761 0.611830 0.845764 +TATG -0.677661 -0.206193 -0.020709 1.575958 0.452720 -0.256977 0.518241 -0.528438 0.809739 -0.498064 -0.398132 -0.370874 +GCAA 0.457144 -1.521522 -0.098640 0.500552 -0.090351 -1.068264 0.934311 -1.167716 0.500297 -0.150587 0.234758 -0.607348 +GCAG -1.122806 -0.915666 -0.097226 0.234558 -0.586103 -0.940030 0.030862 -1.582450 -0.389425 -0.102287 0.319692 -0.255080 +ATGC 0.586760 -0.914717 -0.415936 1.015679 0.421922 -0.930113 0.536510 -1.174230 0.939111 -0.956455 0.252977 -0.427325 +CATA 0.043275 -0.512720 -0.681272 1.469891 0.041057 -0.537403 -0.458417 -0.901451 0.480528 0.718197 -0.339077 0.459616 +CAGT -1.252558 -0.545558 -0.426486 0.438212 -1.206436 0.163828 0.365694 -1.067069 0.234130 0.726306 0.361552 0.825115 +GCCT -0.572806 -0.021706 -0.886948 0.625928 0.076486 -0.548317 0.447485 -0.085231 0.254331 -0.468656 1.243474 -1.283026 +CATC 0.541153 -0.364352 -1.050242 0.760495 0.079471 -0.427914 0.140397 -1.861282 0.125337 0.119397 0.524872 0.840032 +GGTG -1.512410 -1.249773 0.163270 0.773266 -0.101062 0.272757 0.741621 -0.119500 -0.218641 -0.900274 -0.074766 0.188300 +GCAT -0.246476 -0.700944 -0.895568 0.529158 0.619868 -0.507351 0.302449 -1.594194 0.762784 -0.657799 -0.496960 0.265618 +AGCT -0.298192 0.025852 -1.000370 0.382705 -0.259977 -0.317678 0.290788 -0.918719 -0.961072 0.022437 0.104896 -1.272413 +GCTG -0.751907 -0.426726 -0.073578 0.634904 -0.064409 -0.132194 0.751140 -1.101032 -0.069140 -1.170738 0.416491 -1.357121 +GAGG -1.000022 -0.876700 -0.632361 0.609220 -0.752603 -0.757517 0.297358 -0.243789 -1.145673 -0.993119 -0.155655 -0.548163 +AGGG -1.198168 -1.624700 -0.970385 0.238636 -0.289904 -0.758031 0.413457 0.382064 -1.020128 -0.481492 -0.050261 -0.234504 +TGTC -0.612041 -0.166684 -0.088529 0.791553 -0.040624 0.635741 1.005789 -1.354065 0.144464 -0.340288 1.028962 0.926014 +CAGC -0.403621 -0.649286 -1.209251 0.247090 -1.010524 -0.871565 -0.623224 -1.580856 0.052663 0.182591 0.573097 -0.244249 +AGGC -0.673753 -0.787009 -1.127395 0.269597 -0.267675 -0.984946 -0.425303 -0.623268 -0.385925 -0.705954 0.090243 -0.504470 +GCTT -0.430081 -0.269113 -1.341773 0.118839 -0.261400 0.079375 0.947624 -0.598695 0.070368 -0.286378 -0.403322 -1.289933 +TCCC -0.294504 0.108053 -1.548946 0.739398 -0.228920 0.019080 0.446462 -0.151446 0.298601 0.132321 1.587317 0.197233 +CTTG -0.061611 -0.351245 -0.808465 0.792697 -0.294336 1.283275 0.899496 -0.308179 -0.084122 -0.880847 0.071975 -0.484856 +CTAT -0.110059 0.455861 -1.007758 1.611628 0.885673 0.442856 0.335364 -0.987115 0.245169 0.153495 -0.080020 -0.513586 +ACG -0.257226 -1.565960 -0.133300 0.763982 -0.670276 -0.050756 -0.125488 -0.145864 -0.316843 -0.485794 0.283524 0.048189 +CAAG -0.023073 -1.205261 -0.600446 0.105462 -0.506954 -0.916913 0.788470 -0.531307 -0.672447 0.487297 0.614908 0.253028 +AAAAT 0.899210 -1.187266 -0.412516 1.448437 0.162002 -0.779758 1.557003 -0.017498 0.108317 0.418791 0.102439 -0.037176 +CCCT -0.183533 0.082479 -1.618828 0.947152 -0.248561 0.296121 0.353452 0.235268 0.231499 -0.114031 1.394902 -0.799891 +CTAA 0.461747 -0.319918 -0.124609 1.446400 -0.150303 -0.022727 0.873242 -0.169806 -0.223231 0.844459 0.436220 -1.354047 +GAAC 0.359057 -1.430182 -0.273470 1.075120 -0.873262 0.281805 0.010666 0.191119 -0.518266 -0.382170 0.237645 -0.225188 +CACC 0.042034 -1.184440 -1.305898 0.539126 -0.382820 0.379151 -0.657784 -0.548344 0.449562 0.308456 1.493202 0.108859 +AGAC 0.245981 -0.928993 -0.565042 1.427715 -0.719183 0.091147 -0.739604 -0.290011 -1.195563 0.206271 -0.030671 -0.059144 +TTAC -0.293223 -0.941273 -1.084501 1.262310 0.116208 1.058749 -0.175271 -0.150956 0.445056 0.925389 -0.452340 0.008092 +GTAA -0.482014 -0.927464 0.514670 1.982713 -0.164362 -0.078449 1.131753 0.153405 0.240624 0.787996 0.217928 -0.101291 +TTGC -0.013335 -0.642411 -1.131836 0.396848 -0.111724 0.327279 0.915993 -1.006815 1.083116 -0.967319 -0.315638 -0.302280 +CCG -0.740045 -0.682607 -1.187982 0.460519 -0.471215 0.204925 -0.020057 0.204955 -0.101825 -0.609817 0.936802 0.079408 +TACT -0.076892 -0.554621 -0.594031 1.401210 0.354060 0.848323 -0.035772 -0.429452 0.375698 0.871741 -0.091949 -1.199446 +GATA 0.046306 -0.320925 -0.317452 1.957422 0.238862 -0.713661 -0.099788 -0.503182 -0.571409 0.138641 -0.757295 -0.178100 +ATTTT 0.169159 -0.629242 -1.239292 1.294969 0.575903 1.006875 1.052270 -0.315573 -0.316477 0.105680 -0.857997 0.746980 +GATG -0.544515 -0.322630 0.056075 1.408318 0.292508 -0.363936 0.691567 -0.972576 -0.157131 -1.377825 -0.223632 0.410901 +AGTA -1.130282 -0.593905 0.034732 1.758349 -0.466179 -0.352251 0.374597 0.180747 -0.355687 1.282973 -0.149751 0.110031 +GGAC -0.000108 -1.683305 -0.344353 1.228469 0.185881 0.410653 -0.118752 0.070699 -0.993777 -0.481991 0.175041 -0.828898 +TTAG -1.016379 0.073029 -1.211650 1.026815 -0.651755 -0.097834 0.488809 0.037017 -0.333538 0.755206 -0.818763 -0.372152 +ACTA 0.385030 -0.649221 -0.384203 1.798093 -0.307728 0.329191 -0.163546 -0.215215 -0.261978 1.081249 -0.133742 -1.420459 +TGCC -0.131320 -0.095338 -0.897466 0.973157 -0.120894 -0.058746 0.321474 -0.474250 0.986050 -1.096352 0.975105 -0.187983 +TTTCT -0.300314 0.115844 -1.715762 0.763663 0.201177 1.084983 1.604027 -0.756987 -0.146892 0.702698 0.037281 -0.503012 +AAGC 0.178618 -0.775827 -0.698988 0.457277 -0.948053 -1.385559 0.488590 -0.646424 -0.168035 0.380693 0.410376 -0.990552 +TATTT -0.247269 -0.113678 -1.339995 1.781228 0.193916 0.594397 1.121449 -0.440302 0.499763 0.454562 -1.353936 0.211436 +AGCC -0.359801 -0.141940 -1.203090 0.877792 -0.503802 -1.124558 -0.244246 -0.016623 -0.526949 -0.289995 1.316752 -0.389125 +CGG -0.671844 -1.396960 -0.608830 0.610310 -0.258283 -0.320922 0.022840 0.143374 -0.318740 -0.901428 0.253760 -0.158305 +TAGT -1.356239 0.007387 -0.382191 1.289106 -0.558755 -0.178135 0.805993 -0.228425 0.195484 1.166564 -0.197212 0.011907 +CGT -1.083601 -0.389806 -0.731484 0.361903 -0.457256 0.590738 0.289210 -0.584843 0.104277 -0.237191 0.603725 0.338704 +TTTTG -0.475513 -0.699963 -1.229136 0.878440 -0.108055 1.288275 1.440914 -0.305338 0.223216 -0.681078 -0.816540 0.068861 +AAATA 0.747199 -0.942960 -0.533430 1.880327 0.221634 -1.057023 0.876087 -0.029262 0.177322 0.756025 -0.164556 -0.339805 +GTCA -0.634797 -0.837379 0.002875 0.480319 0.003006 -0.240480 0.816233 -1.353531 -0.385773 0.193449 0.489861 1.305789 +ATCC 0.553146 0.044632 -1.398679 1.361217 0.295587 -0.477948 0.324298 -0.245634 0.143278 -0.254656 0.992526 0.640067 +GGAT -0.462847 -0.586044 -0.899258 1.033752 0.923187 -0.605835 0.585629 -0.358949 -0.468411 -0.911731 -0.803195 0.163794 +TAAG -0.743307 -0.354382 -0.155732 1.007422 -0.304512 -0.726739 1.025292 -0.198416 -0.372747 0.967605 -0.183708 -0.762905 +TGGC -0.657570 -1.113555 -0.725970 0.464601 0.149982 -0.125574 0.016220 -0.702227 0.475646 -1.374699 -0.048672 -0.315160 +ATAC 0.356086 -0.895207 -0.613338 1.804235 0.593161 0.060090 -0.736020 -0.358281 0.256506 0.466140 -0.158775 -0.214751 +GTCT -0.731636 0.102879 -0.311891 0.462435 0.091942 0.527910 1.332526 -1.145739 -0.482218 0.200362 0.757439 -0.273000 +GGCT -0.919817 -0.604373 -1.034135 0.085615 0.347669 -0.051242 0.389170 -0.753939 -0.560343 -0.683101 0.050691 -1.325872 +GGCA -0.431012 -1.817339 -0.518151 0.226457 0.298263 -0.782415 -0.196736 -1.167610 -0.036900 -0.742574 -0.059679 -0.001077 +AGGT -1.507185 -0.738026 -0.366022 0.396763 -0.136684 -0.226061 0.739274 -0.271641 -0.879395 0.213487 -0.170105 0.234736 +ACCT 0.016235 -0.474378 -0.620164 1.211912 -0.080268 0.684906 -0.232004 0.206141 0.271672 0.229724 1.216115 -0.765273 +TATC 0.102924 0.428990 -0.842668 1.410661 0.444734 -0.384649 0.529303 -1.155603 0.255399 0.662463 0.058941 -0.027102 +GCCA -0.181484 -0.807707 -0.779566 0.544935 -0.174822 -0.672287 0.098985 -0.430079 0.735108 -0.563579 1.077951 0.297257 +AAATG 0.709618 -1.441991 0.077209 1.364862 -0.100571 -0.668923 1.412395 -0.375204 0.474642 -0.434508 0.445913 0.107658 +AAAGA 0.482539 -1.350774 -0.328673 1.247911 -1.005734 -0.988013 1.038370 -0.201313 -1.025462 0.557845 -0.158047 -0.199176 +GTAT -1.111980 -0.047849 0.003674 1.907790 0.693932 0.013966 0.598040 -0.398437 0.366138 0.280789 -0.276577 0.283470 +GGGG -1.455498 -1.742717 -0.943494 0.214367 0.119241 -0.234344 0.423437 0.179700 -0.824210 -0.981349 0.092329 -0.548764 +GAGC -0.377081 -0.150745 -0.713097 0.570472 -1.168251 -0.671572 0.117288 -0.982876 -0.635453 -0.876295 0.293724 -0.561499 +AGAAA 0.579679 -1.237653 -0.408378 1.354080 -0.949799 -0.555702 0.821514 0.116452 -1.276577 0.513493 0.118320 -0.310040 +GTTG -1.062743 -0.375496 -0.216611 0.970890 -0.489315 0.771551 1.340800 -0.208825 -0.237321 -0.937651 -0.132353 0.130465 +CAAC 0.817161 -1.756716 -0.692054 0.379475 -0.548053 0.269489 0.069597 -0.665748 0.026053 0.354505 0.739927 0.019708 +TAAAA 0.463764 -0.976758 -0.267262 1.614435 0.015115 -0.211274 1.474624 0.169526 0.270816 1.244745 0.054797 -0.360742 +AACC 0.532139 -1.171995 -0.652462 1.239024 -0.576505 -0.155797 0.012150 0.697658 0.477433 -0.055178 1.203924 -0.415225 +CTTA -0.008628 -0.153371 -0.944459 1.098729 0.155027 0.591995 0.359583 -0.424523 0.035462 0.766136 -0.405183 -1.040087 +AGTC -0.838087 -0.138378 -0.691360 0.696058 -0.435974 -0.120985 0.856528 -0.644155 -0.763792 0.504762 0.887284 0.873673 +GGTT -1.514783 -0.880391 -0.948742 0.126178 0.239358 0.580685 1.046973 -0.094097 -0.585449 -0.054203 -0.374789 0.297025 +TCAAA 0.847908 -1.379524 -0.583683 0.492702 0.232680 -0.454967 1.533003 -0.740811 -0.425856 0.703359 0.574214 0.140093 +TTTTC -0.226418 -0.386950 -1.948164 0.602379 0.052462 1.086690 1.393495 -0.485085 -0.279975 0.657718 -0.156595 0.361902 +TCGA 0.377522 -0.374076 -1.112504 1.219278 0.212665 -0.533856 0.639118 -0.293446 -1.108381 -0.752610 0.439205 0.241389 +TCTTT -0.085051 -0.062208 -1.849497 0.584304 0.146708 1.065675 1.679292 -0.866566 -0.041070 0.481224 -0.114687 -0.423221 +AGAAT 0.197398 -0.502260 -0.537739 1.790744 -0.044806 -1.073381 0.718559 -0.183788 -1.033573 0.225164 -0.318921 0.192198 +GCTC -0.354689 -0.200588 -1.148672 0.000652 -0.112506 -0.033816 0.432823 -1.337667 -0.470807 -0.444681 0.965691 -0.894990 +GTTC -1.136960 -0.295530 -0.931844 0.181483 0.316866 0.561395 1.281020 -0.622610 -0.423473 0.315499 0.747331 0.455315 +TAAC 0.002540 -0.919713 0.117555 1.548922 -0.502205 0.336131 0.161532 -0.324708 0.530804 1.243637 0.088237 -0.442887 +GGAAA -0.097210 -2.087738 -0.176316 0.998159 -0.199190 -0.619044 1.152296 0.500952 -0.590250 -0.018246 0.143270 -0.355352 +AAAAG 0.132897 -1.418176 -0.352261 0.917709 -0.823965 -0.901311 1.465904 0.147168 -0.545305 0.921576 0.198754 -0.388041 +CAAAA 0.846309 -1.772519 -0.368285 0.666540 -0.403582 -0.346391 1.079455 -0.410475 -0.173712 0.878567 0.667997 0.278523 +TGAAA 0.508775 -1.052994 0.087402 1.338071 -0.757980 0.165662 1.548472 0.197430 -0.155703 -0.516524 0.275494 -0.135042 +TGAC 0.268082 -0.768257 0.069643 1.549356 -0.699755 1.142843 -0.281653 -0.469696 -0.166863 -0.826803 0.358630 0.088465 +TTTTA -0.330095 -0.573469 -1.203089 1.409420 0.027971 0.835046 1.155411 -0.235471 0.179759 0.889681 -1.308933 0.026533 +TTCTT -0.277432 0.001831 -1.789182 0.688298 -0.264737 1.140228 1.698396 -0.791789 -0.358884 0.518402 -0.288753 -0.368425 +GGCC -0.919724 -0.608749 -1.090339 0.453773 0.106428 -0.699015 -0.153415 -0.019313 -0.066994 -0.990923 0.997517 -0.571086 +CATTT 0.004030 -1.099933 -1.523750 0.731006 -0.215407 0.979298 0.510880 -0.821614 0.400458 -0.105372 -0.842476 1.066707 +CTTTT -0.065868 -0.384724 -1.589554 0.838124 -0.040916 1.774062 1.077503 -0.516445 -0.190848 0.157221 -0.246990 -0.459924 +ACCC 0.209630 -0.997222 -0.905713 1.337092 -0.761720 0.050787 -0.503296 0.359431 0.324818 0.008145 1.565819 -0.082345 +GAAAA 0.496625 -1.457567 -0.154855 1.226467 -0.332396 -0.523931 1.446296 0.377297 -0.700161 -0.044733 0.300609 -0.187460 +TTTGT -0.981923 -0.395527 -0.807523 1.115697 -0.038476 1.213666 1.819320 -0.305785 0.771188 -0.275403 -0.334907 0.144549 +GCAC -0.174062 -1.545494 -0.333261 0.353403 -0.265760 0.054183 -0.603142 -1.477762 0.344283 -0.130897 0.486969 -0.547904 +TTGAA 0.428353 -0.733891 -0.696232 1.174168 -0.878204 0.274787 1.844222 0.295868 -0.130843 -0.686749 -0.399774 0.020125 +TTTAT -0.336764 -0.248595 -1.324386 1.591462 0.600592 0.654098 1.106696 -0.431913 0.457075 0.372974 -1.241225 -0.055944 +AATTT 0.577855 -0.975878 -0.946389 1.122447 -0.032245 0.260527 1.669638 -0.083277 -0.108013 0.235646 -0.916002 0.416616 +ATAAA 0.953408 -1.134499 -0.242889 2.010489 0.127648 -0.596925 0.804316 -0.149245 0.377553 0.858667 -0.144571 -0.250084 +GGGT -1.810657 -0.962627 -0.573550 0.409020 0.374266 0.283599 0.771011 -0.091602 -0.401995 -0.600355 0.073194 0.098396 +CCCC -0.088523 -0.779170 -1.509170 0.988523 -0.675761 -0.230950 -0.331554 0.061999 0.466195 -0.163118 1.857703 0.024056 +CGC -0.313531 -0.713156 -1.065003 0.200491 -0.385720 -0.128167 -0.282232 -0.798215 0.195335 -0.733107 0.646336 -0.451062 +GTGC -0.970645 -0.652393 -0.076748 0.353880 -0.328885 -0.131374 0.752725 -1.141492 0.822857 -0.618279 0.617171 -0.309633 +AGGAA -0.071975 -1.739271 -0.671392 1.102203 -0.393297 -1.089498 0.965336 0.549910 -0.862850 0.132765 -0.144482 -0.208235 +AAGGA 0.106089 -1.898550 -0.536144 1.024804 -0.473136 -0.994234 1.031109 0.142495 -1.010502 0.209055 -0.250415 -0.547832 +ATTCT 0.182719 0.088073 -1.275742 1.095351 1.059300 0.378643 0.998807 -1.017222 -0.346594 0.468424 0.229886 -0.038126 +GTTA -1.128660 -0.595371 -0.022410 1.325278 0.066403 0.685849 0.823954 -0.125408 0.143623 1.060842 -0.298855 -0.077458 +GCG -0.852889 -0.785153 -0.708413 0.260143 -0.388097 -0.211093 -0.110406 -0.670527 -0.003472 -0.909010 0.439793 -0.369141 +AAATT 0.855447 -1.028186 -1.057900 1.245991 -0.111516 -0.044976 1.597924 0.114920 0.256278 0.602922 -0.336790 0.361498 +TAGG -1.328378 -0.696694 -0.730743 0.884658 0.296169 -0.805308 -0.006898 0.047267 -0.383520 0.133798 -0.789046 -0.664010 +CCTA -0.332578 0.332929 -0.987717 1.570257 0.101256 -0.507300 -0.074233 0.328899 0.192053 0.447496 0.932861 -0.903917 +CTAG -0.798388 0.241308 -0.633742 1.177792 -0.456254 -0.193298 -0.022614 -0.250851 -0.687404 0.774411 0.195484 -0.956138 +AAACA 0.832613 -2.323109 -0.314690 1.116866 -0.602192 -0.062914 0.499069 -0.158376 -0.024798 0.715740 0.040516 0.204536 +GTAG -1.606271 -0.187541 0.026881 1.521322 -0.538275 -0.438796 0.469638 -0.078320 -0.384747 0.391916 -0.194612 -0.191381 +TAGAA -0.082918 -0.764874 -0.531190 2.039316 -0.451698 -1.061095 0.722538 0.063236 -0.695613 0.405720 -0.805738 -0.195470 +ACAAA 0.868979 -2.273153 -0.294367 1.217702 -0.210227 -0.353241 0.316526 -0.239375 -0.050426 1.097295 0.272408 -0.044256 +TTTCC -0.543949 -0.275978 -1.879480 0.811779 0.019950 0.945450 1.046808 0.014947 0.553801 0.232374 0.566694 0.547459 +TTTCA -0.078778 -0.976860 -1.660272 0.131826 0.210023 0.338273 1.324173 -0.989729 -0.176852 0.727552 -0.444069 0.830497 +GTCC -1.016462 -0.149985 -1.112421 0.803094 -0.250942 0.115974 0.787012 -0.294791 -0.114692 -0.031631 1.381999 1.034080 +GAAAT 0.496212 -0.732949 -0.100676 1.565961 -0.149134 -0.560949 1.383887 -0.009942 -0.349666 -0.291288 -0.057635 0.074854 +AAGAA 0.510844 -1.317030 -0.293904 1.473187 -0.962295 -0.912430 1.282137 0.034602 -0.827358 0.553800 -0.069612 -0.237369 +CAAAT 0.916721 -1.200914 -0.390501 1.121673 0.307996 -0.514682 0.990531 -0.584723 0.000431 0.313603 0.457624 0.508070 +CGAA 0.455272 -0.937308 -0.593350 1.293901 -0.101133 -0.747953 0.723145 -0.265467 -0.773581 -0.578989 0.550976 -0.161121 +AAAGG -0.244319 -1.978903 -0.541185 0.566520 -0.459987 -0.925231 1.255803 0.232094 -0.714810 0.251044 -0.077723 -0.610343 +ACAGA 0.117827 -1.284155 -0.145788 1.613472 -0.826488 -0.429530 -0.559895 -0.837141 -1.291652 0.646072 -0.100168 0.395755 +TTTGA 0.230191 -0.283150 -1.159675 1.111616 -0.458936 0.863313 1.242313 -0.298925 -0.299539 -0.784433 -0.751866 0.164569 +ACACA 0.213421 -2.476958 -0.353769 1.254935 -0.300608 0.131271 -0.896098 -1.223510 -0.092599 0.844707 -0.100252 0.302419 +GTTTT -1.026669 -0.630554 -1.082665 0.784849 -0.149457 1.375513 1.356117 0.008663 -0.311363 0.277975 -0.371831 0.579378 +CTAC -0.054013 -0.384307 -0.698971 1.271585 0.216305 0.598910 -0.730182 -0.779401 -0.109899 0.998503 0.601490 -0.862883 +TGTTT -0.894041 -0.448369 -0.702718 1.020720 -0.043737 1.486429 1.707112 -0.358733 0.588190 -0.212570 0.020125 0.372551 +GAAAG -0.208640 -1.373100 -0.333001 0.930994 -0.696382 -0.793542 1.460067 0.182451 -1.118822 -0.054438 0.127367 -0.340569 +TTTAA 0.178928 -0.917425 -0.898039 1.241601 -0.173287 0.434634 1.667900 0.125520 0.240827 0.932609 -0.840598 -0.233272 +ATATT 0.209919 -0.449985 -1.104626 1.852090 0.870256 0.045161 0.679005 -0.256868 0.186840 0.234114 -1.056834 0.268384 +ATTTG 0.093377 -0.638750 -0.949986 1.275963 0.671335 0.889493 0.999071 -0.296928 -0.072492 -0.858117 -0.644149 0.589088 +TTATT -0.375894 -0.107415 -1.661720 1.700332 0.566317 0.760662 0.971646 -0.239105 0.340395 0.375318 -1.079510 0.181463 +AATAT 0.513460 -0.521551 -0.597435 1.930490 0.694840 -0.755343 1.020901 -0.273946 0.201703 0.415070 -0.561488 -0.118710 +TTAAA 0.452572 -0.977883 -0.852039 1.337854 -0.358018 0.353041 1.648307 0.401183 0.372224 1.048367 -0.477007 -0.366940 +TTCCT -0.484084 0.292358 -2.166203 1.185200 0.125004 0.980711 1.145466 -0.132648 0.352425 0.082127 0.634449 -0.187405 +AATAA 0.996714 -1.127003 -0.121026 2.293629 -0.055711 -0.790312 1.301273 -0.132007 0.189425 0.846124 -0.029638 -0.126401 +AAACT 0.960317 -1.248377 -0.399632 0.868621 -0.644554 0.573428 0.913761 -0.305212 -0.086094 0.468196 0.283464 -1.354878 +ATGAA 0.613391 -1.020438 0.111531 1.731196 -0.550481 -0.547240 1.231177 -0.178668 -0.154376 -0.688788 -0.012804 0.160121 +TGAAT 0.450415 -0.382329 -0.330065 1.774782 -0.157464 -0.001814 1.477627 -0.158650 -0.007437 -0.930524 -0.251726 0.130229 +AAAAC 0.972036 -1.963175 -0.436708 1.290331 -0.715180 0.075405 0.717521 0.223371 0.187168 0.907727 0.514247 -0.485739 +CCTTT -0.187540 -0.158677 -2.132848 0.885257 -0.199427 0.884744 0.806361 0.369252 0.401887 0.103573 0.341070 -0.383990 +ATAGA 0.081831 -0.863186 -0.671524 2.265115 -0.256719 -1.122666 0.510760 -0.229384 -1.010247 0.395145 -0.804655 -0.038050 +CAGAA 0.417873 -1.054013 -0.587238 0.965981 -1.266123 -0.915288 0.172452 -0.550077 -0.850805 0.268389 0.112487 0.431081 +GCCC -0.581473 -0.513362 -1.153001 0.658834 -0.601959 -0.618094 -0.080252 -0.122254 0.335118 -0.677970 1.597664 -0.308994 +AGAGA -0.105373 -0.818897 -0.212997 1.657225 -1.116344 -0.697817 0.019163 -0.616454 -1.769485 -0.005735 -0.297203 0.141785 +TCTGT -0.772201 0.283986 -0.322298 0.956259 0.397099 0.824837 1.599358 -1.404987 0.248736 0.132036 0.916054 -0.238909 +TACC -0.361608 -0.376891 -1.093036 1.574664 0.334703 -0.093901 -0.669100 0.330695 0.764684 0.728658 0.754986 -0.295251 +TCCTT -0.375180 -0.031402 -2.063104 0.920959 0.090476 0.936638 1.373907 -0.156427 0.377685 0.154412 0.529623 -0.181498 +TGGAG -1.157079 -0.881943 -0.258610 1.223230 -0.338493 -0.159277 0.653560 -0.107829 -0.903549 -1.039953 -0.301185 -0.283353 +GGTA -1.514869 -0.917608 0.086658 1.279582 0.477396 -0.293233 0.387596 0.073870 -0.089857 0.245194 -0.341540 -0.290835 +TTCAA 0.651484 -1.035902 -1.339376 0.358687 0.061836 0.096572 1.554060 -0.587256 -0.263749 0.578161 -0.104211 0.573806 +GGGC -1.228867 -1.361563 -1.132940 -0.099620 0.081381 -0.352679 0.013963 -0.517757 -0.381565 -1.123075 0.415909 -0.589068 +TTCTG -0.404440 0.274441 -0.889495 0.623611 0.212113 0.782330 1.322505 -1.101444 -0.184818 -0.391627 0.371629 -0.220768 +ATTTA 0.132345 -0.819245 -1.021398 1.761283 0.777001 0.468514 0.795717 -0.006744 -0.241429 0.595012 -1.206688 0.329424 +AGTTT -1.014349 -0.595430 -0.676800 0.710675 -0.746162 0.638537 1.287651 -0.017742 -0.708547 0.802259 -0.511495 0.378716 +TTCAT -0.138051 -0.212865 -1.586404 0.723511 0.389170 0.313634 0.975785 -1.266053 0.151771 0.127461 -0.252497 1.124450 +CTTTC -0.011538 -0.141221 -1.818371 0.516845 0.015137 1.197427 0.767535 -0.644438 -0.423880 0.438740 0.576080 -0.293132 +AATGT -0.101562 -0.832003 0.553585 1.693273 -0.016847 -0.149494 1.572036 -0.401635 0.552312 -0.012888 0.574724 0.577023 +GCTA -0.317196 -0.065365 -0.450689 1.203600 0.278158 -0.461328 -0.041763 -0.741577 0.276973 0.070855 0.051082 -1.672621 +AATGA 0.720091 -1.064115 0.213754 1.865788 -0.363102 -0.428866 1.126688 -0.360963 -0.280146 -0.682496 0.135481 0.155812 +AATAG -0.066552 -0.854498 -0.358083 1.861939 -0.149220 -1.240322 0.709746 -0.257286 -0.690982 0.460885 -0.542283 -0.168159 +GATC 0.300098 0.307053 -0.763721 1.093596 0.165424 -0.676751 0.361922 -1.053273 -0.987119 -0.600184 0.302329 0.463209 +TGTGT -1.360408 -0.425321 0.155457 1.399893 -0.176990 0.971665 1.316183 -0.830062 0.998671 -0.543122 0.437846 0.330601 +ATTTC 0.372122 -0.367815 -1.430034 0.910201 0.691933 0.524508 0.929271 -0.555118 -0.327903 0.425017 -0.049970 0.864539 +ATTCA 0.380595 -0.900542 -1.301016 0.769074 0.880454 -0.036872 0.761153 -1.172971 -0.511257 0.572017 -0.171505 1.055475 +TAAAT 0.525205 -0.539767 -0.382548 1.981108 0.358636 -0.300514 1.599758 -0.131793 0.521224 0.905225 -0.240199 0.065423 +TAGC -0.767710 -0.133238 -0.835174 0.788459 -0.362490 -0.770672 -0.171205 -0.748689 0.254534 0.651627 -0.206145 -0.842697 +TTCTA 0.007870 0.568079 -1.583811 1.558616 0.239398 0.653135 0.970199 -0.828888 -0.084582 1.033636 0.023524 -0.324140 +GAATA 0.006231 -0.953496 -0.405127 2.051947 -0.042569 -1.063677 0.510813 -0.001362 -0.474013 0.150198 -0.497226 -0.313582 +GACC -0.002185 -0.728585 -0.775052 1.263590 -0.446525 0.047746 -0.586711 0.401993 -0.354743 -0.561788 0.826044 0.101869 +ATTGA 0.539345 -0.618285 -0.450018 1.639800 -0.090699 0.334162 1.328823 -0.303000 -0.464339 -0.899858 -0.605107 0.221117 +AGAAG -0.381539 -0.997921 -0.268922 1.236233 -0.986772 -1.129686 0.593371 -0.198245 -1.518765 0.406854 -0.038678 -0.217074 +TGGAC 0.058408 -1.484793 -0.150309 1.479949 0.039637 0.298477 -0.003758 -0.085948 -0.580621 -0.818843 0.053799 -0.547600 +TTGTT -0.952107 -0.352571 -1.143597 1.149604 -0.111650 1.291126 1.863361 -0.121770 0.686539 -0.318580 -0.215834 0.303415 +AATTA 0.311806 -0.902762 -0.647841 1.654395 0.079581 -0.321753 1.068829 -0.078063 0.109470 1.022141 -0.830868 -0.066758 +TGCAA 0.812268 -1.401954 -0.123486 0.686173 -0.187346 -0.269429 1.071914 -1.090948 0.618219 -0.607279 0.080735 -0.327831 +GTGGA -1.130704 -1.238082 0.206729 0.975995 -0.186340 -0.406617 0.862130 -0.146054 -0.536634 -0.726509 0.143987 -0.027630 +AATTG 0.271697 -0.849752 -0.482198 1.353764 -0.325352 0.154487 1.600681 -0.169062 0.019097 -0.693136 -0.600890 0.231148 +TGTAA -0.418102 -0.726866 0.505137 1.873323 -0.123801 0.069498 1.371371 -0.059155 0.650298 0.300635 0.232416 -0.039319 +GGTC -1.138872 -0.540780 -0.649104 0.090076 0.351667 0.049819 1.011353 -0.675358 -0.569169 -0.443126 0.840015 0.534249 +CTTCT -0.130283 0.154037 -1.495029 0.536959 -0.026155 1.142820 1.078512 -1.018484 -0.320519 0.365674 0.659378 -0.970807 +GAATT 0.280935 -0.795612 -0.767000 1.341650 -0.058467 -0.117133 1.528659 0.077103 -0.564792 -0.343176 -0.759173 0.283862 +CTCCA 0.384326 -0.465614 -1.573883 0.646816 -0.398058 0.557570 -0.057063 -0.922102 -0.225249 0.187406 1.483234 0.237921 +TTCTC 0.035370 0.232855 -1.463734 0.466864 -0.250175 0.792409 1.206999 -1.224799 -0.426446 0.421646 0.535851 0.089810 +TCACA 0.259320 -1.252116 -0.849370 0.412371 0.083613 0.247846 0.013655 -1.595155 -0.163477 1.051219 0.215882 0.572722 +CACAC 0.189871 -2.165887 -0.830632 0.940529 -0.641361 0.492610 -1.020674 -1.531424 0.221431 0.578225 0.447630 0.184496 +CTTTG -0.184810 -0.336102 -1.118247 0.699522 -0.265366 1.505883 0.838478 -0.377531 0.041010 -0.781419 0.043298 -0.409909 +ATATA 0.220793 -0.482464 -0.452620 2.578520 0.791227 -0.636273 0.278364 -0.427707 0.335857 0.542992 -0.827126 -0.230088 +AACAA 0.955717 -2.364072 -0.208787 1.134451 -0.372018 -0.243489 0.765964 -0.148183 0.027309 0.788434 0.256218 -0.032706 +CAGAG -0.583599 -0.791894 -0.609972 0.715608 -1.294989 -0.485281 -0.336095 -1.030047 -1.242163 0.149856 0.067745 0.502710 +TGTGA -0.454727 -0.284013 0.304881 1.499343 -0.489131 0.785395 0.957742 -0.464320 0.137768 -1.001055 0.283754 0.243428 +AGTGG -1.419374 -1.399725 0.219688 0.954503 -0.507639 -0.351557 0.722401 -0.416980 -0.765678 -0.635131 0.050843 0.028368 +ACTTT 0.177080 -1.240803 -1.338982 0.468837 -0.536437 1.465509 0.428862 -0.222719 0.172647 0.463180 -0.614994 -0.843687 +AATCA 0.997314 -1.166248 -0.532655 1.128558 0.104273 -0.846167 1.121418 -0.914264 -0.383318 0.414029 0.174913 0.538842 +GAGAA 0.125811 -0.800329 -0.192257 1.338123 -0.994447 -0.598120 0.790366 -0.191232 -1.119948 -0.480335 -0.307755 -0.176948 +GAGTG -1.357511 -0.891412 0.317644 1.299134 -1.002430 -0.227010 0.878229 -0.466217 -0.707705 -0.745587 -0.007634 -0.063779 +TCTCT 0.081095 0.318635 -1.162508 0.624739 0.184044 0.615552 1.445914 -1.503389 -0.418919 0.473917 0.864208 -0.641010 +ACATT 0.169175 -1.257657 -0.921695 1.179631 0.227280 0.768356 0.042506 -0.510292 0.255938 0.413563 -0.716429 0.845369 +TATTC -0.311703 0.253743 -1.731181 1.450304 0.544390 0.204696 0.742531 -0.737992 0.243097 0.859010 -0.053019 0.166247 +TAATT 0.178352 -0.355669 -0.832520 1.833619 0.382370 0.124864 1.588915 -0.013169 0.332326 0.736494 -0.603852 0.219231 +CAAAG 0.307443 -1.414833 -0.387432 0.231057 -0.604082 -0.741981 0.800817 -0.635115 -0.711650 0.537577 0.608290 -0.101426 +TATAT -0.285049 0.119355 -0.674417 2.482647 0.749416 -0.116610 0.577492 -0.620579 0.686520 0.394887 -0.875084 -0.090636 +GGACT -0.020299 -1.361854 -0.319019 1.283213 0.093831 0.315756 0.133561 -0.315701 -1.173920 -0.595884 0.133176 -1.142498 +GAAAC 0.458769 -1.661795 -0.204199 1.009780 -0.868117 0.158440 0.352757 0.233895 -0.510803 -0.033778 0.376790 -0.315885 +TCATT -0.095257 -0.588870 -1.539737 0.741176 0.668419 0.449154 0.957065 -1.136710 0.237402 0.430944 -0.186788 0.938020 +ATGCA 0.485721 -1.427211 0.006599 1.064005 0.092965 -0.695539 0.513292 -1.240511 0.720647 -0.699609 0.071614 0.097036 +GGAGT -1.470075 -0.887433 -0.056550 1.135465 -0.413863 -0.162798 0.876224 -0.341660 -0.952539 -0.602663 -0.090056 -0.097685 +TCTCA 0.069378 -0.387859 -1.072776 0.009907 0.181042 -0.036102 1.043270 -1.553965 -0.684701 0.527024 0.688253 0.162567 +TGATT -0.084076 0.028767 -0.970240 1.563692 0.139681 0.679409 0.958265 -0.682765 -0.095895 -0.781135 -0.734963 0.586900 +AAAGT -0.533384 -1.175943 0.120194 0.803176 -0.737363 -0.356041 1.683821 0.101250 -0.190519 0.998077 0.449610 -0.055522 +TTGAG -0.588777 0.099071 -0.944752 0.953124 -0.880655 0.350599 0.942765 -0.324473 -0.878123 -0.960053 -0.641404 -0.145949 +TAATG -0.195867 -0.709159 0.142515 1.914239 0.310877 -0.164864 1.252819 -0.185372 0.549970 -0.209996 -0.242956 -0.216341 +CTGTG -0.903726 -0.459551 0.131812 0.888058 -0.224488 0.952297 0.798631 -1.081822 0.447508 -0.810877 1.022709 -0.570772 +AGACA 0.093857 -1.411412 -0.241215 1.471189 -0.781026 -0.354517 -0.630611 -0.697302 -1.062131 0.462356 -0.243795 0.164643 +TGAGA -0.037674 -0.046225 -0.050440 1.560796 -0.778475 0.150276 0.441179 -0.555119 -1.128067 -0.810788 -0.301432 -0.120689 +TGGGA -0.713204 -1.274993 -0.224521 1.141810 0.204582 -0.177845 0.314348 0.187098 -0.666198 -1.228821 -0.347182 -0.534976 +CTGCA 0.235109 -0.953498 -0.151653 0.335673 -0.041509 -0.123495 0.192595 -1.782373 0.162936 -0.487448 0.735029 -0.570719 +AATGC 0.764857 -1.194365 -0.195365 0.996553 0.084992 -0.728346 0.962507 -0.964526 0.646578 -0.788293 0.414392 -0.370949 +TTTGG -1.065600 -1.129054 -1.221910 0.333694 0.224622 0.850959 0.912053 -0.118320 -0.010624 -0.821231 -0.896572 -0.105862 +TCGAA 0.412415 -0.710810 -0.713709 1.263370 0.050419 -0.653503 0.683695 -0.278863 -0.896693 -0.524452 0.436740 -0.157690 +CACAG -0.348173 -1.536667 -0.600126 0.446655 -0.811357 -0.237863 -0.641685 -1.245073 -0.529145 0.595135 0.396203 0.449378 +TTATA -0.292682 -0.341096 -0.983533 2.041316 0.300792 0.152280 0.593846 -0.122860 0.361239 0.795802 -1.178368 -0.152726 +GTTTC -1.138438 -0.092348 -1.099219 0.581457 0.050403 1.011521 1.501094 -0.504377 -0.433528 0.251552 0.423668 0.520263 +CTGGA -0.190286 -1.059609 -0.382886 0.988086 0.444311 0.146349 0.434436 -0.248408 -0.807244 -0.762853 0.176997 -1.136405 +TTACA -0.332134 -1.345086 -1.055555 1.127176 0.333500 0.769461 -0.172515 -0.522497 0.384026 0.942373 -0.841434 0.387541 +CTTCA 0.298011 -0.683123 -1.404984 0.074994 0.099995 0.528134 0.434712 -1.316513 -0.457492 0.665848 0.244973 0.074597 +CACAT 0.173305 -1.206852 -0.657337 0.986038 0.178260 0.228713 -0.543835 -1.355662 0.724891 0.176615 0.058428 0.799864 +GAATC 0.557522 -0.539538 -0.557407 1.349170 0.142330 -0.855241 0.945379 -0.481296 -0.733288 -0.415354 0.259163 0.201763 +ATAAT 0.765172 -0.447650 -0.435677 2.460014 0.344878 -0.514861 0.895789 -0.458388 0.146559 0.496710 -0.619569 0.114256 +CTGAG -0.228909 0.061904 -0.320319 0.974024 -0.639778 0.108989 0.248237 -0.734428 -1.152190 -0.937795 0.545458 -0.911794 +AAGAT 0.284474 -0.430737 -0.308026 1.534877 -0.244070 -0.869561 0.780209 -0.519007 -0.666417 0.120831 -0.789580 0.152373 +CTCAA 0.775072 -0.996131 -0.700686 0.127134 -0.101218 -0.113116 1.092716 -1.043358 -0.744216 0.398346 0.897347 -0.301034 +AATTC 0.721292 -0.448803 -1.217509 0.919688 0.053936 -0.167850 1.374818 -0.445466 -0.290031 0.555130 0.196291 0.514145 +TGCAG -0.857839 -0.681823 -0.132822 0.429110 -0.625262 -0.205562 -0.065854 -1.592949 0.054792 -0.700963 0.198659 -0.070467 +TTGCA 0.095636 -0.916984 -0.838610 0.378558 -0.201903 0.356312 0.615905 -1.290069 0.783175 -0.691629 -0.461047 0.191887 +ATGTG -0.696488 -0.635409 0.418214 1.401909 0.145884 0.187990 1.024840 -0.728691 0.774509 -0.623770 0.249114 0.530622 +TCCAC 0.069420 -0.735158 -1.539434 0.626392 -0.220315 0.817939 -0.142695 -0.731829 0.292583 0.464994 1.330864 0.152861 +GAAGA 0.023656 -0.906802 -0.043449 1.448791 -0.924323 -0.811787 0.782637 -0.273131 -1.321268 -0.191074 -0.284533 -0.024675 +AACAT 0.785497 -1.533664 -0.396929 1.208746 -0.044107 -0.115042 0.276873 -0.589613 0.543083 0.399613 -0.222964 0.531265 +CTATT 0.028726 0.205099 -1.537920 1.594320 0.674479 0.760608 0.568730 -0.762535 0.152212 0.571453 -0.186956 -0.428005 +CTCTG -0.312027 0.027876 -0.560615 0.593926 0.100078 0.859465 0.647719 -1.252563 -0.386930 -0.667965 1.064290 -0.801989 +ATCTT 0.514615 0.187226 -1.206085 1.084081 0.215501 0.347658 0.875264 -1.068414 0.038078 0.329498 -0.359714 -0.075720 +AAGAG -0.122394 -1.017641 -0.165011 1.047385 -1.077528 -1.001525 0.810542 -0.361917 -1.365316 0.198924 0.038905 -0.147819 +AGATA -0.007240 -0.478926 -0.357405 2.128428 -0.146157 -0.966571 -0.049502 -0.507823 -0.778414 0.531616 -0.755737 0.066186 +TCTTC 0.074182 -0.001792 -1.748986 0.279344 0.191743 0.352240 1.357774 -1.210008 -0.080105 0.755427 0.568400 -0.220309 +GTAC -1.048434 -1.014694 0.097925 1.292217 0.023975 0.831432 -0.227499 -0.068564 0.348666 0.740496 0.236080 -0.125763 +CCAAA 0.842890 -1.289854 -0.994883 0.819495 -0.432902 -0.600272 0.565784 0.187929 0.248599 0.589536 1.462876 0.168162 +ATTAA 0.462453 -1.063785 -0.588194 1.582946 0.515583 -0.033168 1.078511 -0.023250 -0.001061 0.893977 -0.619239 0.078944 +GATTT -0.263216 -0.302911 -0.922737 1.130490 0.003203 0.254745 0.922782 -0.421772 -0.729016 -0.358027 -1.279564 0.244268 +TAATA 0.164160 -0.304984 -0.501941 2.298813 0.365001 -0.614547 0.829775 -0.142645 0.317812 0.968663 -0.363425 -0.192146 +TCAAT 0.686893 -0.756511 -0.990065 0.937929 0.666847 -0.157991 1.298519 -0.933851 0.042543 0.392445 0.231667 0.692941 +CTCAG -0.299519 -0.161187 -1.360818 0.113757 -0.284248 -0.239429 0.146101 -1.273965 -1.391124 0.071967 0.918090 -0.038538 +CTTTA -0.263544 -0.158155 -1.402183 1.168698 -0.071651 1.018556 0.483061 -0.074421 0.122325 0.869810 -0.180671 -0.846332 +TCCTG -0.662870 -0.080720 -0.970282 0.632898 0.195650 0.639790 0.888273 -0.528024 0.058907 -0.741974 1.558330 -0.545035 +AACAG -0.187989 -1.685076 -0.008406 1.159696 -0.823211 -0.515535 -0.131365 -0.371504 -0.578249 0.774402 -0.054789 0.091060 +TCCCA -0.017235 -0.218591 -1.356744 0.874862 -0.270837 -0.236673 0.190262 -0.220662 0.226341 0.249155 1.273337 0.965717 +CTCCT -0.129233 0.218916 -1.543113 0.780043 0.107313 0.728339 0.426080 -0.664725 -0.140304 -0.379835 1.271895 -0.967544 +TGCAT -0.114883 -0.580916 -0.712527 0.990930 0.282906 0.292884 0.256058 -1.550486 0.996659 -0.935636 -0.187094 0.461879 +CATCT 0.544472 0.012244 -1.148882 0.865533 0.197384 0.304692 0.472067 -1.859375 0.302692 0.246534 0.682107 0.350612 +CGAAT 0.400858 -0.818046 -0.567614 1.485425 0.089367 -0.722254 0.694200 -0.332530 -0.654239 -0.703226 0.431098 -0.114480 +ATTAT 0.131546 -0.533521 -0.686966 2.077908 1.142707 0.171792 0.722082 -0.693956 0.328827 0.480375 -1.043534 0.371570 +TTGTA -0.832615 -0.174488 -0.417763 1.611693 0.089143 0.499235 1.187992 0.096859 0.620997 0.217447 -0.374262 0.104276 +TATGT -0.863087 -0.110003 0.016169 2.005198 0.397503 0.366202 0.911490 -0.461962 1.008437 0.160434 -0.332131 0.278960 +TACAT -0.172514 -1.070629 -0.855200 1.498211 0.675840 0.462816 -0.105229 -0.764845 0.898425 0.620050 -0.588346 0.452497 +CTGTT -0.835629 -0.157180 -0.556653 0.736071 0.241891 1.252856 1.240515 -0.859871 0.442495 0.017281 0.545346 -0.144044 +ATCAA 1.127409 -1.156766 -0.750683 1.001370 0.179423 -0.698920 0.944307 -0.772995 -0.274582 0.277100 0.125973 0.498574 +CTCTT -0.030147 0.143971 -1.505457 0.457118 -0.221173 1.089561 1.049109 -1.082022 -0.225759 0.261020 0.443627 -0.805347 +GTAAT -0.385143 -0.554168 0.200995 1.880889 0.117856 -0.145340 1.291279 -0.078653 0.438267 0.184136 0.067694 0.088544 +AATCT 0.833643 0.122820 -0.366941 1.179505 0.019709 -0.313969 1.305217 -1.040201 -0.271143 0.423047 0.511599 -0.379398 +CACTG -0.094607 -1.334821 -0.181400 0.595567 -0.196129 0.898823 -0.203124 -1.374846 0.465656 -0.358308 0.810745 -0.547641 +CAATT 0.695409 -1.047048 -1.161194 0.936201 0.157748 0.241588 0.969754 -0.457923 0.109796 0.430410 -0.001709 0.913248 +CCACT 0.185943 -0.819799 -1.456253 0.672813 -0.088521 0.947996 -0.258267 -0.650946 0.266442 -0.023427 0.980129 -0.300007 +TATAA 0.330332 -0.451945 -0.487960 2.315979 0.151519 -0.359470 0.891479 -0.135798 0.575207 0.855119 -0.663356 -0.401496 +AAGTG -0.823947 -1.001260 0.620183 1.075782 -0.946547 -0.303996 1.345228 -0.199433 0.001186 0.120304 0.427201 -0.249012 +AAATC 1.209163 -0.511634 -0.743256 1.123754 -0.183435 -0.740957 1.408979 -0.525310 -0.279625 0.489417 0.713605 0.213773 +TTGAT -0.196830 0.204122 -1.031837 1.712691 0.184474 0.496914 1.341022 -0.668818 0.113596 -0.849053 -0.771278 0.398478 +TTAAT 0.062836 -0.292322 -0.624808 1.673266 0.077115 0.293478 1.569905 -0.214135 0.470134 0.420369 -0.717031 0.054534 +TTCG -0.261991 -0.039107 -1.610487 0.740882 -0.048272 0.183553 0.579124 -0.494880 -0.486413 -0.226475 0.048199 0.308688 +AACTT 0.711932 -1.171879 -1.037771 0.637769 -0.583423 0.850641 0.806797 -0.056897 -0.110219 0.618779 -0.307743 -0.950124 +CAGCA -0.187221 -1.314051 -0.691878 0.294692 -0.885702 -0.703813 -0.453473 -1.660249 -0.025324 0.257773 0.344910 0.048119 +TGGTG -1.486247 -0.958548 0.125404 1.074824 0.022341 0.563495 0.788959 -0.379784 0.063917 -1.103265 -0.166634 0.034232 +TCAGA -0.061485 -0.147811 -0.788991 0.646180 -0.224442 -0.751184 0.429391 -1.199651 -1.371865 0.371999 0.306645 0.543552 +TCTAT -0.183047 0.402214 -1.344674 1.529749 0.822947 0.267097 0.959524 -1.021770 0.189920 0.573258 0.171319 -0.290402 +GAGAG -0.681157 -0.810393 -0.180309 1.443415 -1.116898 -0.750601 0.300872 -0.731901 -1.729689 -0.701317 -0.430664 -0.181239 +TTGGA -0.510397 -1.023430 -0.721291 0.780940 0.168135 0.195746 0.967499 -0.022339 -0.466190 -0.811160 -0.845198 -0.008795 +ATATC 0.640291 0.132572 -0.841082 1.690952 0.551113 -0.534768 0.313818 -0.871627 -0.099601 0.412877 -0.069850 0.057033 +GCATT -0.320276 -0.753905 -1.015336 0.454236 0.286696 0.144427 0.376731 -1.226476 0.649607 -0.572638 -0.490518 0.421513 +TTCAC 0.190869 -0.948439 -1.386603 0.293956 -0.166199 0.884693 0.082529 -1.225838 0.114943 0.722694 0.159388 0.329336 +CAATG 0.466513 -1.353911 -0.068910 1.070559 0.060662 -0.416130 0.576240 -0.675348 0.523132 -0.651181 0.442532 0.468592 +TGCTT -0.398594 -0.164598 -1.108935 0.574991 -0.058427 0.845654 0.813652 -0.796275 0.477839 -0.707764 -0.110481 -1.100978 +AGATT -0.095050 -0.229007 -1.019596 1.190181 -0.015856 -0.237243 0.630249 -0.537013 -0.913224 0.157721 -1.175706 0.368506 +CTGGG -1.131017 -0.948070 -0.693078 0.440209 0.645859 0.310828 0.061984 -0.542265 -0.524911 -1.133117 0.669629 -0.806858 +CAGTG -1.364831 -0.944521 0.126043 0.447265 -1.118873 -0.108832 0.320715 -1.102192 0.008807 -0.244353 0.561393 0.480450 +ATGTA -0.354422 -0.810362 0.282132 2.210511 0.238462 -0.229774 0.896153 -0.114570 0.738213 0.211046 0.021467 0.177717 +ATACA 0.320631 -1.505557 -0.345183 1.757530 0.451357 -0.335618 -0.480285 -0.576168 0.092259 0.872377 -0.389696 0.348066 +ACTGG -0.495855 -1.594800 -0.185613 0.837686 0.333540 0.592847 0.066001 -0.116382 -0.431501 -0.692492 0.188714 -0.984136 +GACTC 0.419891 -1.004505 -0.727904 0.859096 -0.021650 0.200146 0.176166 -0.622073 -1.236652 -0.505115 0.557401 -0.656038 +ATGGT -1.159047 -0.673882 -0.069760 1.081394 0.767977 -0.263339 0.841100 -0.396729 0.154701 -0.495806 -0.234229 0.378438 +CATCA 0.537628 -0.951911 -0.939574 0.624119 0.057413 -0.481394 0.045651 -1.646529 0.003868 0.111081 0.322357 1.072156 +TATTA -0.288930 -0.321904 -0.950778 1.998231 0.405180 0.138567 0.592234 -0.281392 0.555345 0.888889 -1.158136 -0.232904 +ACATA 0.190094 -1.196272 -0.396670 1.691372 0.314599 -0.265208 -0.651022 -0.680145 0.231929 0.776359 -0.543943 0.247436 +GTGTT -1.453635 -0.605372 -0.147330 0.911004 -0.176124 0.914653 1.588904 -0.433391 0.452938 0.077131 0.274834 0.186754 +GATTC 0.002630 0.077049 -1.370018 1.021872 0.238322 0.068140 0.925634 -0.816723 -0.591542 -0.180586 -0.272353 0.579415 +AGAGT -0.975396 -0.268999 -0.165581 1.120901 -1.108333 -0.255543 0.700889 -0.472752 -1.259131 0.469459 -0.033427 0.245901 +GGAGA -0.646798 -1.171236 -0.321248 1.231295 -0.437863 -0.539503 0.193768 -0.176361 -1.478546 -0.824241 -0.571997 -0.266548 +TCCTC -0.040365 0.187446 -1.845760 0.638653 0.157823 0.239806 0.775969 -0.952407 -0.136283 0.208957 1.699502 0.014874 +CACAA 0.838920 -1.899632 -0.558378 0.706847 -0.282921 -0.138062 -0.075120 -0.864041 0.079145 0.567004 0.580695 0.319792 +AGAGG -1.004022 -1.157707 -0.521893 0.889753 -0.743424 -0.981202 0.125639 -0.382545 -1.615595 -0.360407 -0.091799 -0.082579 +TACAA 0.495853 -1.424046 -0.468025 1.428845 0.204044 -0.260550 0.093661 -0.260568 0.414892 1.242831 -0.039174 -0.137818 +TATCT 0.082510 0.473969 -0.665097 1.438926 0.599979 0.087891 0.904058 -1.266498 0.274352 0.630394 -0.020031 -0.482475 +CAGTT -1.002454 -0.554393 -0.705473 0.385580 -1.081047 0.512610 0.658912 -0.595647 -0.229356 0.631334 -0.055400 0.690460 +CTCG -0.092332 -0.676866 -0.775167 0.908227 -0.145199 -0.006596 0.216468 -0.541561 -0.971261 -0.810869 0.666282 -0.565651 +ATCG 0.265832 -0.586611 -0.730375 1.268497 0.070113 -0.808930 0.568925 -0.520752 -0.597815 -0.670428 0.291753 0.096057 +TCCAG -0.820164 -0.220049 -1.280055 0.570250 -0.437038 -0.046652 0.290728 -0.420430 -0.631162 0.439935 0.873175 0.797120 +TGCCT -0.330336 0.076112 -1.028822 0.959278 0.149511 0.313389 0.327179 -0.617383 0.765618 -1.039728 1.207857 -0.790035 +CACCA 0.184584 -1.477030 -1.242453 0.824631 -0.222713 -0.134226 -0.792183 -0.738846 0.555596 0.209619 1.066878 0.575906 +AGTGT -1.357635 -0.626700 0.348602 1.040022 -0.700424 0.077018 1.131142 -0.375594 0.071460 0.125105 0.363551 0.356127 +TAAAG -0.268784 -0.677161 -0.236208 1.157411 -0.320722 -0.655952 1.112139 -0.025486 -0.491618 1.066192 -0.226999 -0.626086 +CAGGA -0.375803 -1.204856 -1.089808 0.228660 -0.541577 -0.723783 -0.041481 -0.386009 -1.049340 -0.146040 -0.078274 0.179630 +GTGTG -1.657490 -0.857012 0.458870 1.090776 -0.295014 0.331246 1.386274 -0.719839 0.593039 -0.658533 0.510010 0.050802 +TGTCT -0.836288 0.190844 -0.291174 0.815340 0.152481 0.802857 1.481641 -1.359482 0.133653 -0.208067 0.725861 -0.115090 +CACTC 0.446652 -0.909776 -1.338187 0.392591 -0.382737 0.806690 -0.188507 -1.414662 -0.115407 0.406180 1.128325 -0.176949 +GCAAA 0.497033 -1.551610 -0.009224 0.480329 -0.351623 -0.792403 0.969146 -0.895673 0.108271 -0.037838 0.384048 -0.529948 +ATGTT -0.437112 -0.375783 -0.191945 1.172962 0.291980 0.319017 1.507790 -0.467350 0.593768 -0.065112 -0.079562 0.541061 +CCCAG -0.783740 -0.781873 -1.221364 0.649547 -0.693869 -0.724881 -0.412458 -0.156670 -0.344209 -0.060382 1.524391 0.146261 +TTCAG -0.768544 -0.389870 -1.464724 -0.014130 -0.423067 -0.115467 0.601550 -0.918516 -1.081104 0.487391 -0.224971 0.595855 +CCACA 0.041177 -1.395840 -1.108472 0.718255 -0.380070 -0.147760 -0.731147 -0.695798 0.430562 0.417748 0.919231 0.623530 +ACATG 0.058317 -1.572747 0.211446 1.394593 0.209446 0.040197 -0.274797 -0.659009 0.739898 -0.408237 0.021567 0.616248 +CTGAA 0.578828 -0.440478 -0.158773 0.944228 -0.437224 -0.097138 1.190498 -0.102410 -0.494202 -0.644278 0.946209 -0.885705 +TCATC 0.377636 -0.107214 -1.428554 0.827972 0.598927 -0.155229 0.794855 -1.710242 0.009713 0.403692 0.547319 0.858364 +TGAAG -0.157820 -0.520816 0.154898 1.137943 -0.776930 -0.399467 1.280309 -0.145351 -0.687987 -0.511515 0.201502 -0.107145 +AGGGA -0.600289 -1.399606 -0.584697 0.828285 -0.159057 -0.856935 0.366401 0.169797 -1.115574 -0.415218 -0.293583 -0.400385 +ATCTG 0.141085 0.173954 -0.337471 0.991021 0.531318 -0.144582 0.647700 -1.335039 -0.075661 -0.439254 0.480247 -0.187251 +TCTGA 0.200607 0.392869 -0.447123 0.922861 0.028166 0.257496 1.150787 -0.851861 -0.821821 -0.562327 0.524603 -0.490402 +GTGAA -0.556210 -0.929099 0.502136 1.193275 -0.643005 -0.238960 1.453362 -0.039153 -0.265628 -0.546460 0.284566 -0.058153 +TGTCA -0.655134 -0.674770 -0.020283 0.609932 0.031137 0.360569 0.817447 -1.404685 0.111903 -0.085521 0.544578 1.038311 +CACTT 0.110432 -1.141750 -1.274593 0.194220 -0.606176 1.083551 -0.034300 -0.851158 0.224811 0.423543 -0.150942 -0.516920 +GAACA 0.317582 -1.955646 -0.044685 1.194566 -0.644557 -0.227748 0.051025 -0.262748 -0.569638 -0.042621 -0.218144 0.219014 +CCAGG -0.967308 -1.150254 -1.406335 0.467644 -0.152656 -0.782736 -0.460593 0.094547 -0.525167 -0.319791 1.015815 0.172970 +CTTCC -0.074971 -0.081514 -1.942517 0.515898 -0.050574 0.945920 0.442420 -0.386433 -0.068643 0.149277 1.132501 -0.413623 +TGAGG -0.956262 -0.434839 -0.395260 0.913990 -0.443114 -0.136740 0.296564 -0.446594 -0.923424 -1.417938 0.077072 -0.560186 +TCCAA 0.627791 -0.772467 -1.117653 0.633059 -0.184579 -0.075520 1.005941 -0.113402 0.135351 0.544377 1.291286 0.453387 +CTGCT -0.396765 -0.220683 -0.925685 0.565399 0.239069 0.726449 0.444156 -1.317995 0.216252 -0.758816 0.947768 -1.291484 +TGGAT -0.446592 -0.510368 -0.731702 1.277726 0.741814 -0.250870 0.525187 -0.405515 -0.178173 -1.114339 -0.673362 -0.007794 +ATCAT 0.661182 -0.335031 -1.147845 1.213422 0.692755 -0.559900 0.509583 -1.190585 0.125535 -0.305555 -0.140702 0.907162 +CCTCA 0.250435 -0.426366 -1.562664 0.265188 -0.054708 -0.211965 0.081661 -0.996907 -0.329092 0.198190 1.386081 0.111156 +CCTCC -0.155765 -0.240145 -2.134054 0.676799 -0.283623 0.074545 0.216172 -0.330309 0.174560 -0.219558 2.080822 -0.217126 +AAGTT -0.527354 -0.651258 -0.368995 0.637354 -0.833307 0.094304 1.804994 0.124726 -0.552662 0.819374 0.086518 -0.018969 +AACAC 0.545158 -2.002093 -0.399720 0.755748 -0.567961 0.206988 -0.093251 -0.403489 0.063259 0.661474 0.441104 -0.202233 +GTGAG -1.231960 -0.332128 0.171289 1.012340 -1.030687 -0.314772 0.622172 -0.724973 -0.820003 -0.935870 0.314208 -0.090020 +TGATG -0.559679 -0.152939 0.110520 1.616820 0.085435 0.275958 0.941295 -0.808127 0.137055 -1.282550 -0.172624 0.138389 +TTTAG -1.077262 -0.183496 -1.259526 0.954160 -0.354967 0.255017 0.653975 -0.108892 -0.387011 0.729805 -0.971115 -0.228245 +GCCTG -0.990975 -0.497656 -0.385637 0.807227 -0.161864 -0.353383 0.250886 -0.618770 -0.065752 -1.358573 1.505136 -1.011761 +CAGAT -0.044974 -0.488021 -0.488700 1.347124 -0.397645 -0.688683 -0.226819 -1.042333 -0.557510 -0.016003 -0.611502 0.613600 +GATAT -0.164380 0.006449 -0.325073 1.815866 0.453598 -0.504603 0.435024 -0.598059 -0.253954 -0.247599 -0.825173 0.022485 +GAAGG -0.747082 -1.542126 -0.480971 0.864797 -0.323734 -0.890756 0.801310 0.174524 -1.254315 -0.373638 -0.313779 -0.455908 +CATGT -0.473421 -0.813871 -0.015182 1.141974 0.005233 0.371989 0.469514 -0.922070 1.014312 -0.216418 0.428039 1.226219 +GGGAA -0.609263 -1.875929 -0.199466 0.829292 -0.188483 -0.725825 0.832477 0.436285 -0.584919 -0.679014 0.026147 -0.352325 +TCCCT -0.483159 0.170571 -1.842693 0.756428 -0.105966 0.443041 0.725632 -0.220684 0.273287 0.035225 1.356799 -0.368817 +TTGTG -0.857088 -0.299169 -0.300438 1.019781 -0.196998 0.806971 1.324313 -0.465028 0.529975 -0.734082 -0.121063 0.125134 +CATTA 0.043359 -0.762588 -1.314779 1.232631 -0.001967 0.084386 0.121982 -0.612741 0.573910 0.915306 -0.478522 0.690820 +AAGCA 0.270158 -1.229761 -0.234247 0.608360 -0.817964 -1.032399 0.361202 -0.951289 -0.229086 0.334271 0.189445 -0.264589 +TATTG -0.365531 -0.251327 -0.559665 1.642158 0.290453 0.292505 0.988355 -0.245618 0.540357 -0.373933 -0.964312 -0.076650 +TTATG -0.486955 -0.292585 -0.342772 1.547322 0.464505 0.478135 0.821706 -0.431237 0.727113 -0.303415 -0.824498 -0.108489 +CCTGT -1.079149 -0.016839 -0.648845 1.095014 0.031919 0.749717 0.677836 -0.380362 0.824139 -0.342979 1.727236 -0.175612 +TCACT -0.010528 -0.713812 -0.959837 0.254155 0.200091 0.965794 0.254483 -1.823144 -0.007202 0.748702 0.521228 -0.281293 +AGCAG -0.830952 -1.025402 -0.407072 0.588030 -0.984499 -1.014839 -0.322795 -1.099673 -0.987000 0.081594 0.239632 -0.056722 +GGAAG -0.711204 -1.365165 -0.246617 0.932438 -0.293775 -0.874149 0.795669 0.032581 -1.153259 -0.446791 0.038922 -0.558512 +CAACA 0.640805 -1.916601 -0.793969 0.584843 -0.457474 -0.098042 -0.112088 -0.703955 0.187337 0.465925 0.494173 0.633496 +GGTGG -1.797605 -1.521150 -0.154310 0.612712 0.166385 -0.045204 0.599302 -0.233734 -0.414252 -1.108823 -0.041624 -0.211670 +CATTG -0.158565 -0.826040 -1.022755 0.830394 -0.098909 0.436653 0.486456 -0.738876 0.745836 -0.906436 -0.358896 0.752568 +ACTCA 0.842007 -1.102173 -0.850914 0.489941 -0.288227 0.286735 0.023643 -1.093745 -0.779230 0.494193 0.516592 -0.392053 +GAGAT -0.183454 -0.071099 -0.576797 1.356245 -0.409268 -0.568086 0.338296 -0.794419 -1.018227 -0.744406 -0.724277 0.272564 +GCTTT -0.670858 -0.285680 -1.273519 0.306132 -0.113700 0.546025 0.844206 -0.543324 0.034084 -0.169730 -0.452558 -0.926259 +GGGAG -1.236659 -1.128954 -0.458663 0.835898 -0.338197 -0.588207 0.271505 -0.249142 -1.255526 -1.018204 -0.338065 -0.480790 +TCTGC -0.179785 -0.130446 -0.827255 0.356472 0.341479 0.320810 0.699426 -1.679251 0.233870 -0.499814 0.892407 -0.866433 +TGCTG -0.617005 -0.378330 -0.323496 0.796541 0.142545 0.538259 0.576237 -1.105086 0.174376 -1.350924 0.482053 -1.029017 +TGTAT -0.816006 -0.056447 -0.105878 1.993886 0.472876 0.606073 0.653143 -0.487005 0.865541 -0.033916 -0.221567 0.252854 +CATAT 0.001473 -0.336997 -0.816182 1.534744 0.569774 -0.410614 -0.214204 -1.005262 0.677803 0.177239 -0.472513 0.483052 +CCCTT -0.262555 -0.090458 -2.014735 0.749346 -0.310771 0.619228 0.423857 0.096832 0.657958 0.125560 0.903627 -0.424653 +AGGAG -0.768375 -0.997928 -0.621082 0.885579 -0.736692 -0.893582 0.230130 -0.255660 -1.631490 -0.427626 -0.209751 0.000663 +ACAAT 0.903153 -1.363893 -0.184748 1.368677 0.193232 -0.023577 0.119987 -0.730575 0.354911 0.356597 0.008924 0.429295 +ATTGT -0.488051 -0.375940 -0.360031 1.417893 0.526798 0.549310 1.213053 -0.295687 0.512137 -0.250339 -0.241666 0.667179 +CTCCC -0.035895 -0.126948 -1.954792 0.693818 -0.307083 0.446860 -0.001102 -0.640000 0.066252 -0.235918 1.736822 -0.298432 +GCAAT 0.423080 -1.154795 -0.238281 0.899239 0.173742 -0.704556 0.763114 -0.983692 0.591530 -0.384271 0.140060 -0.186790 +ACTCT 0.422202 -0.345986 -0.756082 0.588903 -0.380305 1.042024 0.398156 -1.055069 -0.358397 0.547984 0.605763 -0.920338 +AACTG 0.392158 -1.419672 0.291486 0.879147 -0.227502 0.507500 0.595149 -0.469431 0.201930 -0.131647 0.551511 -1.290130 +TGGCA -0.492053 -1.518237 -0.334303 0.537301 0.132512 -0.438031 -0.030663 -0.917297 0.322783 -1.230824 0.015320 0.051677 +GGATT -0.631819 -0.753419 -0.946516 1.164607 0.548176 -0.080135 0.783821 -0.088446 -0.435961 -0.683840 -1.068516 -0.041460 +AACG -0.038935 -1.593294 -0.194817 0.842335 -0.553313 -0.312586 0.159785 -0.036224 -0.322005 -0.185953 0.354355 -0.257989 +TTTGC -0.153288 -0.675534 -1.257455 0.383777 -0.035144 0.739960 0.750379 -0.676043 0.754774 -0.771484 -0.425694 -0.393402 +ACTCC 0.316634 -0.613332 -1.532112 0.815432 -0.443029 0.868611 -0.291369 -0.708131 -0.025711 0.239909 1.288903 -0.343615 +TGTGG -1.539766 -1.019179 0.115298 0.804999 0.122294 0.397200 0.759147 -0.431686 0.138017 -1.081210 0.145793 -0.067643 +CCTGA 0.283083 -0.135901 -0.579129 1.384123 -0.458727 0.002735 0.038568 0.030649 -0.458321 -1.043368 1.187179 -0.600425 +AAGGG -0.862682 -1.832628 -0.425652 0.527330 -0.329683 -0.868889 0.775791 0.115711 -0.827142 -0.286953 -0.133036 -0.457790 +TGAGC -0.517607 -0.079337 -0.311363 0.782664 -0.829898 -0.120985 0.161527 -0.968960 -0.548953 -1.046653 0.555002 -0.464021 +AGTAA -0.665178 -0.715899 0.033902 1.613030 -0.480745 -0.396256 0.957530 0.111982 -0.311117 1.192455 -0.128437 0.051433 +CACG -0.347301 -1.214000 -0.600078 0.432835 -0.553922 0.129583 -0.574201 -0.903746 -0.107587 -0.276450 0.556728 0.127326 +AGTGA -0.742525 -0.659339 0.451950 1.465472 -1.210938 -0.152797 0.758470 -0.321331 -0.762310 -0.395022 0.134680 0.272840 +TTGCT -0.375027 0.003870 -1.147793 0.640117 0.175259 0.655398 1.068373 -0.941184 0.301691 -0.657383 -0.346684 -1.104603 +AAAGC 0.187736 -1.189493 -0.550271 0.438501 -0.577227 -1.050775 0.763230 -0.296275 -0.287950 0.589234 0.603485 -0.895029 +GAGTT -1.039205 -0.351389 -0.438886 0.761446 -0.742613 0.204229 1.062351 -0.145199 -0.886917 0.101483 -0.364821 0.148574 +GAGGC -0.938811 -0.796875 -0.747981 0.637172 -0.669577 -0.650229 -0.100186 -0.654043 -0.906433 -1.321706 0.205282 -0.717079 +CTAAA 0.809155 -0.508981 -0.382376 1.461741 -0.147914 -0.041805 0.795083 -0.185760 -0.122707 1.087956 0.520797 -1.143177 +ACTTC 0.354617 -0.826216 -1.335707 0.248606 -0.422236 0.888964 0.337248 -0.648505 -0.173595 0.682538 0.258522 -0.479032 +CCCCA 0.246449 -0.846711 -1.381328 1.101476 -0.737914 -0.285172 -0.295657 -0.175114 0.323622 0.010208 1.830877 0.264265 +AGCCT -0.452268 -0.072926 -1.278744 0.664870 -0.291818 -0.599538 -0.155267 -0.290209 -0.645931 -0.383519 1.193381 -0.817803 +CCACC 0.021151 -1.047060 -1.574750 1.032549 -0.356306 0.010134 -0.767022 -0.420916 0.444879 0.063928 1.916693 0.011540 +ACTGC 0.321283 -1.183609 -0.269192 0.642569 -0.300738 0.518280 -0.142468 -1.232139 0.532453 -0.519492 0.716655 -0.995656 +CCTGG -1.021472 -0.665763 -0.883852 0.589204 0.432212 0.159945 -0.058018 -0.057059 -0.083541 -1.020949 1.256593 -0.641055 +GGCTG -1.364688 -0.725720 -0.491062 0.524341 0.269128 0.010906 0.366569 -0.847849 -0.480332 -1.315866 0.278851 -1.101187 +TCTCC -0.114304 0.040905 -1.742583 0.443744 -0.065593 0.437406 0.781197 -0.917468 -0.020669 0.271061 1.483808 -0.002947 +TGACA 0.038507 -1.144303 0.182181 1.255875 -0.291979 0.564234 -0.291672 -0.813421 -0.196863 -0.503617 -0.024039 0.412245 +CCTTC -0.300308 0.046028 -2.078812 0.393701 0.013386 0.626217 0.701456 -0.548548 0.114280 0.241922 1.305479 -0.388763 +CAAAC 1.035283 -1.742560 -0.533630 0.848076 -0.614856 -0.051710 0.281481 -0.488528 0.095075 0.759738 0.852001 0.033602 +TATCA 0.072649 -0.184428 -0.935756 1.244581 0.457495 -0.620097 0.322682 -1.154243 -0.075978 0.863361 -0.353577 0.633101 +ATATG -0.192806 -0.472539 0.059937 2.115204 0.669979 -0.395947 0.342045 -0.475949 0.443522 -0.542268 -0.629475 -0.024939 +CTCAC 0.257071 -0.783601 -1.189068 0.204174 -0.157226 0.527715 -0.419595 -1.545697 -0.441157 0.157360 0.758859 -0.171483 +ACCAT 0.318809 -0.740375 -0.788029 1.519254 0.068107 0.171141 -0.442967 -0.317114 0.659257 0.135183 0.531113 0.810533 +GTGGG -1.881860 -1.359694 -0.008438 0.677506 -0.034995 -0.192022 0.750734 -0.168222 -0.455089 -0.823061 0.105925 -0.266037 +GTTCT -0.966596 0.108025 -0.784910 0.460939 0.042168 0.748214 1.561354 -0.908771 -0.377880 0.331352 0.514172 -0.250991 +AAACC 0.791267 -1.378205 -0.583680 1.317475 -0.674045 -0.558242 0.230269 0.519257 0.260067 0.319350 1.229977 -0.206380 +ATCCA 0.556789 -0.401283 -1.199828 1.285094 0.067088 -0.416184 0.092248 -0.394353 0.072919 0.068232 0.699892 0.929440 +TGTTG -0.855917 -0.423318 -0.173156 1.166918 -0.150600 0.948694 1.615487 -0.244925 0.484562 -0.997788 -0.085278 0.201901 +GAGGA -0.512066 -1.056166 -0.399171 1.105314 -0.478426 -0.893402 0.301863 -0.193629 -1.299121 -0.779783 -0.367562 -0.519487 +CTGCC -0.366944 -0.281863 -1.094149 0.652906 0.038677 0.228962 0.207994 -0.977314 0.446002 -0.921273 1.521215 -0.833628 +ATGCT 0.119924 -0.150349 -0.419604 0.936510 0.428049 -0.205290 0.568374 -1.042999 0.406246 -0.871172 -0.081613 -0.840566 +GTAAA -0.432669 -0.883789 0.335147 1.594679 -0.157688 -0.147513 1.249757 0.231403 0.290675 0.822020 0.129598 -0.145197 +AGATG -0.284027 -0.578959 0.129028 1.447884 -0.289355 -0.771361 0.357543 -0.640194 -0.569081 -0.729565 -0.347079 0.422917 +GGAGG -1.383200 -1.381891 -0.628971 0.667001 -0.179991 -0.551747 0.220203 -0.338769 -1.212006 -1.203036 -0.060879 -0.479051 +ATCTC 0.697286 0.009709 -1.268092 0.705490 0.154684 0.084522 0.681457 -1.410540 -0.170692 0.200699 0.747586 0.304032 +TGAAC 0.523105 -0.983705 -0.076356 1.180833 -0.839274 0.676219 0.495522 0.056001 -0.043166 -0.576626 0.261829 -0.201622 +CAGGC -0.834924 -1.267971 -1.070655 0.155925 -0.532470 -0.681534 -0.566423 -1.012042 -0.307799 -0.554036 0.755874 -0.271412 +TCAGG -0.738166 -0.797144 -1.187020 -0.123585 0.227223 -0.471341 0.297844 -0.868171 -1.200119 0.203857 0.363438 0.107755 +TTACT -0.321726 -0.590382 -0.968968 1.384226 0.213841 1.281198 0.166139 -0.417476 0.488665 0.877506 -0.485343 -0.751649 +AACTA 0.661861 -0.930582 -0.300865 1.555640 -0.211798 -0.034901 0.292292 -0.154134 -0.076606 0.908371 0.049226 -1.259638 +AGGCC -0.743697 -0.797297 -1.083084 0.294480 -0.475575 -0.748102 -0.174330 -0.228000 -0.613530 -0.828799 0.828889 -0.358519 +AAGTA -0.676040 -0.907018 0.034131 1.519491 -0.568353 -0.508253 0.908795 0.310049 -0.167802 1.176340 0.022125 -0.040240 +TCTAA 0.495364 0.069323 -0.744578 1.164859 0.180303 -0.064298 1.215756 -0.696567 -0.112200 1.057423 0.371999 -0.845976 +CTCAT 0.392984 -0.061759 -1.372761 0.694820 0.550734 0.283620 0.387765 -1.463106 0.170701 -0.073552 0.418879 0.352510 +ACACT 0.357931 -1.463284 -0.382979 0.802026 -0.306136 0.944490 -0.426376 -1.013699 0.261708 0.534221 0.397977 -0.567278 +GCAGT -1.422761 -0.738863 0.169974 0.444263 -0.781776 -0.122687 0.435122 -0.997597 -0.118946 -0.061930 0.216061 0.047700 +TTCCC -0.336713 -0.027518 -1.907007 0.711676 -0.348678 0.542468 0.636621 -0.138756 0.523119 0.195841 0.927624 0.312647 +TCTGG -0.733607 -0.241881 -0.808750 0.224431 0.836572 0.369948 0.878930 -0.752242 -0.634627 -0.669562 0.563716 -0.695955 +CGAG -0.591739 -0.206045 -0.958735 0.790950 -0.619410 -0.199966 0.216587 -0.499697 -0.920658 -0.350381 0.591127 0.223228 +AGCAA 0.476585 -1.430277 -0.330766 0.586078 -0.515625 -0.981104 0.345372 -0.754981 -0.576681 0.186422 0.310310 -0.330869 +AACTC 1.053706 -0.841442 -0.741849 0.625466 -0.400109 0.393003 0.515492 -0.673108 -0.265099 0.460676 0.830102 -0.587542 +TGTTC -0.809818 -0.048163 -0.659656 0.564694 0.063578 0.785043 1.403610 -0.954811 0.337952 -0.067788 0.476732 0.510828 +ACTGT -0.483134 -0.904065 0.374548 1.116035 -0.274601 1.174320 0.380879 -0.561754 0.415545 0.017838 0.610672 -0.377465 +CATAA 0.682685 -0.936776 -0.438980 1.387299 -0.072189 -0.420981 0.245407 -0.720917 0.590729 0.784770 -0.101221 0.257484 +TGTAG -1.443931 -0.153696 0.092161 1.513698 -0.230616 0.084040 0.512976 -0.160609 0.024614 -0.048177 -0.254339 -0.137283 +TGCCA -0.020712 -0.624259 -0.644743 0.723408 -0.096572 -0.147530 0.083191 -0.690368 0.699050 -0.862321 0.779491 0.221830 +GACAG -0.501337 -1.342903 -0.161859 1.008883 -0.819355 -0.378196 -0.413743 -0.633025 -1.143112 -0.037782 -0.082136 -0.093706 +AGGCA -0.471688 -1.427964 -0.628908 0.470344 -0.343368 -1.054302 -0.319219 -0.791997 -0.455318 -0.635778 0.077079 -0.051605 +CTAGA -0.022230 0.084027 -0.686641 1.482612 -0.517201 -0.341566 -0.202796 -0.309494 -0.957514 0.503170 0.002180 -0.729084 +CCTGC -0.562335 -0.403857 -1.313960 0.647052 -0.018792 0.342227 0.030300 -0.877162 0.507581 -1.057207 1.354322 -0.992810 +GGAAC -0.058534 -1.928167 -0.220516 0.943463 -0.343695 -0.176780 0.003988 0.103629 -0.443060 -0.338051 0.232017 -0.445086 +TAACA 0.104928 -1.406340 -0.019160 1.650714 -0.254474 0.033965 0.319422 -0.469291 0.337051 1.091482 -0.413681 0.310307 +GCTGG -1.215987 -0.879760 -0.444995 0.474788 0.489703 -0.086562 0.370734 -0.727743 -0.279926 -1.160508 0.217478 -1.071828 +TACTT -0.302900 -0.619471 -1.038790 1.228098 0.180041 1.178425 0.228498 -0.170313 0.423456 0.764688 -0.515241 -0.839245 +GACAT -0.063158 -1.158880 -0.331821 1.132137 0.034700 0.159641 -0.310566 -0.696762 -0.097360 -0.324807 -0.605471 0.600693 +GAAGT -0.821083 -0.668715 0.095627 0.980845 -0.819591 -0.409422 1.286049 0.001923 -0.765868 0.134163 0.052132 0.111912 +GATTG -0.443296 -0.485753 -0.600378 1.211242 0.032439 0.155454 0.883308 -0.421882 -0.310719 -1.155643 -0.819664 -0.040012 +GACTG -0.353164 -1.331085 0.104046 1.184157 0.031326 0.437968 0.170918 -0.496593 -0.476108 -0.832960 0.243149 -1.080190 +GTTTA -1.071237 -0.527702 -0.416102 1.208432 0.011646 0.569881 1.011807 -0.023447 0.003974 0.631271 -0.709496 0.050783 +AATCC 0.760618 -0.167629 -1.053388 1.326700 -0.078353 -0.565976 0.684455 -0.204669 0.122353 0.188640 1.087666 0.545535 +CTTGA 0.164737 -0.223220 -0.643712 0.948657 -0.546037 0.778854 0.658562 -0.302875 -0.754258 -0.785954 -0.081143 -0.613090 +GTTGA -0.440432 -0.253372 -0.095567 1.271533 -0.568670 0.497904 1.462830 -0.165886 -0.575910 -0.792243 -0.138989 0.177627 +ATTAC -0.023543 -0.997469 -0.906053 1.450888 0.789675 0.554498 -0.214483 -0.362536 0.369107 0.696036 -0.314051 0.257299 +TCATG -0.201010 -0.429277 -0.444497 0.785668 0.679449 -0.103526 0.684698 -1.237917 0.290891 -0.586836 0.191284 0.941791 +ACTGA 0.570442 -0.758553 0.091132 1.368878 -0.531718 0.554060 -0.018930 -0.575727 -0.442603 -0.470888 0.219734 -0.796711 +ACCTG -0.034076 -0.811163 -0.131277 1.094306 0.066205 0.326448 -0.145339 -0.160089 0.289338 -0.598715 1.236598 -0.746933 +GGTTT -1.432764 -0.861182 -0.862503 0.336248 0.280159 0.764453 1.148174 -0.208025 -0.357614 -0.009271 -0.537705 0.136068 +TAGTT -1.162088 0.102561 -0.674104 1.279525 -0.357872 0.304772 1.226066 -0.158314 -0.177328 0.777979 -0.571908 0.159599 +GCACA -0.198514 -1.784392 -0.236081 0.520575 -0.323182 -0.331263 -0.597030 -1.400865 0.201974 0.013615 0.452471 -0.063734 +TGTGC -0.970553 -0.582558 -0.115994 0.745967 -0.239783 0.663977 0.716873 -1.018935 0.869620 -1.084200 0.589643 -0.179229 +CAGCC -0.430205 -0.523047 -1.405582 0.443111 -0.619605 -0.789188 -0.321248 -0.960295 -0.156967 -0.248433 1.514123 -0.114202 +AGCTG -0.782279 -0.202830 -0.276462 0.804868 -0.243527 -0.252577 0.247736 -0.769701 -0.786243 -0.700792 0.355590 -1.035388 +GAGAC -0.193371 -0.963714 -0.385884 1.207993 -0.837524 0.112095 -0.644682 -0.348655 -1.122956 -0.556551 -0.166312 -0.230404 +CAAGT -0.430636 -0.939980 -0.106364 0.392547 -0.773662 -0.304647 0.921751 -0.449754 -0.262470 0.601056 0.931758 0.402138 +GATGG -0.891871 -0.963859 -0.083792 1.361213 0.315408 -0.546633 0.490527 -0.451035 -0.546931 -1.175353 -0.456766 0.114800 +ACGG -0.443767 -1.572051 -0.321411 0.825144 -0.371176 -0.214078 -0.201555 -0.083534 -0.355174 -0.561695 0.133633 -0.102536 +AACCT 0.445336 -0.771725 -0.597756 1.039688 -0.346976 0.243790 0.266226 0.377201 0.307191 0.180947 0.996240 -0.875333 +TGGCT -0.805849 -0.393295 -1.001068 0.357613 0.299201 0.533621 0.341183 -0.855756 -0.048046 -1.019951 0.042054 -0.904083 +ATACT 0.464425 -0.622728 -0.616788 1.644794 0.388753 0.464992 -0.253460 -0.395181 0.220137 0.589856 -0.276103 -0.773480 +TGTTA -0.885464 -0.537118 -0.020660 1.459402 -0.054311 0.885306 1.093520 -0.186071 0.700768 0.412658 -0.220993 0.046103 +ATTGG -0.488492 -0.856672 -0.771763 1.038255 0.680711 0.152298 0.750338 -0.144923 -0.318649 -0.843086 -0.700429 0.030773 +AGTCA -0.620158 -0.725113 -0.222881 0.527031 -0.233918 -0.471778 0.691716 -0.988872 -0.724334 0.685304 0.295017 0.797355 +AGCTT -0.419964 -0.242696 -1.224262 0.206032 -0.369293 0.018430 0.518822 -0.624854 -0.862979 0.121402 -0.364424 -1.096279 +CCTCT -0.011010 0.269441 -1.717209 0.643066 -0.058579 0.680195 0.392512 -0.852194 -0.107933 0.050629 1.494075 -0.768595 +GCCTC -0.411633 -0.360858 -1.394136 0.224028 -0.237690 -0.390657 0.258274 -0.739138 -0.373874 -0.581165 1.635242 -0.591204 +CCAAT 0.729267 -0.617044 -1.229706 1.097781 0.190161 -0.427941 0.396157 -0.084729 0.467003 -0.044180 0.838566 0.490220 +ACCTT 0.096063 -0.429227 -1.314254 0.913493 -0.355876 0.881595 0.058958 0.107464 0.375330 0.304490 0.437515 -0.437962 +CTCTC 0.219123 0.065298 -1.623072 0.436074 -0.068645 0.683080 0.632590 -1.495367 -0.391441 0.269994 1.327085 -0.606580 +GTGAT -0.900048 -0.008267 -0.029473 1.290955 0.190934 -0.021368 0.921841 -0.623125 -0.142322 -0.855803 -0.093087 0.282549 +TATGA 0.072328 -0.116767 -0.089976 2.062502 0.102205 -0.027598 0.582048 -0.348517 0.041284 -0.418202 -0.666577 -0.070968 +GGTGA -1.035265 -1.077481 0.229922 1.134791 -0.379390 0.077003 0.551316 -0.201588 -0.527933 -1.230446 -0.100846 0.045288 +CCATG -0.206197 -0.589486 -0.633296 1.090677 0.166954 -0.176390 -0.195082 -0.474633 0.687153 -1.033303 0.859089 0.803369 +CATGA 0.424121 -0.622599 -0.271694 1.234475 -0.279370 -0.191407 0.011006 -0.815450 0.085919 -0.921397 0.251962 0.670448 +ATCAC 0.679345 -0.818859 -0.926296 0.919859 0.152105 -0.175555 -0.538691 -1.305900 -0.292271 0.181464 0.116129 0.472920 +TATGG -0.928033 -0.557371 -0.256462 1.439700 0.797536 -0.236117 0.344832 -0.175796 0.357717 -0.459877 -0.606230 -0.343503 +TAGAG -0.964561 -0.028591 -0.471111 1.487843 -0.621130 -0.624709 0.239614 -0.352239 -1.065636 0.505534 -0.674235 -0.236980 +TGGGG -1.585668 -1.157918 -0.562987 0.565836 0.165101 0.187617 0.627890 -0.066280 -0.353719 -1.237724 -0.037176 -0.431190 +AGCAT -0.050195 -0.692387 -0.704220 0.729984 0.065762 -0.759022 -0.098651 -1.012179 -0.131166 0.002351 -0.487988 0.090712 +GTCCA -0.827315 -0.490449 -0.978194 0.644395 -0.247173 0.158692 0.503849 -0.480629 -0.050713 -0.038411 0.961416 0.995978 +GCAGA -0.365344 -0.993353 -0.223125 0.726044 -0.645313 -1.036556 -0.205089 -1.010568 -0.879741 -0.257756 0.313540 -0.293962 +CTGGT -1.424129 -0.549995 -0.487192 0.438863 0.506290 0.804050 0.456676 -0.567222 -0.045739 -0.417598 0.509953 -0.346889 +TGCTC -0.212786 -0.106992 -0.892442 0.326256 0.066675 0.368685 0.471233 -1.341567 0.045391 -0.810086 0.784973 -0.641072 +AACCA 0.553288 -1.410408 -0.561075 1.255144 -0.452465 -0.396769 -0.166602 0.147734 0.353555 0.348459 0.937287 0.105767 +GCTCC -0.419364 -0.180324 -1.284167 0.293196 -0.259853 0.154507 0.276496 -0.730886 -0.115447 -0.691188 1.321621 -0.595257 +GTTTG -1.165430 -0.525172 -0.369695 0.841673 -0.181150 0.924138 1.260343 -0.198374 -0.155140 -0.648701 -0.236311 0.103806 +CAATA 0.572532 -0.800487 -0.500469 1.521146 0.243399 -0.748119 0.143387 -0.473934 0.253104 0.613396 -0.081949 0.161809 +ATGAT 0.264004 -0.191753 -0.162864 1.968917 0.277746 -0.442179 0.659598 -0.603634 0.127618 -0.891971 -0.364969 0.441595 +GGACA -0.155302 -1.834615 -0.218627 0.947136 0.018242 -0.015164 -0.507120 -0.472880 -0.538330 -0.231647 -0.337411 0.010182 +AGGCT -0.964102 -0.654023 -0.943322 0.335051 -0.230340 -0.236279 0.206415 -0.606341 -0.935768 -0.754871 0.006864 -1.051623 +CCTTG -0.409527 -0.198245 -1.400608 0.633615 -0.253857 0.861276 0.909627 0.026601 0.435872 -0.810601 0.577819 -0.374719 +CGGA -0.379428 -1.224405 -0.606710 0.782091 -0.361277 -0.433604 0.033169 -0.005170 -0.677016 -0.662371 0.076732 -0.157352 +GGCAT -0.476355 -1.008094 -0.612174 0.660620 0.481923 -0.582740 -0.065039 -1.021629 0.199372 -0.978988 -0.211787 0.260462 +AGGTG -1.569135 -1.101546 0.098041 0.727241 -0.367719 -0.337327 0.338873 -0.348900 -0.616736 -0.505723 0.019584 0.052033 +GTATT -0.900634 -0.195003 -0.487300 1.640216 0.638115 0.457777 1.020306 -0.172740 0.242495 0.216703 -0.688893 0.334419 +ATGTC -0.395905 -0.237516 -0.106391 0.974047 0.402905 0.130858 0.911641 -1.231885 0.411875 -0.209678 0.641531 0.773216 +ATGAG -0.065743 -0.406786 0.149089 1.588758 -0.311256 -0.640572 0.453265 -0.539346 -0.551858 -0.922903 -0.319817 0.197580 +GAGCT -0.581523 -0.108750 -0.751238 0.535629 -0.560387 -0.183534 0.481103 -0.900724 -0.977009 -0.707241 0.070607 -0.993884 +TGAGT -0.878382 0.193902 -0.037160 1.276285 -0.700232 0.346805 0.980127 -0.363531 -0.720273 -0.375865 0.132897 0.075154 +GTAGA -0.946242 -0.217257 -0.063576 1.648026 -0.344366 -0.373286 0.347468 -0.148264 -0.643885 0.238729 -0.448044 0.131666 +CTGTA -0.722001 -0.066825 0.176564 1.521370 0.323357 0.465980 0.372442 -0.649071 0.612696 0.265861 0.522176 -0.508310 +GGCCT -0.871693 -0.479395 -1.051870 0.204837 0.029217 -0.339696 0.073864 -0.373062 -0.256367 -0.837411 0.903186 -0.699543 +TTTAC -0.170806 -0.895679 -1.293139 1.176683 0.258424 1.166817 0.063458 -0.353981 0.446867 0.825430 -0.616950 -0.182086 +GCTCA -0.175604 -0.730891 -0.900227 -0.141401 0.100806 -0.127090 0.349688 -1.471994 -0.246094 -0.179082 0.603494 -0.365003 +TAAAC 0.461879 -1.222314 -0.150018 1.451098 -0.364174 0.221421 0.523994 -0.140086 0.449644 1.156639 0.054704 -0.292508 +GTTCA -0.685718 -0.765452 -0.551139 0.131616 0.087876 0.262509 0.993182 -0.846935 -0.259152 0.422716 0.327987 0.803624 +TCATA -0.154138 -0.206135 -0.636154 1.118348 0.509684 -0.403785 0.304984 -1.195043 0.025175 0.908779 -0.149224 0.495612 +GAGCA -0.348290 -0.891254 -0.284200 0.675749 -0.814316 -0.848733 0.024189 -1.112226 -0.591925 -0.466292 -0.148042 -0.040724 +CGTT -0.719064 -0.314791 -1.127153 0.495812 -0.224918 0.741334 0.612980 -0.322281 0.104558 -0.017386 0.264911 0.256134 +TGTCC -0.950818 -0.124940 -0.777910 0.802055 -0.125970 0.526897 0.813567 -0.448191 0.431160 -0.520805 1.353281 0.629819 +TGATA 0.023405 -0.044329 0.036722 1.999660 0.103531 -0.140778 0.551925 -0.427851 -0.006042 -0.302855 -0.552027 -0.273131 +TAAGA 0.006115 -0.511884 -0.207612 1.529714 -0.515387 -0.611430 0.676269 -0.034962 -0.719694 0.766180 -0.326725 -0.282325 +TGGGT -1.717809 -0.796769 -0.530478 0.687924 0.409085 0.560219 0.780100 -0.154112 -0.104540 -0.880397 -0.030197 -0.141054 +CAGCT -0.449873 -0.427497 -1.161572 0.205199 -0.490269 -0.283372 -0.357754 -1.345685 -0.362573 0.201539 0.736202 -0.867691 +TCTTA -0.103473 -0.062242 -1.148667 0.823749 0.030323 0.432978 1.098055 -0.621830 0.190091 0.958043 -0.167326 -0.524239 +ACCCA 0.170252 -1.238315 -0.820268 1.158350 -0.590704 -0.385770 -0.626588 0.110433 0.260890 0.222206 1.305305 0.289975 +TGGTT -1.400245 -0.523175 -0.623043 0.763745 0.402633 0.989668 1.160663 -0.221193 -0.050616 -0.312349 -0.321435 -0.119187 +GTCTC -0.622744 -0.122293 -0.636129 0.156120 -0.115653 0.291180 1.193586 -1.224701 -0.422633 -0.135532 1.159838 0.097155 +CAACT 0.923829 -1.224982 -0.738708 0.559812 -0.422481 0.647794 0.283159 -0.769118 0.017246 0.433461 0.362574 -0.533983 +TTGGT -1.474863 -0.660147 -0.684271 0.639633 0.266719 0.684144 1.274129 -0.232120 0.081121 -0.727487 -0.400690 0.093941 +GTGTA -1.438966 -0.498106 0.318300 1.595139 0.072040 0.169449 0.981941 -0.202486 0.428466 0.026525 -0.004786 0.116326 +CAAGG -0.221292 -1.692601 -0.753502 -0.087871 -0.235784 -0.802608 0.646725 -0.223162 -0.820560 0.067482 0.396434 0.030663 +ACTAA 0.432540 -0.826236 -0.267148 1.542685 -0.352331 0.161741 0.385925 -0.193081 -0.235157 0.980984 0.117688 -1.121930 +CGTG -1.010178 -0.863966 -0.227247 0.439890 -0.371922 0.193691 0.137052 -0.720685 0.123400 -0.836648 0.761328 -0.119927 +TTAGT -1.119355 -0.147982 -0.748748 1.291785 -0.481494 0.390104 0.870039 -0.072097 -0.137574 0.951858 -0.477843 -0.073630 +CCATC 0.561576 -0.194691 -1.592681 0.946028 0.165288 -0.142422 0.105612 -1.092830 0.188905 0.116062 1.190820 0.680477 +CAGGG -0.979220 -1.467497 -0.901900 0.155989 -0.384014 -0.512200 -0.180818 -0.309127 -0.629363 -0.576095 0.408349 0.046647 +CATGG -0.518675 -1.190145 -0.477662 0.740364 0.532956 -0.317751 -0.017862 -0.672502 0.292324 -0.959792 -0.059736 0.730757 +GACAA 0.532487 -1.841223 -0.060104 0.962107 -0.403377 -0.286231 0.017880 -0.383998 -0.487552 0.145673 0.015033 -0.070550 +CCCAT 0.065819 -0.187390 -1.298514 1.231616 0.142632 -0.211853 -0.040002 -0.448522 0.780793 -0.073338 1.092188 0.862325 +GATGT -0.755503 -0.266811 0.184370 1.325250 0.021162 0.193391 1.071878 -0.737194 0.015351 -0.663633 -0.003874 0.584125 +AGCAC -0.177275 -1.373700 -0.605745 0.480377 -0.681807 -0.082475 -0.704355 -1.125485 -0.255566 0.211388 0.514087 -0.458817 +AGTCC -0.794449 -0.181317 -1.092611 0.804836 -0.480040 0.041302 0.543723 -0.346721 -0.434961 0.326620 1.126366 0.599069 +TCAAG -0.067739 -0.795459 -0.783765 -0.024679 -0.237142 -0.553399 1.128771 -0.718942 -0.855361 0.719617 0.647305 0.231048 +AAGCT -0.052103 -0.445836 -0.695555 0.271711 -0.591558 -0.525179 0.759811 -0.519207 -0.633983 0.375764 0.423095 -1.164608 +ATTGC 0.160832 -0.722694 -0.882739 0.847180 0.530504 0.432500 0.486868 -0.948312 0.685647 -0.674562 -0.262773 -0.037295 +ACAGT -0.855159 -1.195465 0.050100 0.796347 -0.632329 0.452277 0.047070 -0.511333 -0.153858 1.012498 0.193335 0.491441 +CTTGT -0.802366 -0.106745 -0.790672 0.965248 -0.119405 1.314893 1.204230 -0.561654 0.432207 -0.393374 0.316091 -0.151629 +TACAG -0.865557 -1.007823 -0.463364 0.945280 0.037779 -0.163763 -0.579862 -0.619265 -0.258003 0.888053 -0.505215 -0.050074 +ACAGG -0.808244 -1.941698 -0.592411 0.520115 -0.102741 -0.249488 -0.696285 -0.497678 -0.753159 0.159465 -0.155474 0.037171 +GCTTC -0.445256 -0.259223 -1.421159 -0.094342 -0.023107 0.120876 0.667043 -0.960837 -0.230822 -0.068276 0.430235 -0.730126 +CATGC 0.082100 -0.830417 -0.644866 0.783492 0.081580 -0.280814 -0.187698 -1.347186 0.997444 -0.845766 0.523161 0.192617 +TGACT 0.236815 -0.430103 -0.306880 1.187433 -0.312366 1.071291 0.174852 -0.613732 -0.235306 -0.524462 -0.019554 -0.737858 +CCAAG -0.038951 -0.836484 -0.899140 0.542681 -0.712601 -0.759913 0.209325 0.030803 -0.360932 0.345541 1.128834 0.112175 +CTTAT -0.039331 0.113212 -1.217954 1.421125 0.472352 0.743598 0.346444 -0.498230 0.570248 0.344483 -0.323963 -0.524842 +AGGTT -1.274876 -0.778654 -0.716908 0.286002 -0.300296 0.157436 0.904503 -0.104857 -0.734544 0.193385 -0.360494 0.166659 +AAGAC 0.328160 -1.258587 -0.253777 1.126986 -0.913662 -0.315309 -0.054581 -0.232747 -0.774818 0.633776 0.156059 -0.143650 +TCAGC -0.350413 -0.435293 -1.310981 0.024617 -0.114048 -0.426704 0.154215 -1.497157 -0.614747 0.327762 0.834614 -0.084203 +GCATG -0.357971 -1.083962 0.032409 0.850439 0.056962 -0.520525 0.033145 -1.240270 0.486587 -1.069187 0.203197 0.173122 +AGTTA -0.947200 -0.569638 -0.217385 1.239122 -0.436624 0.132357 0.722234 -0.069488 -0.422720 1.138163 -0.426546 -0.009090 +TCAGT -0.959335 -0.333599 -0.412823 0.367184 -0.319244 0.028648 0.938523 -1.020036 -0.439089 0.633175 0.503199 0.656440 +CCAGC -0.292050 -0.735759 -1.264469 0.572440 -0.570245 -0.563668 -0.505521 -0.653994 -0.230275 -0.036906 1.545829 -0.285179 +TTAGA -0.305469 -0.174145 -1.001808 1.345889 -0.472727 -0.077934 0.522203 -0.010171 -0.765665 0.561681 -0.991914 -0.019660 +TCTTG -0.579759 0.003922 -1.040429 0.364459 0.090015 0.707071 1.547612 -0.741125 -0.192471 -0.564774 0.068884 -0.505186 +CTGAC 0.209266 -0.610277 -0.376258 1.103780 -0.366146 0.767935 -0.363196 -0.799604 -0.310016 -0.697203 0.806020 -0.712637 +TCACC 0.141264 -0.861872 -1.325835 0.466598 0.055609 0.365499 -0.238770 -0.899908 0.345104 0.481124 1.157944 0.271715 +CAAGA 0.662298 -0.962323 -0.692178 0.909924 -0.710228 -0.773544 0.236299 -0.580904 -0.968546 0.426549 0.063430 0.317812 +ACTTG -0.001659 -0.747183 -0.700452 0.717870 -0.536073 1.016979 0.303958 -0.333588 0.191605 -0.404896 -0.333265 -0.643723 +GAACT 0.426911 -1.036335 -0.267776 0.819843 -0.619710 0.501495 0.488043 -0.068166 -0.538449 -0.132660 0.114624 -1.074431 +CTGTC -0.593180 -0.070521 -0.623775 0.540922 0.131189 0.751168 0.875684 -1.238310 0.226834 -0.117268 1.414574 -0.021051 +AATAC 0.565497 -1.078757 -0.336464 1.752296 0.109198 -0.220744 0.056098 0.006374 0.243647 0.880895 -0.021525 -0.274077 +ACAAG 0.026732 -1.719419 -0.199160 0.696217 -0.656912 -0.414407 0.038979 -0.429581 -0.751202 0.792769 0.143345 0.032516 +CCCG -0.658587 -0.584469 -1.101695 0.715884 -0.443638 -0.108489 -0.079358 0.037402 0.006512 -0.734721 1.383510 -0.185904 +TTAAG -0.351864 -0.629945 -0.694227 1.082546 -0.409656 0.009358 0.995826 0.231757 -0.521477 0.774970 -0.794262 -0.256478 +CCAGT -1.063866 -0.277354 -0.907299 0.701897 -0.620486 0.152270 0.222047 -0.306437 -0.078037 0.560032 1.102295 0.710093 +AGGAC -0.155110 -1.295171 -0.618873 0.849542 -0.517783 -0.141081 -0.308768 -0.060167 -1.092999 -0.011666 -0.018209 -0.655161 +ACCAG -0.341484 -0.961612 -0.549897 1.074730 -0.661010 -0.610434 -0.689909 -0.139525 -0.384130 0.318045 0.967188 0.191408 +TCTAG -0.705201 0.533464 -0.825213 0.962080 0.074621 -0.257362 0.633827 -0.705141 -0.635276 0.737114 0.259978 -0.690562 +ATGGG -0.625442 -1.226585 -0.321748 0.899957 0.662684 -0.603040 0.368792 -0.215259 -0.120388 -1.039384 -0.501424 0.003825 +TTGGG -1.349507 -0.869254 -0.941384 0.525679 0.247081 0.515357 1.011155 -0.065704 -0.402578 -0.903817 -0.788336 -0.326898 +CCCTC -0.013120 -0.250393 -1.756389 0.490161 -0.207987 0.140742 0.100579 -0.701111 0.007206 0.032326 1.924987 -0.297727 +TGGTA -1.264784 -0.657958 0.018779 1.378561 0.516439 -0.021160 0.489476 -0.110125 0.285849 -0.212302 -0.267013 -0.043554 +GGCAG -1.040088 -1.347810 -0.476342 0.391080 -0.441019 -0.903396 -0.260349 -0.933633 -0.718771 -0.656668 0.403882 -0.203314 +GCTGA -0.315943 -0.380219 -0.162529 0.901743 -0.367370 -0.370067 0.486021 -0.836336 -0.734761 -1.195976 0.316312 -1.178028 +GACTT 0.149075 -0.710178 -0.958185 0.667191 -0.438373 0.839625 0.333354 -0.167564 -0.654472 -0.189321 -0.416062 -0.857394 +AGAAC 0.374025 -1.345993 -0.313219 1.298198 -0.881907 -0.417132 -0.148880 -0.073384 -0.835871 0.297013 0.094582 -0.153530 +AGCCA -0.158272 -0.865519 -0.781378 0.864726 -0.652015 -0.938044 -0.494495 -0.209945 -0.389618 -0.288782 0.945050 0.175578 +GCACT -0.094633 -1.164693 -0.521723 0.280593 -0.351308 0.503970 -0.329190 -1.216111 0.099833 -0.089215 0.422974 -0.896692 +ATTCG -0.159351 -0.265250 -1.450416 0.959774 0.391648 0.113731 0.499075 -0.579706 -0.267971 -0.227382 0.224714 0.462147 +CGGG -1.125805 -1.220599 -0.707711 0.380590 -0.172199 -0.008988 0.033889 -0.170599 -0.427463 -0.949063 0.422847 -0.229077 +GTCTT -0.819956 0.042075 -0.884764 0.459184 -0.125104 0.888763 1.408747 -0.752913 -0.181432 0.108926 0.226989 -0.292006 +GCCG -0.839149 -0.628080 -0.861666 0.423549 -0.548103 -0.425999 -0.090391 -0.371210 -0.215666 -0.861453 0.819944 -0.608438 +CAGGT -1.301716 -0.857173 -0.531621 0.238847 -0.412305 -0.176833 0.093367 -0.612649 -0.471107 -0.041639 0.205207 0.380934 +CGAT -0.071018 -0.099462 -1.160651 1.067407 0.263599 -0.121490 0.303348 -0.653286 -0.205084 -0.516388 -0.026685 0.377241 +CTTAA 0.510406 -0.420483 -0.727673 1.015026 -0.196684 0.444718 0.956797 -0.300727 0.092833 0.809552 0.045428 -0.726178 +TGCAC 0.041940 -1.057798 -0.507811 0.585705 -0.314391 0.732966 -0.337767 -1.176135 0.560990 -0.651245 0.362627 -0.348021 +GTCCT -1.003918 0.142307 -0.945328 0.650842 0.006470 0.541871 0.870063 -0.294016 0.033414 -0.128359 1.238261 -0.086268 +CCGT -0.839014 -0.394689 -0.899058 0.500229 -0.296336 0.359384 0.236882 -0.268078 0.191378 -0.319403 0.973682 0.317715 +ATAGT -0.842272 -0.205152 -0.094642 1.568509 -0.040146 -0.439018 0.691034 -0.361786 -0.148301 0.809568 -0.372188 0.197198 +AGTTC -0.834473 -0.059196 -0.855190 0.433938 -0.583532 0.331009 1.097602 -0.447021 -0.710967 0.740083 0.321635 0.299387 +ATCAG 0.105950 -0.286855 -0.908941 0.750961 0.046765 -0.809587 0.078897 -1.127743 -0.743449 0.257974 0.164625 0.682042 +ACGT -0.681999 -0.803889 -0.226212 0.617555 -0.388411 0.530463 -0.027937 -0.571822 0.034014 -0.000578 0.297355 0.103717 +CCCAA 0.391467 -1.048108 -0.930268 0.873058 -0.568979 -0.593214 0.218962 0.132067 0.279439 0.338060 1.575505 0.226503 +GATTA -0.378132 -0.565597 -0.656475 1.447602 0.323703 -0.054882 0.384227 -0.269664 -0.240256 0.067182 -1.288543 0.015919 +CTGAT 0.215290 0.191123 -0.415205 1.319548 0.380605 0.298355 0.417772 -0.993590 -0.211703 -0.947465 -0.022114 -0.446077 +CCAGA 0.024601 -0.596368 -0.862471 1.145487 -0.737143 -0.827856 -0.558916 -0.124617 -0.772901 0.038190 0.896304 0.296968 +ATTAG -0.331713 -0.384166 -0.848791 1.372612 0.255767 -0.246379 0.455002 -0.122847 -0.511873 0.761518 -0.738843 0.084155 +TGGCC -0.885442 -0.738670 -0.846994 0.498095 -0.008683 -0.014675 0.038878 -0.202447 0.321203 -1.303990 0.915991 -0.317520 +GAGGT -1.523408 -0.814367 -0.252093 0.635300 -0.421753 -0.348397 0.597156 -0.249355 -1.040948 -0.586093 -0.086863 -0.058836 +AGCTC -0.371996 -0.213087 -1.247686 0.310378 -0.389358 -0.225756 0.054282 -1.080930 -0.950366 -0.028907 0.750223 -0.782892 +ATCGA 0.228663 -0.716589 -0.670721 1.288848 0.017153 -0.694224 0.631627 -0.326873 -0.693408 -0.490046 0.271534 -0.009625 +ACTTA 0.277225 -0.905974 -1.035953 1.067690 -0.313731 0.768194 -0.013228 -0.241755 0.126906 0.954461 -0.454749 -0.745759 +CTCTA 0.344434 0.289385 -0.947718 1.173168 0.106003 0.347410 0.380863 -1.065285 -0.145636 0.872360 0.685511 -0.936944 +GGTGT -1.845336 -0.904174 0.035048 0.836998 0.074573 0.445835 0.935271 -0.331305 0.192557 -0.604366 0.120888 -0.000129 +CTTGC -0.274615 -0.301285 -1.249154 0.457787 -0.093317 0.848176 0.352494 -0.941267 0.388413 -0.854575 0.337478 -0.974786 +GTGCA -0.878406 -1.023286 0.142931 0.471312 -0.365201 -0.149192 0.390630 -1.105605 0.471795 -0.659713 0.357139 0.090147 +CATAG -0.544575 -0.394392 -0.632878 1.243281 -0.133669 -0.712544 -0.453885 -0.682713 -0.023644 0.506893 -0.324267 0.327462 +GCAGG -1.111165 -1.526115 -0.600597 0.286843 -0.337753 -0.785916 -0.217027 -0.820056 -0.659672 -0.718294 0.269537 -0.427739 +AGTTG -0.880916 -0.539891 -0.046615 0.864559 -0.737310 0.147276 1.244142 -0.093741 -0.581175 -0.289486 -0.185421 0.216777 +ATCCT 0.445072 0.322401 -1.253624 1.187695 0.446173 -0.179244 0.433010 -0.532197 0.236475 -0.036734 0.970746 0.048715 +GATGA -0.052671 -0.666754 0.057492 1.603654 -0.126328 -0.425897 0.372959 -0.452739 -0.654886 -0.968268 -0.430517 0.155645 +CTACA 0.162256 -0.731044 -0.524062 1.100247 0.103709 0.303419 -0.604539 -0.947233 -0.130757 0.891419 0.248327 -0.530292 +GCAGC -0.768555 -1.038648 -0.541708 0.277613 -0.545939 -0.670505 -0.374804 -1.469882 -0.304295 -0.503384 0.901766 -0.708555 +ATCTA 0.525882 0.109619 -0.561241 1.549766 0.213766 -0.315143 0.528871 -0.818248 -0.066789 0.694160 0.029329 -0.466991 +AATCG 0.250381 -0.878688 -0.645901 1.212769 0.004325 -0.818258 0.703908 -0.362381 -0.600168 -0.489419 0.215865 -0.023622 +GTGCT -1.114413 -0.288217 -0.328616 0.411014 -0.046142 0.310819 0.821676 -0.979442 0.229628 -0.780339 0.513387 -0.890109 +TAGAT -0.308512 0.050398 -0.615811 1.700043 0.145501 -0.526971 0.288073 -0.606378 -0.400442 0.263763 -0.801444 -0.081418 +CAATC 0.696235 -0.539297 -0.909562 0.831663 -0.016421 -0.472545 0.450059 -0.711833 0.049352 0.147327 0.901704 0.435068 +TTCGA -0.103411 -0.125596 -1.421548 0.997308 0.043604 0.056745 0.489947 -0.535304 -0.460423 -0.318367 0.161916 0.354382 +AGGGG -1.318960 -1.422985 -0.583627 0.538552 -0.201182 -0.652509 0.285143 0.047242 -0.939892 -0.682715 0.087439 -0.286759 +GGGTG -1.754319 -1.213059 -0.170509 0.557533 -0.187883 -0.086493 0.602237 -0.414335 -0.381867 -1.046987 0.263997 -0.153687 +CTAAT 0.662186 0.000820 -0.526609 1.617575 0.388553 0.089753 0.809661 -0.442051 0.254826 0.411704 0.104827 -0.681439 +CACCT 0.050098 -0.743369 -1.089476 0.671264 -0.064530 0.420279 -0.386617 -0.416291 0.445541 0.253960 1.100099 -0.364309 +GATAA 0.356196 -0.430087 -0.099321 1.899730 0.039782 -0.634356 0.646083 -0.210328 -0.439747 0.194962 -0.502316 -0.243621 +CCATA 0.044162 -0.342856 -0.986084 1.477647 0.311637 -0.359330 -0.334805 -0.225529 0.482867 0.409316 0.295775 0.373886 +GGAGC -0.727378 -0.836418 -0.602892 0.454409 -0.352366 -0.687990 0.003540 -0.590301 -0.933109 -0.788597 0.313496 -0.581595 +CTGGC -0.729500 -0.862856 -0.835982 0.205268 0.295351 0.167375 -0.028802 -1.014164 0.040717 -1.054439 0.840767 -0.748714 +CGCT -0.512800 -0.372800 -1.053321 0.361748 -0.266262 0.216111 0.013694 -0.632139 0.015632 -0.465405 0.717330 -0.742672 +ATAAC 0.865593 -0.990860 -0.339537 1.682438 0.042537 0.019191 0.071273 -0.427570 0.489267 0.707401 -0.134364 -0.262346 +GAGGG -1.160220 -1.414589 -0.476174 0.785545 -0.413922 -0.717094 0.217203 -0.260938 -1.181811 -1.051007 -0.236246 -0.387678 +ATCCC 0.271692 0.020901 -1.240290 1.212589 0.021144 -0.509918 0.097980 -0.219880 0.216850 -0.293582 0.968940 0.654601 +GAGTC -0.778540 -0.204626 -0.706641 0.630674 -0.415524 -0.173300 0.740200 -0.650748 -0.822471 -0.084707 0.473056 0.375118 +AGAGC -0.272502 -0.612951 -0.415936 0.832093 -0.879110 -0.993791 -0.077949 -0.839350 -1.202091 -0.086954 0.417020 -0.449535 +ATGGC -0.242085 -1.158748 -0.414184 0.669277 0.434798 -0.708802 0.248622 -0.643735 0.239791 -0.952745 -0.022951 -0.118120 +TAATC 0.458343 0.151751 -0.747734 1.495330 0.252428 -0.505829 0.895907 -0.456304 0.165797 0.734580 0.460305 0.189270 +GGCG -1.033679 -1.213144 -0.669122 0.320485 -0.272941 -0.424104 -0.030556 -0.376856 -0.443190 -0.892966 0.389450 -0.410021 +ACACC 0.182665 -1.615995 -0.797892 0.934793 -0.379708 0.188259 -0.838990 -0.430394 0.420675 0.444035 0.994774 -0.053876 +GGGGA -1.032729 -1.537399 -0.390813 0.656141 0.000892 -0.438535 0.330720 -0.007248 -0.871664 -0.893789 -0.211073 -0.561331 +AGTCT -0.645661 -0.023032 -0.352265 0.407291 -0.443296 0.219460 1.078156 -0.784367 -0.751660 0.444406 0.485795 -0.049835 +ACATC 0.688048 -0.894536 -0.756546 0.914946 -0.018813 -0.004589 -0.137588 -1.166402 0.033710 0.342653 0.325257 0.548516 +AGACT 0.092670 -0.579336 -0.603917 0.949840 -0.722285 0.301000 -0.245736 -0.471275 -1.135876 0.279192 -0.076028 -0.726559 +GAGCC -0.568264 -0.376028 -0.805942 0.778575 -0.756731 -0.704140 -0.171888 -0.351775 -0.510143 -0.958082 0.937364 -0.430489 +CTCGA 0.199349 -0.657477 -0.688274 0.975916 -0.206043 0.010069 0.282238 -0.429246 -0.976272 -0.537752 0.542777 -0.442929 +GTGGC -1.517715 -1.107166 -0.223680 0.228669 -0.081196 -0.010968 0.366679 -0.844667 0.096852 -0.874781 0.447054 -0.205175 +GGCAA -0.039306 -1.713069 -0.169298 0.321670 -0.114216 -0.672895 0.250940 -0.488051 -0.238996 -0.540156 0.286105 -0.315346 +TAACT 0.446552 -0.615814 -0.355637 1.291253 -0.246084 0.662627 0.553685 -0.376686 0.202152 0.715772 0.040839 -0.999245 +GAAGC -0.100931 -0.856856 -0.321824 0.622334 -0.683889 -1.052605 0.348742 -0.455493 -0.719710 -0.162502 0.372377 -0.549237 +ACCCC 0.391521 -0.990365 -1.116862 1.091317 -0.769838 0.091154 -0.373281 -0.166111 0.340788 0.102902 1.726132 0.123092 +TCCG -0.679483 -0.250616 -1.262292 0.420989 -0.135653 0.073070 0.387354 -0.265364 -0.212277 -0.303337 0.950777 0.173210 +ACCAC 0.231783 -1.332570 -0.625706 0.954926 -0.454575 0.387736 -0.641507 -0.547536 0.383488 0.236133 0.982394 -0.019462 +TAGCA -0.356404 -0.576935 -0.425258 0.815109 -0.358184 -0.625506 0.028533 -0.907724 0.037073 0.520493 -0.428869 -0.308356 +ATAGG -0.923872 -0.711421 -0.362531 1.247692 0.217679 -0.759213 -0.046681 -0.253233 -0.437897 -0.078017 -0.695005 -0.240083 +TACAC -0.037188 -1.325577 -0.652368 1.140649 0.097724 0.497360 -0.644136 -0.645827 0.641890 0.916117 -0.092088 -0.106586 +TAGTA -0.933710 -0.250514 -0.378235 1.724270 -0.247138 -0.098144 0.674780 -0.095295 -0.026144 1.113626 -0.567644 -0.145957 +CTATG -0.438568 0.088853 -0.223305 1.284104 0.428997 0.300804 0.260913 -0.604241 0.357773 -0.361885 0.146937 -0.566975 +AGCCC -0.315899 -0.390046 -1.157500 0.627749 -0.614792 -0.823371 -0.238767 -0.372352 -0.368325 -0.255543 1.377329 -0.138537 +ACGA 0.258094 -1.220586 -0.397373 0.972180 -0.542232 -0.191039 0.009617 -0.050917 -0.471444 -0.178459 0.263012 -0.141403 +TCTAC 0.051890 -0.232890 -0.918322 0.981969 0.314318 0.577439 0.044564 -0.947529 0.189338 1.027856 0.412783 -0.436934 +CTTGG -0.760525 -0.540675 -0.961137 0.385326 0.159451 0.732717 0.645313 -0.319263 -0.339486 -0.895197 0.024098 -0.675987 +GCTGC -0.801109 -0.465452 -0.684217 0.426532 -0.047037 -0.087500 0.131852 -1.225821 0.094890 -1.051509 0.691057 -1.172265 +CCCTG -0.394329 -0.359880 -0.811914 0.930770 -0.177613 0.177364 -0.013181 -0.270602 0.172628 -0.808335 1.548270 -0.556251 +CCGA -0.199371 -0.493800 -0.718870 0.836656 -0.565255 -0.327749 -0.246767 -0.198634 -0.417202 -0.556875 0.834482 -0.149051 +AAGGT -1.027794 -1.160733 -0.019283 0.497833 -0.365042 -0.372401 0.987588 -0.004151 -0.505004 0.307951 -0.116183 -0.148528 +ACCCT 0.024684 -0.552813 -1.098703 1.070642 -0.328903 0.433259 -0.280868 -0.121991 0.371881 0.104510 1.340204 -0.463521 +AGTGC -0.864074 -0.585837 0.065676 0.489773 -0.687680 -0.142479 0.521953 -0.706874 -0.014343 -0.350547 0.469831 -0.240906 +GGTCT -1.092863 -0.348004 -0.486747 0.164095 0.258639 0.149691 0.940651 -0.967316 -0.720444 -0.014226 0.455014 -0.343265 +TCAAC 0.685192 -1.072424 -0.784209 0.502479 -0.113136 0.152333 0.293170 -0.891515 0.042376 0.737547 0.534628 0.314710 +ACTAT 0.239596 -0.343611 -0.632887 1.634126 0.205437 0.443747 -0.133901 -0.537197 0.282022 0.505489 -0.322462 -0.649758 +ACCAA 0.634109 -1.479272 -0.571107 1.161032 -0.503034 -0.299225 -0.059692 0.050755 0.108767 0.541413 1.017016 0.242148 +GCCAA 0.261781 -1.085075 -0.551254 0.485408 -0.244988 -0.747969 0.562973 -0.021378 0.194639 -0.364218 0.977338 -0.085895 +AGTAT -0.892994 -0.236790 -0.239197 1.578772 0.120399 -0.234378 0.653582 -0.134098 -0.106683 0.659994 -0.549310 0.178826 +CTACT -0.055477 -0.185668 -0.827490 0.993772 -0.009165 0.818824 -0.028745 -0.750164 -0.141861 0.759706 0.419410 -1.150167 +TTGGC -0.658388 -0.625036 -1.183862 0.234200 0.195553 0.382085 0.455010 -0.505638 0.154921 -1.134932 -0.286798 -0.298601 +CCCAC -0.014085 -1.081228 -1.219572 0.959127 -0.468347 0.091779 -0.691348 -0.434155 0.416239 0.128006 1.570547 0.208356 +ACAGC -0.360296 -1.389984 -0.704710 0.660220 -0.495886 -0.419101 -0.858582 -1.008697 -0.228160 0.434527 0.587366 -0.272230 +TATAC -0.080031 -0.646535 -0.635142 1.885887 0.344727 0.152533 -0.342594 -0.353947 0.723723 0.833841 -0.431215 -0.121569 +TCCCC -0.290356 -0.206921 -1.727009 0.532088 -0.393030 0.244013 0.258559 -0.270027 0.433071 0.002944 1.509529 0.097397 +AGGAT -0.473681 -0.757415 -0.403897 1.168041 0.191511 -0.949981 0.279987 -0.116762 -0.756133 -0.624904 -0.527014 -0.012070 +CGAC 0.076502 -0.697575 -0.895408 0.797552 -0.488573 0.296807 -0.410566 -0.425267 -0.252677 -0.375446 0.857099 -0.346548 +GGCCA -0.757485 -1.130831 -0.850613 0.479532 -0.155737 -0.629406 -0.403564 -0.215236 -0.076212 -0.921678 0.884062 0.001662 +GGGGT -1.775486 -1.193305 -0.574735 0.326037 0.123002 0.042013 0.738341 -0.231108 -0.468823 -0.783600 0.069420 -0.105321 +GTTCC -1.065045 -0.098618 -1.195563 0.621523 -0.049310 0.344043 0.830772 -0.013665 -0.005116 -0.019061 0.745663 0.466842 +AACCC 0.429208 -1.243414 -0.764869 1.105741 -0.750185 -0.415779 -0.039461 0.290536 0.256284 0.017896 1.392606 -0.152189 +GCAAG -0.255381 -1.222175 -0.052715 0.275507 -0.498967 -0.795954 0.439984 -0.910604 -0.308147 -0.195114 0.460471 -0.567771 +GCTCT -0.493514 -0.028748 -1.012824 0.311821 -0.018027 0.419605 0.778272 -1.266189 -0.261817 -0.366880 0.689716 -1.047456 +CGTC -0.526361 -0.383267 -0.800862 0.223701 -0.263904 0.294880 0.529505 -0.881202 -0.086571 -0.109585 1.182401 0.074076 +GCTGT -1.072849 -0.385428 -0.089937 0.626532 0.011039 0.409227 0.798542 -0.891678 0.340728 -0.550173 0.655922 -0.709294 +CCGG -1.039750 -0.938067 -0.914692 0.349931 -0.264030 -0.234507 -0.089121 -0.031160 -0.282689 -0.768507 0.751327 -0.156072 +ATAAG -0.042417 -0.702157 -0.027282 1.674084 -0.206600 -0.847952 0.503891 -0.193812 -0.347734 0.614736 -0.508469 -0.445262 +TTGTC -0.567986 -0.062508 -0.954488 0.600021 0.166421 0.757929 1.335696 -0.857082 0.338855 -0.320587 0.299311 0.514652 +TGGGC -0.919500 -0.995069 -0.447469 0.510147 0.191303 -0.274807 0.013176 -0.595318 -0.094222 -1.265470 0.299128 -0.345053 +ATGCC 0.076892 -0.382952 -0.661961 1.050879 0.272226 -0.607609 0.154736 -0.607172 0.835257 -0.921155 0.875520 -0.114365 +TAAGT -0.942022 -0.378890 0.125144 1.355263 -0.406037 -0.109911 1.257784 -0.113632 -0.098128 0.913508 -0.063432 -0.263066 +GTCTG -1.152106 -0.069019 -0.062933 0.588909 -0.004532 0.273513 1.150656 -0.921461 -0.354384 -0.439382 0.768632 -0.279286 +GCCAC -0.220954 -1.064407 -0.770295 0.551054 -0.449148 -0.153761 -0.565356 -0.644038 0.253688 -0.260688 1.165166 -0.289243 +GTCAG -1.273576 -0.469373 -0.479243 0.282097 -0.305624 -0.314364 0.687550 -0.940230 -0.732845 -0.110201 0.499803 0.688848 +TACCA -0.077196 -0.741017 -0.905511 1.310927 0.050484 -0.270492 -0.656011 -0.028339 0.379972 0.742224 0.345647 -0.014380 +ACAAC 0.646748 -1.781473 -0.441017 0.935901 -0.458356 0.241050 -0.260982 -0.383927 0.099021 0.441908 0.409811 -0.309281 +CACCC 0.089436 -0.991691 -1.426017 0.745476 -0.458484 0.174427 -0.525036 -0.515024 0.388625 0.217406 1.525411 0.090162 +AAGTC -0.286493 -0.520032 -0.366722 0.442692 -0.584152 -0.297772 1.217790 -0.458908 -0.412324 0.710336 0.836939 0.271133 +GTCAT -0.534257 -0.178060 -0.529130 0.804802 0.404467 -0.080439 0.745152 -1.046534 0.101518 0.039789 0.157523 0.917358 +ACCG -0.346620 -1.088097 -0.609384 0.668478 -0.498614 0.086112 -0.392239 -0.105169 -0.057259 -0.389323 0.897978 -0.155876 +TAGCT -0.821003 0.040828 -0.790760 0.808945 -0.013946 -0.217453 0.411441 -0.704817 -0.353483 0.406461 -0.145984 -1.119609 +GTTAA -0.433702 -0.583086 0.049643 1.328675 -0.174415 0.263759 1.523977 0.024508 0.123936 0.711919 -0.201743 0.020324 +GCCTT -0.555299 -0.217182 -1.398062 0.318632 -0.186018 0.164349 0.523956 -0.139245 0.262594 -0.301998 0.672054 -0.729706 +CAGTC -0.662255 -0.397255 -0.819484 0.328914 -0.521324 0.076490 0.424398 -0.948831 -0.334433 0.410263 0.971774 0.627419 +TACTA 0.159245 -0.491544 -0.677156 1.611160 0.195102 0.283527 0.177930 -0.220392 0.192219 1.167779 -0.022220 -1.159510 +AAGGC -0.294241 -1.279180 -0.535996 0.159579 -0.350106 -0.946893 0.417590 -0.304444 -0.479387 -0.242783 0.394416 -0.766492 +GTGTC -1.305979 -0.328961 -0.129680 0.600924 -0.142860 0.401416 1.191805 -0.837990 0.086563 -0.237237 0.850266 0.374875 +TCCTA -0.099563 0.458600 -1.150218 1.298119 0.240188 0.089142 0.457761 -0.355360 0.158009 0.614823 0.787706 -0.485838 +AAGCC 0.103273 -0.860759 -0.652376 0.653050 -0.665951 -1.156406 0.391501 -0.026268 -0.207812 0.130611 1.107293 -0.438682 +GACAC 0.143479 -1.657565 -0.261340 0.992582 -0.505990 0.079208 -0.642066 -0.642401 -0.439098 -0.024881 0.143038 -0.077568 +GCCCT -0.508996 -0.094053 -1.104382 0.787775 -0.281837 -0.041306 0.159764 -0.228559 0.184254 -0.587760 1.300550 -0.784427 +GGATG -0.781104 -0.936448 -0.098021 1.180206 0.309785 -0.600327 0.453539 -0.354598 -0.220601 -1.251845 -0.264584 -0.001013 +CGCC -0.588990 -0.611539 -1.282322 0.682788 -0.312956 -0.162125 -0.213434 -0.312089 0.138252 -0.721100 1.346116 -0.375249 +GGCTC -0.961381 -0.672073 -1.118632 -0.029148 0.104789 0.081064 0.192132 -0.941794 -0.618636 -0.717635 0.786291 -0.509766 +CATCC 0.204071 -0.240826 -1.334330 0.804143 -0.021555 -0.198004 -0.082635 -0.863874 0.353517 0.021064 1.007832 0.554955 +AGTAG -1.252034 -0.414124 -0.245079 1.210877 -0.547222 -0.587334 0.370731 -0.097588 -0.702458 0.544203 -0.171244 -0.103109 +GCCCA -0.450459 -0.906310 -1.004236 0.520067 -0.680256 -0.727866 -0.252629 -0.222710 -0.019608 -0.264358 1.271653 -0.058144 +GGGCA -0.865913 -1.588867 -0.457358 0.267199 -0.102620 -0.438703 -0.138401 -0.898866 -0.339412 -1.003877 0.221324 -0.189018 +GGATA -0.664859 -0.727466 -0.272243 1.423983 0.415849 -0.617630 0.004232 -0.128960 -0.410953 -0.332402 -0.731198 -0.415753 +GGGTT -1.549791 -0.942629 -0.784607 0.271504 0.032435 0.367641 1.036994 -0.093778 -0.471761 -0.521237 -0.238302 0.025426 +ACCTC 0.357869 -0.471074 -0.934995 0.705845 -0.315536 0.293877 -0.006657 -0.572515 -0.006897 0.187714 1.350253 -0.286937 +TTATC 0.097183 0.137332 -1.250216 1.222194 0.501157 0.300741 0.735348 -0.828285 0.190697 0.702684 -0.263528 0.101783 +CCGC -0.502891 -0.617981 -1.138986 0.654684 -0.366345 -0.120719 -0.214563 -0.358104 0.214995 -0.687524 1.358294 -0.543371 +TGACC 0.000215 -0.393001 -0.490682 1.194326 -0.471030 0.487434 -0.169815 -0.161722 0.173565 -0.611551 0.974852 0.008474 +GTGAC -0.505848 -1.009171 0.276191 1.058309 -0.482209 0.575259 -0.085249 -0.550503 -0.126735 -0.685309 0.310767 0.085694 +TATCC 0.115877 0.274507 -1.220692 1.382371 0.286641 -0.126333 0.152898 -0.367153 0.369652 0.376840 0.478237 0.215818 +TGGTC -1.046581 -0.433188 -0.491929 0.339511 0.301996 0.225436 0.911164 -0.731902 -0.072617 -0.696351 0.425702 0.168504 +GACCC 0.063093 -0.810287 -0.865162 1.003592 -0.537774 -0.154901 -0.423348 0.098704 -0.072660 -0.481055 1.286412 -0.167648 +AGCG -0.691632 -0.710254 -0.376285 0.364057 -0.354940 -0.340031 0.043359 -0.660549 -0.544669 -0.407138 0.514823 -0.332806 +TTAAC 0.437340 -0.995951 -0.743106 1.153347 -0.224027 0.802033 0.458211 -0.144145 0.421714 0.958804 -0.303941 -0.293424 +AGCTA -0.215920 -0.239311 -0.705079 1.137594 -0.087608 -0.589657 -0.212412 -0.400065 -0.569225 0.438681 0.212069 -1.214462 +AGACC -0.049895 -0.658517 -0.552193 1.309767 -0.666767 -0.444088 -0.543674 0.012411 -0.599536 -0.086532 0.761576 -0.028402 +TAGTG -1.406024 -0.094960 0.059219 1.171897 -0.308980 -0.091862 0.602091 -0.391607 -0.000867 0.175819 -0.091416 -0.261398 +CTAAG -0.357585 -0.207367 -0.253201 0.923398 -0.437663 -0.138862 0.632392 -0.303819 -0.585679 0.683237 0.201462 -0.900246 +GATAG -0.559180 -0.456010 -0.337576 1.653029 -0.265105 -0.884526 -0.024870 -0.389359 -0.779480 0.266012 -0.647729 -0.214881 +GTTGG -1.563298 -0.802704 -0.265232 0.616111 0.001594 0.475258 1.189458 -0.125107 -0.178234 -0.656492 -0.179176 -0.070801 +GACCA 0.041895 -1.000504 -0.481776 1.163723 -0.457628 -0.344789 -0.615176 -0.122360 -0.219340 -0.218527 0.674754 0.295425 +TAGAC -0.187046 -0.455799 -0.473107 1.381074 -0.396760 -0.137459 -0.467762 -0.316637 -0.491310 0.551026 -0.155697 -0.278742 +CAGAC 0.132514 -1.182313 -0.638855 0.862303 -0.779414 -0.133834 -0.664331 -0.904179 -0.552478 0.251156 0.280863 0.121563 +GCTTG -0.643194 -0.322475 -0.795082 0.464079 -0.317229 0.470650 0.772820 -0.469936 0.104094 -0.928932 -0.072718 -0.859026 +TAGGA -0.699246 -0.873209 -0.395790 1.174982 -0.011245 -0.677491 0.265743 0.046546 -0.677489 0.010976 -0.743414 -0.417403 +GAACC 0.230957 -1.050372 -0.466676 0.998057 -0.581532 -0.186699 0.063213 0.423425 -0.129540 -0.484618 0.776576 -0.218058 +TTGAC 0.093727 -0.600126 -0.562428 0.934229 -0.375268 0.878901 0.306547 -0.387735 -0.034458 -0.616201 -0.252341 -0.060756 +TCGG -0.652570 -0.624286 -0.720396 0.348342 0.089593 -0.094761 0.186471 -0.407804 -0.409964 -0.587867 0.440838 -0.363832 +GCGA -0.322932 -0.705718 -0.527728 0.595536 -0.454703 -0.136226 -0.153025 -0.458574 -0.350184 -0.776403 0.404677 -0.460670 +ACTAG -0.166869 -0.511703 -0.363987 1.200807 -0.520376 -0.163485 -0.156961 -0.177061 -0.465358 0.663697 0.095544 -0.937442 +AGATC 0.190308 0.119935 -0.670531 1.000339 -0.289422 -0.708094 0.162957 -0.998337 -0.972743 -0.156067 0.115006 0.290921 +CATAC 0.167927 -0.907524 -0.729767 1.249830 0.154678 0.143464 -0.609837 -0.799092 0.464217 0.685254 -0.059582 0.104583 +GCCAG -0.888849 -0.895086 -0.647531 0.551392 -0.722245 -0.749618 -0.294763 -0.380241 -0.310425 -0.295782 1.165228 -0.108329 +GATCA 0.150585 -0.540236 -0.542358 0.808989 0.169137 -0.551603 0.049043 -1.120374 -0.750566 -0.294622 -0.062335 0.544916 +GTTAT -0.940623 -0.178036 -0.460977 1.518963 0.515746 0.436576 0.668605 -0.378475 0.232411 0.512572 -0.624298 0.132624 +GGCTT -0.873364 -0.411168 -1.297654 0.163855 0.093648 0.394745 0.546361 -0.512344 -0.327838 -0.554681 -0.313110 -0.793099 +TACTG -0.364820 -0.610212 -0.134597 1.193726 0.330179 0.531362 -0.039112 -0.424455 0.350878 -0.036569 0.079256 -1.047537 +TACCT 0.034574 -0.204863 -1.108897 1.392954 0.292869 0.417175 -0.146418 0.013890 0.635365 0.584340 0.476220 -0.650929 +GTATA -0.836894 -0.327158 -0.077813 1.909096 0.347199 -0.098738 0.463298 -0.176394 0.254517 0.485378 -0.625076 0.037396 +AGGTA -1.215094 -0.689018 -0.171192 1.106305 -0.028085 -0.453577 0.305611 -0.037806 -0.410594 0.438336 -0.174632 -0.081004 +GCATA -0.279814 -0.657671 -0.259797 1.107671 0.286028 -0.759903 -0.268150 -1.013745 0.360703 -0.014924 -0.344031 -0.096558 +TGTAC -0.783629 -0.792072 0.053323 1.445971 0.177045 0.760873 -0.017232 -0.328435 0.734070 0.159907 0.016223 -0.018598 +CAACC 0.610877 -1.237830 -0.963817 0.739098 -0.445271 -0.209927 -0.188334 -0.203181 0.148353 0.219843 1.287943 0.077250 +CTATA 0.275707 -0.040581 -0.545368 1.794276 0.447935 0.167422 0.072482 -0.542813 0.259388 0.621646 -0.133381 -0.837333 +TTAGG -1.173868 -0.492403 -0.864919 0.774147 -0.011793 0.118256 0.482008 0.077474 -0.471053 0.299770 -0.952315 -0.434505 +GTCTA -0.648868 0.351727 -0.358697 1.041348 0.096960 0.224751 0.803008 -0.855875 -0.162279 0.560798 0.390859 -0.414566 +TCGT -0.842925 -0.126354 -0.780483 0.492958 0.063213 0.470546 0.651049 -0.648306 -0.044714 -0.041471 0.473260 0.159004 +TTAGC -0.647642 -0.155500 -0.857959 0.771896 -0.255098 -0.042773 0.250319 -0.431613 0.007368 0.549384 -0.411403 -0.694993 +TAAGG -0.625021 -0.790239 -0.347278 0.952873 0.034118 -0.684276 0.738125 0.095287 -0.435246 0.350973 -0.437358 -0.443665 +GGGAT -0.762194 -0.743875 -0.468974 0.916001 0.462697 -0.460205 0.325809 -0.201867 -0.411866 -0.743267 -0.504582 -0.070299 +GTACA -0.873993 -1.224583 0.144360 1.160921 0.039781 0.215068 -0.292599 -0.472112 0.261618 0.569777 -0.156052 0.228635 +GATCC -0.072677 0.047054 -0.831173 0.954065 -0.006027 -0.495309 0.195272 -0.289494 -0.384559 -0.627776 0.568412 0.337901 +GACCT -0.105903 -0.424872 -0.686133 0.870457 -0.192506 0.230428 -0.190770 -0.061366 -0.200427 -0.495160 0.779028 -0.622841 +TGCTA -0.327100 0.096408 -0.537213 1.107276 0.221350 0.275249 0.338986 -0.654732 0.348733 -0.277602 -0.102802 -0.952185 +GCGT -1.053368 -0.539496 -0.404069 0.336843 -0.253780 0.009928 0.269324 -0.703024 -0.050541 -0.451157 0.469754 -0.156228 +TTGCC -0.376462 -0.223419 -1.123573 0.612238 0.021048 0.437573 0.492655 -0.364660 0.790551 -0.900525 0.504246 -0.101704 +CGGC -0.766476 -0.843445 -1.000827 0.258945 -0.213522 -0.228783 -0.212354 -0.644228 -0.108496 -0.833015 0.727058 -0.480088 +GGTTC -1.250445 -0.575823 -0.945290 0.005134 0.077148 0.332598 0.784735 -0.389318 -0.475839 -0.133303 0.370492 0.092618 +TATAG -0.827663 -0.010280 -0.467629 1.896197 0.002130 -0.400357 0.326372 -0.295705 -0.219755 0.524155 -0.885282 -0.110528 +GGATC -0.392076 -0.335815 -0.642456 0.699520 0.462366 -0.572440 0.404536 -0.580310 -0.587011 -0.731570 0.067470 0.121087 +CAGTA -0.895578 -0.607840 -0.147234 1.068882 -0.486604 -0.124083 -0.010077 -0.403224 -0.059559 0.893114 0.129314 0.371406 +GGGCT -1.166725 -0.813633 -1.036268 0.160151 0.042051 -0.127091 0.118045 -0.570967 -0.547367 -0.906634 0.244531 -0.822530 +CCCCC -0.130511 -0.654473 -1.505783 0.823267 -0.622438 0.015406 -0.080185 -0.134317 0.330916 -0.132890 1.670122 -0.068293 +GTGGT -1.752522 -0.798113 0.141511 0.928371 0.131784 0.280556 0.950890 -0.505302 0.170291 -0.657915 0.112153 0.033407 +AGGGT -1.363854 -1.192329 -0.276799 0.500050 -0.173057 -0.300190 0.575294 -0.135197 -0.689228 -0.480660 -0.155926 -0.132419 +GTCAC -0.642843 -0.823413 -0.279189 0.422137 -0.121903 0.490171 0.126536 -1.139174 0.132385 0.022491 0.665227 0.578014 +CTTAG -0.567366 -0.015848 -1.002660 0.734826 -0.278548 0.363064 0.213416 -0.260447 -0.456804 0.596590 -0.146376 -0.622432 +GCGG -1.052272 -1.045695 -0.632068 0.373385 -0.189068 -0.415494 -0.012286 -0.490844 -0.143604 -0.959017 0.458522 -0.438133 +ACGC -0.099008 -1.043283 -0.635113 0.422858 -0.389538 -0.079602 -0.431146 -0.747681 -0.073542 -0.398484 0.791724 -0.194329 +ATACC 0.174405 -0.506005 -0.774351 1.620989 0.094462 -0.141526 -0.500679 0.006812 0.441455 0.324862 0.419541 0.010968 +GCAAC 0.311609 -1.550064 -0.397455 0.454522 -0.432119 0.017344 -0.127104 -0.661929 0.236758 -0.115729 0.629314 -0.445497 +GCCAT -0.181060 -0.346092 -0.864822 0.948515 0.162602 -0.362587 -0.125299 -0.572016 0.656320 -0.628717 0.615345 0.310265 +ATGAC 0.428346 -0.787603 -0.119251 1.474985 -0.085190 0.170422 -0.224265 -0.491481 0.124991 -0.429951 0.045621 0.002080 +GATCT 0.079026 0.356813 -0.637369 0.872626 0.237810 -0.109576 0.788133 -1.032368 -0.556761 -0.261851 0.162184 -0.170312 +CTATC 0.308565 0.314127 -1.074367 1.188266 0.481243 0.114435 0.312841 -0.973747 0.075972 0.477969 0.540386 -0.437226 +CCTTA -0.194363 0.012004 -1.395182 1.024070 0.111947 0.215178 0.109305 0.007005 0.356915 0.648740 0.311187 -0.667248 +AGGGC -0.952125 -1.056840 -0.876524 0.253724 -0.346319 -0.434758 -0.066734 -0.429322 -0.644728 -0.795126 0.325593 -0.393856 +GTAGT -1.399258 -0.115130 -0.056354 1.208261 -0.257262 0.025136 0.810305 -0.251734 -0.172606 0.235274 -0.068913 0.034104 +CCAAC 0.483961 -1.283948 -0.994593 0.761738 -0.503504 0.026768 -0.284590 -0.245498 0.345330 0.215037 1.169996 0.033549 +TGCCC -0.455449 -0.318024 -1.189666 0.762420 -0.206260 0.235028 0.065222 -0.441951 0.534430 -1.031760 1.264105 -0.315685 +GCTAT -0.456989 0.019016 -0.653950 1.113193 0.565802 -0.107190 0.295023 -0.709469 0.411037 -0.084314 -0.251570 -0.991138 +CCTAA 0.308887 -0.067747 -0.844839 1.292726 -0.123978 -0.195911 0.498875 0.140250 0.303920 0.648975 0.815489 -0.599650 +CCCCT -0.356033 -0.140336 -1.470172 0.691627 -0.368165 0.155042 0.118168 -0.242336 0.245182 -0.260125 1.540196 -0.347660 +GGGAC -0.814400 -1.394391 -0.468581 0.652342 -0.135271 -0.003844 -0.374418 -0.093040 -0.566703 -0.699783 0.078569 -0.522963 +TAGTC -0.777506 0.084681 -0.573310 0.845781 -0.133328 -0.219521 0.574860 -0.506464 -0.119442 0.742765 0.380991 0.095194 +GACTA 0.015840 -0.707326 -0.327975 1.202009 -0.090718 -0.049412 0.023972 -0.212766 -0.624275 0.306594 -0.133174 -0.905241 +GAGTA -1.018214 -0.562079 -0.013569 1.417739 -0.375243 -0.415709 0.457060 0.029740 -0.661246 0.233790 -0.355963 -0.055821 +GTGCC -0.948154 -0.388169 -0.501265 0.714839 -0.159842 0.095865 0.303119 -0.478308 0.512257 -0.903726 1.091400 -0.272076 +TACTC 0.040526 -0.259213 -1.046409 0.773285 0.151863 0.489357 0.002615 -0.846634 -0.019283 0.812974 0.425098 -0.633595 +CTAGT -1.021421 0.086793 -0.538353 0.840474 -0.283585 0.202357 0.445371 -0.342844 -0.250983 0.618874 0.332535 -0.422057 +GTATG -0.913017 -0.390965 0.167023 1.471225 0.347760 -0.016678 0.658518 -0.367374 0.302833 -0.297901 -0.314526 -0.021061 +CAAGC 0.167678 -1.084150 -0.757156 0.366086 -0.550133 -0.817538 -0.084521 -0.774361 -0.332770 0.221890 0.821531 -0.295780 +CCTAG -0.759995 0.157217 -0.907175 1.077390 -0.315782 -0.430214 -0.197845 -0.105973 -0.278213 0.130667 0.753296 -0.586177 +GATAC 0.033856 -0.605349 -0.509979 1.460932 0.144987 -0.327831 -0.463703 -0.270811 -0.392325 0.217504 -0.316254 -0.186919 +GTTGT -1.346503 -0.374441 -0.217783 1.012774 -0.108255 0.716044 1.205071 -0.226063 0.308392 -0.320457 0.000338 0.234127 +ACTCG -0.021615 -0.884053 -0.695059 0.908407 -0.251078 0.079765 0.112050 -0.453518 -0.747210 -0.504020 0.477220 -0.517519 +CGCA -0.261433 -0.905913 -0.475104 0.456032 -0.346727 -0.295638 -0.251201 -0.869247 -0.070498 -0.419526 0.360276 0.112266 +TGCG -0.758524 -0.481350 -0.380906 0.529867 -0.158580 0.223187 0.176931 -0.739664 0.143811 -0.918459 0.400471 -0.323977 +CCTAT -0.174000 0.160090 -0.906220 1.267337 0.334320 0.037062 0.083348 -0.224899 0.444897 -0.005348 0.388476 -0.574982 +GGGGG -1.511150 -1.412910 -0.629891 0.500493 -0.108373 -0.311956 0.463441 -0.272290 -0.702817 -1.012081 0.046982 -0.388344 +CACTA 0.327654 -0.592233 -0.710533 1.059768 0.007629 0.196310 -0.354191 -0.675333 0.172752 0.760967 0.270263 -0.466483 +GACG -0.441350 -1.016478 -0.427385 0.590521 -0.308132 -0.012015 -0.161691 -0.364642 -0.444954 -0.544045 0.320730 -0.272302 +GGTAA -0.888651 -1.076834 0.270660 1.113908 0.048640 -0.337417 0.813221 0.086474 -0.034585 0.133175 -0.252892 -0.199170 +TATGC -0.085501 -0.308444 -0.339417 1.244274 0.330628 -0.201757 0.122791 -0.743868 0.770966 -0.392376 -0.023457 -0.247887 +GGTAG -1.647704 -0.575099 -0.246248 0.981507 -0.072389 -0.352717 0.335975 -0.085949 -0.490418 -0.166217 -0.229085 -0.249944 +GCATC 0.120230 -0.457610 -0.705523 0.504662 0.197181 -0.415850 0.163687 -1.395325 0.156333 -0.435880 0.550041 0.042635 +GCTAA 0.090064 -0.337179 -0.353746 0.922159 -0.064879 -0.336302 0.483080 -0.399658 -0.048433 0.412009 0.215299 -1.102975 +GTCAA -0.089957 -0.918324 -0.334561 0.257933 -0.207590 -0.179930 1.157069 -0.575610 -0.248850 0.337573 0.639846 0.522463 +GCCTA -0.491077 -0.002718 -0.674980 0.873593 -0.011359 -0.321954 0.000575 -0.224719 0.115852 -0.046968 0.717404 -0.824956 +GGTCA -1.006838 -0.971731 -0.585819 0.038627 -0.037562 -0.113068 0.622501 -0.799810 -0.551898 -0.148901 0.208393 0.526546 +GTTAC -0.850532 -0.600879 -0.383593 1.114362 0.113186 0.884135 0.212887 -0.299071 0.404628 0.626359 -0.089766 -0.094402 +GTAAC -0.404457 -0.864489 0.127824 1.385920 -0.433674 0.243107 0.335283 -0.153888 0.176413 0.880534 0.142960 -0.114894 +GATGC -0.306733 -0.281503 -0.305134 0.972839 -0.015972 -0.438265 0.103352 -0.847143 0.002690 -1.005814 0.190497 -0.317229 +TAGGC -0.701847 -0.526307 -0.533386 0.638771 -0.059152 -0.493565 -0.132948 -0.390093 -0.213661 -0.079189 -0.075506 -0.491612 +ACCTA 0.150446 -0.442507 -0.589389 1.380629 -0.180652 -0.044853 -0.274872 -0.042028 0.253086 0.628739 0.648060 -0.656525 +GCGC -0.568048 -0.583807 -0.784887 0.350740 -0.255173 -0.126428 -0.057539 -0.643572 0.018401 -0.681175 0.680931 -0.434453 +TGATC 0.031735 0.244094 -0.562034 1.093550 0.130059 0.085450 0.618572 -0.760011 -0.102498 -0.588083 0.313246 0.256304 +TAGGT -1.270698 -0.350657 -0.428695 0.920042 0.075888 -0.113847 0.560057 -0.173841 -0.188922 0.223043 -0.411672 -0.002725 +CTTAC -0.012619 -0.643602 -1.072504 0.978063 0.167046 0.946646 -0.186954 -0.456780 0.259569 0.735009 0.180938 -0.528547 +CGATT -0.086424 -0.230728 -1.338960 0.905650 0.195939 0.175963 0.596090 -0.530799 -0.198198 -0.194475 0.072084 0.282792 +TCGAT -0.076594 -0.148487 -1.296178 0.837071 0.300634 0.106963 0.421737 -0.590391 -0.173893 -0.225826 0.172879 0.249144 +GTAGG -1.429170 -0.791061 -0.166964 0.883351 0.044556 -0.431162 0.403738 0.033930 -0.425992 -0.074607 -0.130015 -0.329506 +AGGTC -0.935570 -0.492301 -0.578635 0.255938 -0.087145 -0.294864 0.473366 -0.566837 -0.711492 0.047098 0.281056 0.032682 +GGCAC -0.503778 -1.470535 -0.503852 0.265401 -0.151554 0.077463 -0.445319 -0.791570 -0.086293 -0.547204 0.366369 -0.357590 +TAAGC -0.106243 -0.441545 -0.652136 0.826925 -0.091342 -0.755554 0.296068 -0.343811 -0.278275 0.551028 0.152893 -0.778799 +GGCTA -0.605000 -0.477514 -0.520726 0.745834 0.221728 -0.128469 -0.043362 -0.522086 -0.095043 -0.226856 -0.003073 -1.023118 +GGGGC -1.253998 -1.167142 -0.757279 0.279373 -0.106999 -0.261417 0.132900 -0.446682 -0.424117 -1.040117 0.310955 -0.443714 +ACTAC 0.192868 -0.819373 -0.559247 1.220707 -0.064672 0.431969 -0.430386 -0.386985 0.085871 0.767824 0.308790 -0.872820 +GCTTA -0.514247 -0.340066 -0.769918 0.752776 0.059950 0.178564 0.421881 -0.377570 0.307114 0.139027 -0.367415 -0.864020 +GGTAT -1.067881 -0.337929 -0.334545 1.284292 0.515536 -0.050704 0.560407 -0.239733 0.130648 -0.130542 -0.500126 0.062102 +GTAAG -0.789026 -0.592749 0.157775 1.182458 -0.275541 -0.286673 0.884161 -0.084665 -0.371372 0.409578 -0.091736 -0.204216 +ATAGC -0.172113 -0.333607 -0.496989 1.173573 0.055224 -0.777220 -0.042218 -0.645358 -0.192362 0.185538 -0.148941 -0.375868 +GTCCC -0.810283 -0.164184 -0.973098 0.680144 -0.336171 0.069539 0.396677 -0.200421 0.208923 -0.207119 1.344657 0.268434 +GTAGC -1.207947 -0.208023 -0.254969 0.840482 -0.166144 -0.289065 0.153028 -0.495056 -0.151388 0.003450 0.292274 -0.600046 +CTAAC 0.429600 -0.771829 -0.542444 1.019381 -0.253879 0.400829 -0.004188 -0.434466 0.221538 0.673858 0.453879 -0.744482 +TAGGG -1.286687 -0.871674 -0.460516 0.671111 0.026078 -0.373768 0.326092 0.020929 -0.460159 -0.085010 -0.285680 -0.439539 +CTACC 0.013374 -0.159277 -1.043742 1.213625 0.036030 0.330907 -0.294627 -0.351221 0.406874 0.502144 0.901803 -0.495215 +CTAGG -0.783355 -0.353651 -0.601972 0.642503 -0.005496 -0.127079 0.035876 -0.168556 -0.571983 0.079881 0.133429 -0.773136 +GGGCC -1.027024 -1.119186 -0.941740 0.320329 -0.201726 -0.414971 -0.202327 -0.333942 -0.180323 -0.972067 0.850283 -0.426167 +GGACC -0.393993 -0.993419 -0.506955 0.789611 -0.183385 -0.226234 -0.405541 -0.054193 -0.234475 -0.592631 0.672148 -0.282344 +TCGC -0.319218 -0.325660 -0.844172 0.363173 -0.054280 -0.028503 0.185196 -0.782920 0.003522 -0.425826 0.576831 -0.345078 +GCACC -0.282883 -1.041841 -0.708712 0.550624 -0.300565 -0.148153 -0.480194 -0.617078 0.248663 -0.293982 1.149351 -0.289367 +CCTAC -0.199424 -0.283430 -1.106156 1.038898 -0.012148 0.114063 -0.521600 -0.289796 0.424213 0.389345 0.937090 -0.572866 +AAACG 0.072829 -1.380047 -0.237226 0.797319 -0.408421 -0.339174 0.355842 0.022808 -0.329388 -0.076242 0.286411 -0.244245 +GTTGC -0.926230 -0.357312 -0.449725 0.493887 -0.093518 0.462110 0.782828 -0.672504 0.284371 -0.767031 0.163471 -0.273015 +GGGTC -1.247936 -0.618028 -0.682925 0.193747 0.153944 0.152602 0.654966 -0.526593 -0.486484 -0.659995 0.520846 0.009731 +ACGGA -0.273857 -1.103841 -0.367101 0.783272 -0.365586 -0.290369 0.096025 -0.070206 -0.513375 -0.410419 0.185385 -0.136720 +CGGT -1.140708 -0.633247 -0.427353 0.442389 -0.110015 0.074489 0.222283 -0.388729 -0.058291 -0.453630 0.369481 -0.100225 +TTACC -0.203104 -0.373380 -1.112447 1.130777 0.089670 0.594548 -0.151965 -0.065474 0.494756 0.435335 0.310413 -0.132686 +GGTTG -1.352546 -0.677329 -0.387213 0.538478 -0.118193 0.334822 0.990577 -0.270109 -0.310158 -0.831364 -0.131423 -0.070000 +CGCG -0.700150 -0.861808 -0.675985 0.458603 -0.240535 -0.125051 -0.098586 -0.523563 -0.103982 -0.797024 0.729324 -0.290613 +GGCCC -0.641056 -0.720031 -0.964607 0.532374 -0.237140 -0.219688 -0.164855 -0.244831 0.042221 -0.768905 1.163453 -0.223204 +GGTGC -1.191547 -0.932504 -0.317601 0.493087 -0.141554 -0.104121 0.195190 -0.590336 -0.043182 -0.891308 0.328683 -0.301506 +TAGCC -0.601893 -0.057910 -0.839010 0.908572 -0.106936 -0.455558 -0.163809 -0.185867 0.154558 0.023801 0.561576 -0.484584 +TCACG -0.331694 -0.756158 -0.611528 0.382169 -0.060906 0.240165 -0.048151 -0.978595 -0.151751 -0.119307 0.524874 0.004476 +GTTAG -1.211526 -0.245601 -0.362296 1.016249 -0.304541 0.045837 0.701337 -0.129555 -0.251028 0.427330 -0.259695 -0.000441 +CGGAA -0.193777 -1.109334 -0.375152 0.801438 -0.275697 -0.409404 0.437466 0.029565 -0.390232 -0.349916 0.233074 -0.156516 +GCCCC -0.543179 -0.536612 -1.114306 0.667932 -0.481622 -0.266310 -0.258603 -0.238947 0.202117 -0.581706 1.575316 -0.320104 +TCGAG -0.400636 -0.214896 -0.839600 0.727111 -0.267275 -0.129320 0.353460 -0.501178 -0.597706 -0.087421 0.352267 0.249841 +AACGG -0.229920 -1.198721 -0.362757 0.744683 -0.285831 -0.232610 0.180440 -0.093999 -0.414665 -0.319347 0.153013 -0.206474 +GGTCC -1.029087 -0.401944 -0.878039 0.306388 -0.020188 0.282316 0.536416 -0.267302 -0.150312 -0.551952 0.866736 0.116088 +GAACG -0.188986 -1.106388 -0.276724 0.881456 -0.475167 -0.340324 0.150064 -0.034145 -0.479223 -0.312507 0.168404 -0.240975 +CCCTA -0.062157 -0.121319 -1.101618 1.091502 -0.182320 -0.104856 -0.127645 -0.020292 0.309634 0.413395 0.865699 -0.573650 +AGTAC -0.681305 -0.710719 -0.202419 1.091855 -0.239656 -0.004369 -0.046954 -0.067777 -0.111452 0.711158 0.071853 -0.026318 +TAACC 0.400545 -0.607713 -0.675800 1.387002 -0.161264 -0.151748 0.025016 0.177150 0.461740 0.611894 0.605894 -0.181712 +GGGTA -1.329334 -0.849705 -0.152728 0.943814 0.138591 -0.271005 0.362596 -0.056568 -0.230316 -0.265998 -0.312831 -0.150704 +GTATC -0.452514 0.001361 -0.250960 1.143183 0.413589 -0.039476 0.447791 -0.663490 0.149985 0.022048 0.175171 0.150709 +TACCC -0.133141 -0.431599 -0.945203 1.276265 -0.014671 0.001568 -0.308156 0.015174 0.610404 0.445626 0.781542 -0.122414 +CGAAA 0.102822 -0.992728 -0.455612 0.717579 -0.382381 -0.497190 0.434715 -0.020288 -0.373273 -0.018840 0.407733 -0.194739 +CTAGC -0.295030 -0.115588 -0.777854 0.700932 -0.167783 -0.222328 -0.068082 -0.680382 -0.261413 0.304389 0.488086 -0.800260 +GGTTA -1.063436 -0.543723 -0.405846 0.869414 0.115840 0.277529 0.597117 -0.094302 -0.049425 0.221094 -0.442276 -0.171734 +GTACT -0.547393 -0.443837 -0.330419 1.006660 -0.009204 0.602387 0.155667 -0.323536 0.209008 0.260433 0.123488 -0.398673 +TACG -0.368413 -0.605276 -0.338741 0.897797 0.028411 0.036714 0.046810 -0.235390 0.128427 0.112522 -0.029195 -0.157940 +GTCG -0.724763 -0.477590 -0.463750 0.585480 -0.195914 -0.108756 0.394619 -0.450790 -0.358102 -0.363147 0.413264 0.048780 +CCCCG -0.375266 -0.573682 -1.233529 0.635793 -0.404026 -0.045286 -0.115574 -0.244039 0.131680 -0.488027 1.352546 -0.171418 +CACGT -0.520192 -0.790287 -0.443412 0.527398 -0.325077 0.329281 -0.083708 -0.783537 0.166098 -0.060181 0.456837 0.060547 +CGAGT -0.589556 -0.319755 -0.582026 0.784610 -0.318111 -0.052504 0.441998 -0.430102 -0.459019 -0.075109 0.436624 0.130173 +CGTA -0.408521 -0.532135 -0.298638 0.901749 -0.104564 0.017570 0.112967 -0.242331 0.078879 0.184698 0.129042 -0.069725 +GCTAC -0.174262 -0.508808 -0.657724 0.873402 -0.062157 0.032478 -0.251073 -0.616789 0.032184 0.339855 0.381037 -0.734582 +TCCGT -0.536947 -0.321903 -0.954732 0.446924 -0.117954 0.303076 0.404911 -0.423617 0.049534 -0.067890 0.690258 0.104640 +GCTAG -0.804189 -0.093107 -0.493666 0.834158 -0.285267 -0.510244 0.185819 -0.595046 -0.522343 -0.008508 0.044244 -0.852153 +TTCCG -0.511965 -0.270216 -1.180581 0.459000 -0.133351 0.370074 0.438129 -0.286542 -0.021052 -0.081989 0.439939 0.104487 +CGGAG -0.719178 -0.939722 -0.484738 0.550398 -0.346917 -0.285305 -0.021201 -0.317161 -0.636255 -0.564429 0.216419 -0.260795 +AACGA 0.149778 -1.069527 -0.359851 0.882328 -0.426000 -0.338530 0.152856 -0.122873 -0.425076 -0.082954 0.198139 -0.181903 +CGTGG -0.873154 -0.979990 -0.335730 0.478329 -0.196557 -0.036425 0.116799 -0.270355 -0.113384 -0.674938 0.422740 -0.180763 +GTACC -0.607947 -0.471478 -0.343051 1.029783 -0.159998 0.093809 -0.145651 -0.052249 0.118954 0.182023 0.612431 -0.103676 +TTTCG -0.231938 -0.289031 -0.967404 0.512151 -0.032645 0.333852 0.610534 -0.394823 0.023959 0.016481 0.082527 -0.047843 +CCTCG -0.377913 -0.252912 -0.947920 0.493249 -0.136534 -0.052474 0.143583 -0.480184 -0.242457 -0.453040 0.845000 -0.391427 +CGTGA -0.521036 -0.686320 -0.183936 0.716711 -0.484820 -0.027326 0.115270 -0.565061 -0.262784 -0.557440 0.420688 -0.097739 +CACGC -0.127388 -0.980128 -0.671412 0.475919 -0.383216 -0.075794 -0.336366 -0.787249 0.014089 -0.174688 0.685969 -0.107888 +ACGAA 0.205398 -1.055826 -0.300626 0.888046 -0.326606 -0.302242 0.201296 -0.097452 -0.356158 0.021863 0.222277 -0.195192 +ACGTG -0.585974 -0.847456 -0.217989 0.609915 -0.265743 0.274918 0.054310 -0.604133 0.058043 -0.299446 0.413109 -0.001336 +CCCGT -0.419841 -0.436764 -0.885970 0.589471 -0.312090 0.189188 0.151307 -0.224743 0.031249 -0.227089 1.024117 -0.056643 +CCGCC -0.345426 -0.434015 -1.204026 0.595684 -0.245033 -0.117360 -0.097869 -0.373252 0.165582 -0.599016 1.346913 -0.273665 +CGACC -0.166326 -0.632692 -0.825299 0.801059 -0.403804 0.062711 -0.313445 -0.167800 -0.079550 -0.333790 0.943130 -0.184030 +TTCGT -0.643166 -0.191774 -0.884835 0.547137 -0.029743 0.388291 0.563181 -0.413282 0.103828 -0.130923 0.172091 0.052708 +CCCGC -0.244432 -0.524302 -1.138211 0.612042 -0.371739 -0.053532 -0.130462 -0.298863 0.213391 -0.400231 1.401134 -0.386383 +CACCG -0.206368 -0.821779 -0.729557 0.454959 -0.358086 0.133321 -0.236557 -0.430161 0.061014 -0.151694 0.860965 -0.070934 +GGCCG -0.797742 -0.815253 -0.739779 0.482782 -0.285686 -0.354930 -0.106343 -0.436871 -0.314524 -0.550706 0.602963 -0.286204 +GGTAC -0.829336 -0.880713 -0.270901 0.823419 0.116432 0.056804 -0.096335 -0.122218 0.006555 0.017807 0.102380 -0.134206 +CCGGG -0.867805 -0.749133 -0.717289 0.374862 -0.108617 -0.127655 0.121524 -0.244151 -0.302449 -0.653319 0.561792 -0.258347 +CCGTT -0.494501 -0.222600 -0.919294 0.530618 -0.194967 0.277630 0.374470 -0.323524 0.043561 -0.110205 0.463619 0.181359 +CGTTT -0.517253 -0.323088 -0.867398 0.469776 -0.082596 0.519946 0.657605 -0.378574 0.061220 0.004971 0.109022 0.134902 +CGTCT -0.480298 -0.157736 -0.622934 0.416529 -0.087258 0.357001 0.544606 -0.836662 -0.158761 -0.066779 0.717294 -0.183547 +CGCCT -0.429550 -0.292227 -1.062510 0.608611 -0.149747 0.103371 -0.027934 -0.391369 0.055607 -0.484675 1.113053 -0.440792 +CCGTC -0.357375 -0.335956 -0.893649 0.426339 -0.186191 0.172594 0.339778 -0.507567 0.065013 -0.008045 1.048594 0.081269 +ACACG -0.081719 -1.182680 -0.432653 0.670728 -0.231654 0.067067 -0.341269 -0.606723 -0.076468 0.097727 0.304015 -0.040509 +CCACG -0.149409 -0.819499 -0.676335 0.622940 -0.334620 -0.062970 -0.304201 -0.495227 -0.013420 -0.190371 0.762221 -0.059601 +CCGTG -0.588261 -0.695104 -0.439736 0.552531 -0.250261 0.021377 0.110306 -0.339608 -0.002809 -0.555859 0.663567 -0.098860 +CAGCG -0.512082 -0.844876 -0.436958 0.368685 -0.447656 -0.299540 -0.106542 -0.845080 -0.231326 -0.468797 0.681552 -0.181559 +CGACT -0.201901 -0.543268 -0.713634 0.551645 -0.312790 0.382379 0.017375 -0.502457 -0.233378 -0.286894 0.470475 -0.453402 +CTTCG -0.286357 -0.383937 -0.965047 0.373331 -0.152414 0.197196 0.157872 -0.388389 -0.132482 -0.114664 0.518216 -0.364880 +CGAGA -0.165410 -0.436352 -0.471485 0.801252 -0.330484 -0.243850 -0.021742 -0.421763 -0.643137 -0.229712 0.146589 -0.106799 +GCCGA -0.407111 -0.602637 -0.529294 0.602087 -0.434476 -0.366684 -0.068828 -0.329131 -0.424397 -0.478287 0.541047 -0.365314 +CCGAG -0.399968 -0.438499 -0.558031 0.657959 -0.381229 -0.215392 -0.026804 -0.318095 -0.368507 -0.390165 0.478317 -0.092120 +CACGA -0.122931 -0.905882 -0.503564 0.632138 -0.279625 -0.021412 -0.157577 -0.338502 -0.162197 -0.142467 0.276022 -0.112294 +CGCTT -0.473551 -0.358934 -0.834581 0.441408 -0.202657 0.256149 0.301242 -0.411218 0.003701 -0.308324 0.254918 -0.408152 +CGGAT -0.289932 -0.604723 -0.408101 0.762684 0.015697 -0.197890 0.236037 -0.270392 -0.212218 -0.433359 -0.045932 -0.043860 +CTCGC -0.472592 -0.309421 -0.931825 0.391964 -0.182415 0.086413 0.254330 -0.764379 -0.194554 -0.326012 0.637058 -0.508468 +AACCG -0.070254 -0.932400 -0.342850 0.746811 -0.289201 -0.197483 0.054653 -0.058776 -0.095364 -0.124877 0.419608 -0.225960 +TCCGG -0.677184 -0.497100 -0.766141 0.346089 -0.158717 0.001503 0.347875 -0.157484 -0.232535 -0.372260 0.503631 -0.097252 +ACGTT -0.298152 -0.486043 -0.563967 0.559169 -0.091828 0.435663 0.325300 -0.451966 0.101245 0.064762 0.113744 0.030657 +AGGCG -0.693029 -0.887536 -0.468456 0.473046 -0.314892 -0.366654 0.015299 -0.438797 -0.484534 -0.464563 0.259882 -0.256579 +TCCCG -0.351780 -0.293988 -1.000387 0.492485 -0.184104 0.079477 0.133300 -0.386972 -0.005645 -0.309175 0.873770 -0.130330 +TCGTT -0.518812 -0.230222 -0.835267 0.497064 0.042455 0.418355 0.502562 -0.453511 0.017724 0.003985 0.269426 0.051241 +GCGTG -0.787393 -0.703127 -0.349594 0.503886 -0.107014 0.031416 0.205509 -0.552862 -0.062251 -0.565686 0.422272 -0.095304 +TGCCG -0.523509 -0.406063 -0.605171 0.564071 -0.112236 0.010295 0.179925 -0.520324 0.128643 -0.743783 0.586912 -0.329640 +CACGG -0.358781 -0.860549 -0.579621 0.466104 -0.242156 -0.175153 -0.167504 -0.474892 -0.141570 -0.273364 0.354026 -0.016941 +GGCGG -0.836954 -0.918718 -0.500624 0.420732 -0.135050 -0.250781 0.106635 -0.427398 -0.306385 -0.657943 0.215625 -0.304415 +TCTCG -0.451575 -0.283146 -0.584183 0.403733 0.065349 0.139809 0.502512 -0.670341 -0.193487 -0.198483 0.556544 -0.197696 +CGTTC -0.423946 -0.273342 -0.856143 0.545901 -0.082457 0.229129 0.397699 -0.467744 0.010213 -0.066457 0.416456 0.098559 +CGGTG -0.818737 -0.728966 -0.221138 0.561676 -0.214117 -0.075706 0.277083 -0.332494 -0.104761 -0.623444 0.296884 -0.102865 +CTCGG -0.451754 -0.501510 -0.709068 0.367947 -0.107260 0.018473 0.122404 -0.484472 -0.254195 -0.393008 0.517602 -0.390354 +TGGCG -0.665187 -0.659684 -0.450084 0.447280 -0.043475 0.011956 0.196510 -0.418927 -0.000670 -0.551770 0.334049 -0.257389 +CGATG -0.362892 -0.404994 -0.437503 0.666855 -0.053045 -0.172691 0.209754 -0.525939 0.023969 -0.525281 0.293128 -0.157228 +CTCCG -0.408807 -0.357918 -0.912604 0.476411 -0.258892 0.085532 0.118504 -0.439525 -0.083794 -0.351206 0.852738 -0.269190 +GAGCG -0.543680 -0.584256 -0.417622 0.516684 -0.317377 -0.239642 0.080388 -0.443544 -0.344651 -0.379205 0.219868 -0.202799 +CATCG -0.063246 -0.489738 -0.632789 0.629149 0.000188 -0.085039 0.220922 -0.585589 -0.081607 -0.140393 0.272174 0.038675 +GTCGA -0.382934 -0.452094 -0.376470 0.754287 -0.221703 -0.123545 0.393221 -0.417440 -0.335597 -0.175288 0.344645 -0.046984 +AGCCG -0.474147 -0.483733 -0.525696 0.662010 -0.375254 -0.262476 -0.016008 -0.369004 -0.417538 -0.373559 0.418480 -0.338331 +TCGGC -0.466938 -0.454863 -0.820575 0.290655 -0.010339 0.093387 0.194906 -0.474234 -0.065728 -0.301291 0.438121 -0.323361 +GCGGC -0.648872 -0.717351 -0.649468 0.454086 -0.168109 -0.133933 0.042648 -0.524051 -0.138949 -0.521092 0.351407 -0.287102 +CGCCA -0.214474 -0.622017 -0.715060 0.561129 -0.246632 -0.133836 -0.227705 -0.417287 -0.024690 -0.233869 0.748698 -0.065573 +ACGGG -0.466752 -0.962560 -0.444257 0.552617 -0.148012 -0.121576 0.035144 -0.182743 -0.342718 -0.374328 0.134276 -0.190192 +GCCGC -0.496839 -0.594066 -0.763507 0.530384 -0.244060 -0.058745 -0.051718 -0.450387 0.010869 -0.520913 0.769574 -0.382824 +TCGCT -0.375630 -0.263814 -0.817717 0.399889 -0.061507 0.127424 0.314318 -0.698099 -0.132152 -0.302845 0.528710 -0.483039 +GCCGG -0.751778 -0.774378 -0.539492 0.460410 -0.218413 -0.313424 -0.010063 -0.386277 -0.233104 -0.649928 0.512788 -0.308681 +CGGGT -0.820998 -0.736557 -0.445165 0.439127 -0.028262 0.024860 0.233374 -0.308633 -0.122696 -0.410855 0.389114 -0.106407 +ACCCG -0.201484 -0.727324 -0.628361 0.633656 -0.303473 -0.000396 -0.119276 -0.208138 -0.021043 -0.292065 0.810670 -0.233412 +ACCGT -0.193468 -0.802036 -0.456515 0.650912 -0.178569 0.042936 0.083358 -0.185900 0.009414 -0.016566 0.509371 -0.039892 +AACGT -0.098498 -0.829323 -0.301959 0.651808 -0.259874 0.017177 0.280198 -0.245330 -0.027202 0.071291 0.204441 -0.068710 +CGCTC -0.237850 -0.362871 -0.806219 0.417680 -0.156572 0.105298 0.128349 -0.552845 -0.022362 -0.172157 0.602789 -0.207898 +CGGCT -0.597821 -0.458727 -0.733738 0.345803 -0.090892 0.120735 0.232628 -0.596288 -0.152259 -0.430876 0.368100 -0.516306 +AAGCG -0.107023 -0.725251 -0.339551 0.583578 -0.354191 -0.368159 0.276933 -0.349388 -0.280713 0.077151 0.313137 -0.253413 +ACGCA -0.065004 -0.889227 -0.507359 0.536459 -0.342211 -0.120726 -0.135337 -0.653929 -0.101773 -0.137492 0.382333 -0.107558 +GGCGA -0.576070 -0.773203 -0.448228 0.547380 -0.183657 -0.219968 0.048481 -0.338812 -0.324336 -0.419298 0.183633 -0.261075 +CGTCA -0.277317 -0.475235 -0.739739 0.373455 -0.115517 0.126889 0.289785 -0.703365 -0.073504 0.075245 0.417738 0.178110 +GCACG -0.434685 -0.879033 -0.440400 0.468149 -0.213391 -0.202550 -0.129117 -0.563991 -0.037815 -0.296861 0.387920 -0.221875 +AGTCG -0.527948 -0.482043 -0.460461 0.621831 -0.215525 -0.188825 0.358044 -0.359918 -0.338849 -0.299293 0.320548 -0.046467 +CGCAG -0.460630 -0.809394 -0.548707 0.443045 -0.361781 -0.196276 -0.195451 -0.678124 -0.270389 -0.247754 0.438964 -0.130203 +GGACG -0.415584 -0.783275 -0.422665 0.581951 -0.174896 -0.082147 0.014989 -0.320799 -0.306517 -0.398263 0.212434 -0.092576 +CGGGG -0.914592 -0.827977 -0.486573 0.406177 -0.151291 -0.147256 0.216434 -0.282415 -0.429042 -0.592139 0.291483 -0.301775 +AGCGA -0.341911 -0.656392 -0.462366 0.656375 -0.327727 -0.330030 -0.113359 -0.410396 -0.436376 -0.134014 0.301270 -0.263321 +CCCGG -0.514651 -0.598900 -0.828988 0.493712 -0.175403 -0.071567 -0.129275 -0.257059 -0.011617 -0.360405 0.860788 -0.148468 +TACGT -0.322860 -0.461412 -0.531163 0.740162 -0.029723 0.184191 0.212093 -0.315109 0.112549 0.198279 0.012706 -0.127175 +TGACG -0.370288 -0.485748 -0.360608 0.698843 -0.261336 0.206244 0.177460 -0.346554 -0.213162 -0.284042 0.279599 -0.149088 +CGCAA 0.102098 -0.822021 -0.433089 0.552336 -0.226742 -0.121775 0.168317 -0.464523 -0.095527 -0.027097 0.272132 -0.165823 +GGGCG -0.820353 -0.866756 -0.487652 0.428756 -0.080873 -0.144092 0.138153 -0.389427 -0.259378 -0.586749 0.240294 -0.237797 +GCGAT -0.289120 -0.324762 -0.476519 0.673496 -0.042171 -0.070639 0.296068 -0.356293 -0.136547 -0.205721 0.119970 -0.066805 +CGAAC 0.039353 -0.797154 -0.369228 0.709876 -0.377979 -0.120363 0.147874 -0.279900 -0.256929 -0.086633 0.285723 -0.172980 +TCGGG -0.524786 -0.572979 -0.609160 0.434972 -0.056750 0.068840 0.183531 -0.351442 -0.168098 -0.316283 0.453335 -0.250833 +CGGCC -0.476041 -0.642754 -0.745019 0.440230 -0.230813 -0.155961 0.011777 -0.348004 -0.010666 -0.422632 0.620876 -0.223809 +CCGCT -0.325854 -0.466549 -0.829710 0.478538 -0.165270 0.102004 0.122351 -0.355520 0.049354 -0.324870 0.628762 -0.357981 +ACCGA -0.106413 -0.653308 -0.486087 0.694842 -0.275842 -0.102149 -0.070441 -0.286930 -0.109147 -0.091236 0.427159 -0.098101 +ACGTC -0.245764 -0.579713 -0.554009 0.496065 -0.179395 0.176125 0.232766 -0.548613 -0.136213 0.051879 0.418830 -0.083276 +TCGTG -0.486318 -0.336027 -0.404054 0.643320 -0.097331 0.184259 0.412504 -0.451609 0.007926 -0.187325 0.248747 -0.003926 +CTGCG -0.462734 -0.413082 -0.506776 0.496259 -0.029565 0.043741 0.104200 -0.630981 -0.100978 -0.454367 0.628039 -0.404546 +ATGCG -0.343472 -0.502302 -0.458071 0.585624 -0.040570 -0.101655 0.125397 -0.556467 0.097517 -0.379726 0.257367 -0.024566 +CCGGA -0.436555 -0.574759 -0.550428 0.537936 -0.192829 -0.151823 0.103784 -0.193655 -0.392899 -0.296846 0.362026 -0.176557 +ACCGC -0.241132 -0.620586 -0.608078 0.520657 -0.226606 -0.023836 -0.033685 -0.358251 -0.025987 -0.265500 0.694271 -0.220920 +GACGC -0.222254 -0.568510 -0.538240 0.586999 -0.272968 -0.071521 0.014148 -0.390597 -0.247012 -0.265979 0.468874 -0.193858 +CGTCC -0.413655 -0.393947 -0.746927 0.487635 -0.149193 0.179423 0.288193 -0.407237 0.027138 -0.141794 0.744205 -0.062148 +CCGAC -0.206956 -0.596627 -0.574444 0.668589 -0.358016 0.061100 -0.181831 -0.338690 -0.147103 -0.227192 0.586331 -0.215455 +CGCAT -0.222156 -0.519996 -0.536831 0.614073 0.079099 -0.117892 0.118352 -0.552488 0.141444 -0.379140 0.108631 0.049529 +CGGGA -0.503616 -0.747185 -0.418299 0.590156 -0.083306 -0.154221 0.097930 -0.260557 -0.373248 -0.441265 0.117802 -0.201074 +GCGCT -0.399782 -0.377957 -0.632020 0.472533 -0.139734 0.015527 0.161598 -0.456340 -0.147475 -0.273635 0.363751 -0.366090 +CGCTG -0.386916 -0.479070 -0.451738 0.497235 -0.128430 0.001409 0.163675 -0.572252 -0.209647 -0.494481 0.456245 -0.411336 +TTCGG -0.334295 -0.454279 -0.694869 0.434252 -0.088603 0.232162 0.306453 -0.384733 -0.113634 -0.061941 0.198542 -0.235188 +ACGTA -0.230057 -0.639951 -0.309659 0.829603 -0.076099 0.003958 0.190226 -0.230896 0.046032 0.169321 0.033017 -0.005992 +CGTGT -0.585202 -0.446854 -0.241588 0.706166 -0.080938 0.219999 0.411893 -0.382718 0.128682 -0.141867 0.309192 0.060145 +AGCGC -0.331692 -0.442645 -0.524431 0.475463 -0.226426 -0.164670 0.007598 -0.509975 -0.160724 -0.219240 0.421503 -0.261139 +TCGCA -0.108844 -0.538712 -0.547176 0.492145 -0.132100 -0.057331 0.193284 -0.505977 -0.043940 -0.008726 0.286018 -0.014408 +CCGGC -0.624980 -0.703551 -0.791814 0.358113 -0.155101 -0.168302 -0.023914 -0.427890 -0.116399 -0.497477 0.598436 -0.356566 +CGGCA -0.549784 -0.712728 -0.632042 0.316846 -0.210475 -0.165791 -0.014484 -0.592061 -0.079596 -0.415977 0.340938 -0.196027 +AGACG -0.237824 -0.770035 -0.315898 0.682984 -0.368620 -0.294596 0.004862 -0.316529 -0.499754 -0.162102 0.181643 -0.145873 +ATCGG -0.205183 -0.532325 -0.444740 0.632507 -0.116898 -0.223943 0.363334 -0.266608 -0.232768 -0.179178 0.160390 -0.038234 +TGTCG -0.394660 -0.326422 -0.385729 0.648810 -0.010913 0.087345 0.384130 -0.488847 0.019455 -0.250753 0.343488 -0.022074 +GCGAC -0.276846 -0.787767 -0.546925 0.564363 -0.254891 -0.119595 -0.188500 -0.506448 -0.273106 -0.342379 0.417883 -0.219653 +CGTTG -0.514559 -0.418284 -0.542235 0.507408 -0.096386 0.250994 0.464462 -0.297132 -0.002143 -0.354689 0.127427 -0.028524 +CCCGA -0.199981 -0.526285 -0.609366 0.680859 -0.262893 -0.221363 -0.033971 -0.241492 -0.152580 -0.307536 0.590239 -0.111345 +CTCGT -0.366445 -0.320675 -0.586321 0.483631 -0.101957 0.198749 0.357367 -0.502450 -0.063385 -0.048287 0.441496 -0.080085 +TCGAC -0.124443 -0.449670 -0.652815 0.559104 -0.144946 0.121261 0.166282 -0.423387 -0.190685 -0.080188 0.376097 -0.106939 +ACGCT -0.131364 -0.531940 -0.660891 0.465052 -0.137893 0.166441 0.048176 -0.616965 -0.129943 -0.189144 0.486461 -0.240088 +GCGGG -0.775289 -0.793892 -0.455817 0.390369 -0.082674 -0.164991 0.190708 -0.320110 -0.172838 -0.562905 0.360130 -0.285912 +CGTGC -0.487339 -0.618893 -0.454838 0.471791 -0.276626 0.035122 0.174924 -0.518460 0.113068 -0.372686 0.527474 -0.135066 +ATCCG -0.225181 -0.334098 -0.697559 0.647802 -0.025000 -0.090607 0.129362 -0.312538 -0.139745 -0.150950 0.350897 -0.025859 +CGACA -0.171179 -0.736149 -0.368703 0.671755 -0.314250 -0.081645 -0.100074 -0.381362 -0.216151 -0.085109 0.264272 0.011279 +TGCGT -0.448648 -0.426062 -0.486615 0.493534 -0.148527 0.181927 0.353644 -0.471349 -0.036136 -0.304185 0.337245 -0.214360 +AGCGT -0.547396 -0.558434 -0.445338 0.431446 -0.196502 -0.000196 0.246238 -0.471807 -0.237977 -0.242323 0.318185 -0.137158 +TCGGA -0.136931 -0.545748 -0.366424 0.697801 -0.069058 -0.195543 0.344069 -0.222305 -0.232200 -0.121701 0.022942 -0.019696 +CGTAT -0.330300 -0.413187 -0.375205 0.837034 0.056382 0.008324 0.243181 -0.294948 0.055837 -0.011830 0.037057 -0.100891 +TATCG -0.030397 -0.324937 -0.505290 0.844141 0.087780 -0.206492 0.250227 -0.360220 -0.034874 0.059162 0.075553 -0.000705 +CCGAA -0.039838 -0.616373 -0.446593 0.726173 -0.344115 -0.194678 0.071255 -0.119306 -0.218562 -0.130705 0.463780 -0.162279 +GGCGT -0.692751 -0.663109 -0.376886 0.495399 -0.150556 -0.033506 0.179091 -0.462294 -0.161648 -0.400980 0.383446 -0.136001 +CCGCG -0.445701 -0.563728 -0.660316 0.524868 -0.245792 -0.170549 -0.005687 -0.306010 -0.089015 -0.426736 0.580933 -0.167557 +ACCGG -0.500297 -0.613309 -0.414532 0.582121 -0.159215 0.027882 0.036008 -0.287005 -0.164711 -0.224234 0.350922 -0.127628 +GCGCC -0.458258 -0.503787 -0.659363 0.504774 -0.125089 -0.129464 -0.047900 -0.390018 -0.041555 -0.330261 0.618429 -0.268691 +GCGAG -0.429487 -0.538236 -0.442563 0.557076 -0.239196 -0.169389 0.089661 -0.412147 -0.370539 -0.340398 0.206790 -0.256814 +CGAGG -0.529151 -0.625227 -0.487002 0.527319 -0.231172 -0.265040 0.087981 -0.330248 -0.428651 -0.416714 0.237409 -0.158720 +CGATA -0.202388 -0.270716 -0.476478 0.823153 -0.030098 -0.122800 0.076992 -0.343948 -0.055396 -0.090411 0.090902 -0.034086 +CGCAC -0.146793 -0.811000 -0.574032 0.542049 -0.296246 -0.072195 -0.179313 -0.575347 0.023579 -0.036885 0.450647 -0.089615 +ACGAC 0.013636 -0.600292 -0.558943 0.684728 -0.317206 0.000319 -0.052488 -0.321856 -0.132987 -0.061904 0.453903 -0.154850 +CGGGC -0.628906 -0.710473 -0.599429 0.352253 -0.065310 -0.121376 0.116042 -0.413046 -0.204551 -0.524099 0.416913 -0.290506 +TAACG -0.205286 -0.593172 -0.311684 0.806915 -0.134833 -0.012945 0.252400 -0.239332 -0.035998 0.175860 0.046032 -0.108639 +CGGCG -0.570450 -0.624876 -0.524466 0.477089 -0.175960 -0.086276 0.052300 -0.457448 -0.160185 -0.488376 0.403401 -0.241904 +GCTCG -0.424778 -0.346559 -0.587795 0.506885 -0.156728 -0.038100 0.213100 -0.596222 -0.197716 -0.329253 0.379913 -0.323988 +ATCGC -0.086935 -0.362953 -0.532490 0.623308 -0.047160 -0.112215 0.132953 -0.383721 -0.071413 -0.128753 0.370196 -0.148924 +GCGTC -0.449757 -0.314394 -0.583210 0.427762 -0.099097 0.055907 0.276969 -0.584386 -0.117283 -0.181784 0.493039 -0.193354 +GCGAA -0.145101 -0.736295 -0.370081 0.578694 -0.249691 -0.225724 0.277664 -0.232927 -0.251546 -0.163728 0.296752 -0.170030 +GACCG -0.321978 -0.624212 -0.492239 0.654836 -0.190396 -0.014365 0.011373 -0.260058 -0.193456 -0.324356 0.344492 -0.173260 +ACGCC -0.247960 -0.528749 -0.619486 0.588517 -0.127053 -0.012326 -0.008774 -0.376959 -0.024281 -0.249685 0.480366 -0.243875 +CGAGC -0.304625 -0.483243 -0.521851 0.480970 -0.301243 -0.224238 0.027212 -0.484041 -0.184893 -0.224424 0.474282 -0.212485 +CCGCA -0.271072 -0.519650 -0.540071 0.499525 -0.157119 -0.029133 0.057450 -0.461024 0.023288 -0.187676 0.495086 -0.134637 +ACGAG -0.246347 -0.627337 -0.317545 0.680256 -0.314233 -0.115720 0.069530 -0.282214 -0.310904 -0.135673 0.115775 -0.043477 +TCGTC -0.452266 -0.279708 -0.605305 0.447262 -0.010431 0.148419 0.373534 -0.543568 -0.088910 -0.089723 0.460159 -0.055217 +CAACG -0.152266 -0.699951 -0.439540 0.562573 -0.244537 -0.136161 0.082546 -0.357494 -0.161112 -0.078742 0.346981 -0.066433 +AGCGG -0.489858 -0.640975 -0.465372 0.470190 -0.190990 -0.100803 0.073985 -0.330791 -0.290839 -0.257061 0.314311 -0.183214 +CGTAA -0.151968 -0.543396 -0.236758 0.838595 -0.092529 -0.078159 0.320904 -0.226204 0.042648 0.172675 0.121151 -0.098718 +GCGGA -0.355915 -0.507745 -0.427571 0.549315 -0.082162 -0.238483 0.115367 -0.338415 -0.284694 -0.304129 0.205628 -0.146251 +CGAAG -0.265007 -0.602787 -0.369779 0.525654 -0.298096 -0.253067 0.245993 -0.207375 -0.354787 -0.116810 0.264749 -0.189595 +TTGCG -0.370081 -0.384818 -0.554628 0.552149 -0.072119 0.217068 0.386252 -0.430115 0.017340 -0.175700 0.083546 -0.158808 +GCGCA -0.283215 -0.548327 -0.414151 0.514201 -0.129973 -0.190355 0.084170 -0.500736 -0.029676 -0.257405 0.352888 -0.113105 +ATCGT -0.163909 -0.286558 -0.536350 0.681639 0.065614 0.044971 0.289047 -0.402536 -0.016284 0.026779 0.154998 -0.046284 +GCGGT -0.572750 -0.595085 -0.397541 0.526164 -0.105336 -0.050888 0.183004 -0.339857 -0.121871 -0.216447 0.109514 -0.188267 +TGCGA -0.320173 -0.439298 -0.439605 0.533407 -0.167121 0.055506 0.129666 -0.455497 -0.064979 -0.324903 0.307430 -0.221642 +GACGG -0.384768 -0.671104 -0.388056 0.533526 -0.255000 -0.099066 0.053290 -0.427142 -0.328877 -0.251776 0.203875 -0.139466 +TGCGC -0.365066 -0.443468 -0.487557 0.480764 -0.147466 0.009267 0.142632 -0.513327 -0.026978 -0.279984 0.384722 -0.189068 +GCGTT -0.481588 -0.439378 -0.452654 0.468470 -0.120060 0.117795 0.391710 -0.382168 -0.060303 -0.146511 0.129365 -0.093408 +AACGC -0.068652 -0.630813 -0.408677 0.606049 -0.180178 -0.096160 0.134059 -0.299133 -0.069403 -0.066432 0.287667 -0.182353 +ACGAT -0.128705 -0.430522 -0.376936 0.763564 -0.090634 -0.028745 0.184111 -0.299371 -0.083293 -0.073737 0.074782 -0.003800 +GACGT -0.255488 -0.540996 -0.400066 0.639803 -0.154867 -0.034693 0.208084 -0.396021 -0.180244 -0.085050 0.113966 -0.040065 +CGGTA -0.516894 -0.516273 -0.310716 0.684687 -0.064245 -0.130207 0.204610 -0.313069 -0.099518 -0.061256 0.167653 -0.135116 +GGCGC -0.457896 -0.550814 -0.552023 0.496862 -0.073760 -0.052175 0.133296 -0.368140 -0.106947 -0.300028 0.327231 -0.191664 +CGCGC -0.308852 -0.513625 -0.624583 0.493432 -0.156753 -0.084863 0.038175 -0.380130 -0.035033 -0.332173 0.531959 -0.191982 +ACGGT -0.402440 -0.623446 -0.395231 0.526788 -0.122882 0.068701 0.163061 -0.336590 -0.088629 -0.156998 0.233991 -0.139912 +CGCCC -0.293241 -0.471797 -0.729331 0.587407 -0.167596 -0.056450 -0.016141 -0.365633 0.068527 -0.302596 0.688650 -0.105246 +CTACG -0.280715 -0.428821 -0.401387 0.661560 -0.039642 0.075632 0.205912 -0.322726 -0.122753 0.065898 0.181970 -0.199822 +ACGGC -0.401424 -0.657139 -0.479933 0.542158 -0.156242 -0.051359 0.037696 -0.446217 -0.189606 -0.304853 0.337240 -0.163319 +GACGA -0.189915 -0.590707 -0.360642 0.625276 -0.241461 -0.236704 0.199881 -0.223505 -0.414000 -0.119173 -0.013003 -0.129538 +CGGAC -0.164330 -0.671596 -0.441421 0.578510 -0.199645 0.111430 -0.031580 -0.324589 -0.136593 -0.088614 0.177204 -0.139191 +GTTCG -0.402944 -0.342850 -0.479852 0.514347 -0.154924 0.082607 0.410178 -0.292603 -0.142243 -0.075073 0.169080 -0.020085 +ATACG -0.090094 -0.580180 -0.457058 0.721754 -0.024197 -0.068668 0.138086 -0.322184 -0.032424 0.040156 0.029166 -0.042486 +CGTTA -0.223553 -0.457377 -0.431272 0.720331 -0.086273 0.066946 0.351557 -0.214420 0.015445 0.149532 0.019111 -0.055375 +CCGTA -0.303075 -0.362178 -0.557315 0.619327 -0.056978 0.040030 0.182999 -0.255614 0.024865 0.007383 0.317119 -0.113736 +GCCCG -0.384530 -0.520979 -0.608213 0.541541 -0.158863 -0.045162 0.051376 -0.377724 -0.023441 -0.317445 0.545197 -0.211064 +TACGG -0.370160 -0.504998 -0.388306 0.587421 0.022069 0.027711 0.069857 -0.327986 0.020104 -0.133897 0.105236 -0.114708 +CGTAG -0.476094 -0.346519 -0.366748 0.634262 -0.170504 -0.104015 0.179189 -0.276805 -0.207465 -0.024654 0.170021 -0.197149 +TGCGG -0.398999 -0.504536 -0.432285 0.537358 -0.085261 0.034087 0.226994 -0.367840 -0.108131 -0.356557 0.221077 -0.145243 +TTACG -0.236292 -0.473604 -0.475913 0.631354 -0.088015 0.081631 0.215500 -0.314287 -0.039519 -0.003339 0.074504 -0.119621 +GGTCG -0.574984 -0.524829 -0.377737 0.501951 -0.038983 -0.042634 0.250995 -0.399930 -0.200999 -0.263265 0.210451 -0.073444 +TCGCC -0.185772 -0.409393 -0.594569 0.539231 -0.024437 -0.058715 0.093158 -0.442920 0.033101 -0.126059 0.406434 -0.110027 +TTCGC -0.102819 -0.366246 -0.614786 0.541889 -0.052502 0.048734 0.291639 -0.319630 -0.038650 -0.104914 0.195208 -0.085077 +ACGCG -0.242859 -0.635343 -0.475397 0.479896 -0.165585 -0.047275 0.038539 -0.416084 -0.079165 -0.109469 0.330991 -0.125055 +GATCG -0.226121 -0.456905 -0.399446 0.581662 -0.188968 -0.147126 0.134721 -0.395740 -0.273143 -0.208277 0.140676 -0.094014 +GTCGG -0.508656 -0.494334 -0.365415 0.521685 -0.156713 0.007489 0.220145 -0.371615 -0.182905 -0.167573 0.213623 -0.059781 +CCGGT -0.561139 -0.517116 -0.538092 0.459412 -0.088515 -0.076652 0.236603 -0.248306 -0.110348 -0.331555 0.344215 -0.078907 +CCGAT -0.099588 -0.332917 -0.605246 0.631191 -0.069362 0.070462 0.138640 -0.290114 0.006033 -0.095653 0.243154 -0.017623 +CGCCG -0.344761 -0.526319 -0.593243 0.513440 -0.167029 -0.016897 0.021763 -0.313657 -0.030754 -0.279858 0.500250 -0.160639 +TACGA -0.092660 -0.536912 -0.400560 0.751541 -0.079845 -0.078189 0.120846 -0.305334 -0.040610 0.032943 0.135429 -0.125256 +CGATC -0.108838 -0.251626 -0.593071 0.578051 -0.063068 -0.051605 0.252947 -0.469414 -0.140421 -0.095956 0.415250 -0.067044 +TCGGT -0.369767 -0.407088 -0.509585 0.470972 0.003509 0.125707 0.336480 -0.418337 -0.002470 -0.066973 0.235102 -0.031148 +GTGCG -0.383415 -0.430995 -0.314286 0.501182 -0.129276 -0.027896 0.289689 -0.359260 -0.067150 -0.219632 0.245757 -0.152424 +TCCGA -0.194751 -0.404632 -0.511424 0.545884 -0.088762 0.003023 0.176736 -0.277164 -0.127272 -0.133996 0.324471 -0.057588 +TCGTA -0.283059 -0.312990 -0.478522 0.666979 -0.005333 0.040512 0.291851 -0.348557 -0.025542 0.074121 0.078577 -0.056705 +GTCCG -0.353658 -0.449425 -0.421777 0.576208 -0.189285 0.072155 0.339138 -0.345316 -0.032824 -0.099695 0.296039 0.035040 +TCCGC -0.293458 -0.333518 -0.591953 0.524476 -0.063405 0.087426 0.193304 -0.332580 0.022918 -0.141085 0.417638 -0.133040 +TAGCG -0.407904 -0.396619 -0.404420 0.540912 -0.126083 -0.028343 0.199246 -0.382565 -0.143010 -0.087278 0.249347 -0.198207 +CGGTT -0.384998 -0.407548 -0.563982 0.444301 -0.148289 0.136485 0.306651 -0.321811 -0.081101 -0.130750 0.127250 -0.075119 +TCGCG -0.270429 -0.383314 -0.412022 0.501183 -0.105265 -0.080888 0.198538 -0.404948 0.001442 -0.194031 0.323984 -0.085535 +GTCGT -0.388617 -0.303313 -0.379626 0.499071 -0.072940 0.154594 0.303000 -0.357849 -0.011791 -0.189455 0.238224 -0.042206 +CGCGG -0.366069 -0.512628 -0.505562 0.461765 -0.128645 -0.042312 0.153577 -0.353670 -0.102785 -0.266521 0.333164 -0.188495 +CGCGT -0.374582 -0.462558 -0.315097 0.450726 -0.090603 -0.025118 0.159500 -0.397991 -0.073113 -0.177188 0.309968 -0.012666 +GTCGC -0.314364 -0.365752 -0.471445 0.492944 -0.078124 0.028717 0.219388 -0.412248 -0.124863 -0.208654 0.307030 -0.133129 +CGTAC -0.231989 -0.515924 -0.405067 0.551381 -0.090281 0.049059 -0.003500 -0.369985 0.031692 0.052212 0.189546 -0.123739 +CGCGA -0.263242 -0.464715 -0.458153 0.516283 -0.143764 -0.100829 0.083957 -0.379679 -0.158062 -0.215566 0.210149 -0.140516 +TACGC -0.129164 -0.485399 -0.350983 0.508205 -0.070275 0.000955 0.058663 -0.313882 -0.024150 0.027333 0.213847 -0.124891 +GTACG -0.305750 -0.440867 -0.293031 0.584459 -0.097787 0.021012 0.265455 -0.205004 -0.059021 0.051935 0.123577 -0.093836 +GCCGT -0.344722 -0.386229 -0.381525 0.457609 -0.132258 0.028346 0.227654 -0.227541 -0.039381 -0.099687 0.224988 -0.101407 +CGCTA -0.246201 -0.356035 -0.442264 0.492778 -0.066687 -0.004836 0.059976 -0.301553 -0.064673 -0.107613 0.229363 -0.158818 +CGGTC -0.271231 -0.438458 -0.469102 0.441723 -0.129808 -0.004119 0.153857 -0.351518 -0.078668 -0.149001 0.398349 -0.048920 +GCGTA -0.203792 -0.439294 -0.369355 0.608703 -0.076447 -0.082729 0.174762 -0.280989 -0.067737 0.042281 0.209963 -0.120883 +TACCG -0.215287 -0.437733 -0.418981 0.510446 -0.067884 -0.055887 0.124531 -0.259203 -0.030105 -0.023234 0.248707 -0.111617 +GCGCG -0.302618 -0.398203 -0.370657 0.439582 -0.159366 -0.052303 0.050585 -0.254473 -0.149318 -0.192549 0.211611 -0.169634 +CGACG -0.248661 -0.405836 -0.238310 0.351273 -0.095258 -0.048745 0.067618 -0.228590 -0.108037 -0.171406 0.165582 -0.142754 +CGTCG -0.241605 -0.208876 -0.312065 0.306069 -0.067835 -0.014787 0.115239 -0.239302 -0.015315 -0.055008 0.154019 -0.055982 diff --git a/tmp/dna2vec-20200513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt b/tmp/dna2vec-20200513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt new file mode 100644 index 0000000..8bad99f --- /dev/null +++ b/tmp/dna2vec-20200513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt @@ -0,0 +1,783 @@ +[2020-05-13 12:11:58.407435] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml +[2020-05-13 12:11:58.423391] INFO: Generic: kmer fragmenter: sliding +[2020-05-13 12:11:58.423391] INFO: SeqGenerator: Number of epochs: 1 +[2020-05-13 12:11:58.423391] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 +[2020-05-13 12:11:58.423391] INFO: Learner: Context window half size: 4 +[2020-05-13 12:11:58.423391] INFO: Learner: Use skipgram: 1 +[2020-05-13 12:11:58.424388] INFO: Learner: gensim_iters: 1 +[2020-05-13 12:11:58.424388] INFO: Learner: vec_dim: 12 +[2020-05-13 12:11:58.424388] INFO: gensim.models.word2vec: collecting all words and their counts +[2020-05-13 12:11:58.461290] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-13 12:11:58.461290] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:11:58.461290] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:11:58.473258] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-13 12:11:58.564015] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-13 12:11:58.575984] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-13 12:11:58.616874] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types +[2020-05-13 12:11:58.617871] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-13 12:11:58.617871] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-13 12:11:58.643802] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-13 12:11:58.645797] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-13 12:11:58.672725] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-13 12:11:58.673723] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-13 12:11:58.702152] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-13 12:11:58.702152] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-13 12:11:58.726088] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-13 12:11:58.737059] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-13 12:11:58.760995] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-13 12:11:58.760995] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-13 12:11:58.798402] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-13 12:11:58.799400] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-13 12:11:58.823336] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-13 12:11:58.829320] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-13 12:11:58.855251] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-13 12:11:58.864227] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-13 12:11:58.897644] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-13 12:11:58.897644] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-13 12:11:58.915596] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-13 12:11:58.923575] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-13 12:11:58.971448] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-13 12:11:58.972444] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-13 12:11:58.998881] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-13 12:11:59.002871] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-13 12:11:59.025809] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-13 12:11:59.030796] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-13 12:11:59.053734] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-13 12:11:59.054731] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-13 12:11:59.073680] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-13 12:11:59.073680] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-13 12:11:59.090635] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-13 12:11:59.097124] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-13 12:11:59.116072] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-13 12:11:59.124052] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-13 12:11:59.147987] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-13 12:11:59.151977] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-13 12:11:59.180900] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-13 12:11:59.181896] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-13 12:11:59.212814] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-13 12:11:59.213811] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-13 12:11:59.236750] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-13 12:11:59.241737] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-13 12:11:59.260686] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-13 12:11:59.260686] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-13 12:11:59.291603] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-13 12:11:59.292601] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-13 12:11:59.317534] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-13 12:11:59.319529] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-13 12:11:59.341470] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-13 12:11:59.347455] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-13 12:11:59.365414] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-13 12:11:59.365414] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-13 12:11:59.382360] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-13 12:11:59.387348] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-13 12:11:59.412281] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-13 12:11:59.412281] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-13 12:11:59.432227] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-13 12:11:59.437213] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-13 12:11:59.459155] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-13 12:11:59.465140] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-13 12:11:59.483091] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-13 12:11:59.483091] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-13 12:11:59.498051] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-13 12:11:59.506031] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-13 12:11:59.529966] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-13 12:11:59.538943] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-13 12:11:59.559886] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-13 12:11:59.560884] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-13 12:11:59.601774] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-13 12:11:59.602771] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-13 12:11:59.620723] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-13 12:11:59.620723] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-13 12:11:59.644659] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-13 12:11:59.645658] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-13 12:11:59.668595] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-13 12:11:59.674580] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-13 12:11:59.696520] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-13 12:11:59.702505] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-13 12:11:59.724446] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-13 12:11:59.729433] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-13 12:11:59.770323] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-13 12:11:59.771320] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:11:59.771320] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:11:59.772318] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-13 12:11:59.785284] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-13 12:11:59.785284] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-13 12:11:59.806227] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-13 12:11:59.813209] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-13 12:11:59.840136] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-13 12:11:59.844127] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-13 12:11:59.871053] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-13 12:11:59.871053] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-13 12:11:59.891997] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-13 12:11:59.895987] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-13 12:11:59.920921] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-13 12:11:59.923913] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-13 12:11:59.939869] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-13 12:11:59.939869] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-13 12:11:59.961811] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-13 12:11:59.964804] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-13 12:11:59.999709] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-13 12:11:59.999709] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-13 12:12:00.028632] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-13 12:12:00.033620] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-13 12:12:00.065533] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-13 12:12:00.066531] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-13 12:12:00.095453] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-13 12:12:00.095453] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-13 12:12:00.120387] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-13 12:12:00.124377] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-13 12:12:00.159283] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-13 12:12:00.159283] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-13 12:12:00.179230] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-13 12:12:00.187209] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-13 12:12:00.211144] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-13 12:12:00.215135] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-13 12:12:00.247048] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-13 12:12:00.247048] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-13 12:12:00.270984] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-13 12:12:00.277968] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-13 12:12:00.303896] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-13 12:12:00.312873] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-13 12:12:00.346782] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-13 12:12:00.346782] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-13 12:12:00.381688] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-13 12:12:00.381688] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-13 12:12:00.408618] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-13 12:12:00.420586] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-13 12:12:00.439533] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-13 12:12:00.439533] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-13 12:12:00.474442] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-13 12:12:00.474442] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-13 12:12:00.509852] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-13 12:12:00.509852] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-13 12:12:00.539773] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-13 12:12:00.545757] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-13 12:12:00.583655] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-13 12:12:00.591634] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-13 12:12:00.627046] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-13 12:12:00.627046] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-13 12:12:00.649985] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-13 12:12:00.650983] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-13 12:12:00.683894] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-13 12:12:00.683894] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-13 12:12:00.706833] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-13 12:12:00.710823] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-13 12:12:00.736753] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-13 12:12:00.736753] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-13 12:12:00.757697] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-13 12:12:00.763681] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-13 12:12:00.789612] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-13 12:12:00.791607] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-13 12:12:00.817537] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-13 12:12:00.819532] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-13 12:12:00.843467] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-13 12:12:00.847458] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-13 12:12:00.866407] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-13 12:12:00.873389] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-13 12:12:00.902310] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-13 12:12:00.903308] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-13 12:12:00.921259] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-13 12:12:00.921259] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-13 12:12:00.947190] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-13 12:12:00.947190] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-13 12:12:00.965142] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-13 12:12:00.965142] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-13 12:12:00.997057] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-13 12:12:00.997057] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:00.997057] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:00.998054] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-13 12:12:00.998054] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-13 12:12:00.998054] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-13 12:12:01.023985] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-13 12:12:01.027975] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-13 12:12:01.046923] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-13 12:12:01.054902] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-13 12:12:01.083825] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-13 12:12:01.083825] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-13 12:12:01.105766] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-13 12:12:01.110753] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-13 12:12:01.128705] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-13 12:12:01.138679] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-13 12:12:01.162614] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-13 12:12:01.166604] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-13 12:12:01.181563] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-13 12:12:01.182561] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-13 12:12:01.221457] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-13 12:12:01.221457] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:01.221457] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:01.222454] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-13 12:12:01.222454] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-13 12:12:01.230432] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-13 12:12:01.254369] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-13 12:12:01.257361] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-13 12:12:01.282294] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-13 12:12:01.283292] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-13 12:12:01.306230] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-13 12:12:01.312215] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-13 12:12:01.333158] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-13 12:12:01.340140] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-13 12:12:01.359089] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-13 12:12:01.368065] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-13 12:12:01.397985] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-13 12:12:01.398983] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-13 12:12:01.430896] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-13 12:12:01.430896] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-13 12:12:01.463809] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-13 12:12:01.464806] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-13 12:12:01.490736] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-13 12:12:01.492732] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-13 12:12:01.511197] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-13 12:12:01.511197] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-13 12:12:01.527145] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-13 12:12:01.535125] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-13 12:12:01.552078] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-13 12:12:01.552078] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-13 12:12:01.580003] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-13 12:12:01.581001] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-13 12:12:01.608926] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-13 12:12:01.610922] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-13 12:12:01.630869] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-13 12:12:01.638848] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-13 12:12:01.666772] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-13 12:12:01.666772] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-13 12:12:01.705668] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-13 12:12:01.705668] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:01.705668] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:01.706665] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-13 12:12:01.706665] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-13 12:12:01.706665] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-13 12:12:01.747556] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-13 12:12:01.747556] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-13 12:12:01.773486] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-13 12:12:01.778474] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-13 12:12:01.808393] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-13 12:12:01.808393] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-13 12:12:01.829337] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-13 12:12:01.833327] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-13 12:12:01.855267] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-13 12:12:01.860255] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-13 12:12:01.885188] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-13 12:12:01.889179] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-13 12:12:01.912116] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-13 12:12:01.916105] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-13 12:12:01.937049] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-13 12:12:01.944031] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-13 12:12:01.964974] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-13 12:12:01.970958] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-13 12:12:01.987913] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-13 12:12:01.987913] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-13 12:12:02.014350] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-13 12:12:02.014350] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:02.014350] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:02.015347] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-13 12:12:02.015347] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-13 12:12:02.015347] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-13 12:12:02.042276] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-13 12:12:02.042276] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-13 12:12:02.070200] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-13 12:12:02.070200] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-13 12:12:02.091143] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-13 12:12:02.098127] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-13 12:12:02.118577] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-13 12:12:02.122567] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-13 12:12:02.144507] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-13 12:12:02.153484] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-13 12:12:02.176422] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-13 12:12:02.180412] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-13 12:12:02.212326] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-13 12:12:02.212326] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-13 12:12:02.229785] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-13 12:12:02.229785] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-13 12:12:02.259705] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-13 12:12:02.259705] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-13 12:12:02.282645] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-13 12:12:02.283642] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:02.284639] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:02.284639] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-13 12:12:02.285636] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-13 12:12:02.285636] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-13 12:12:02.311567] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-13 12:12:02.311567] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-13 12:12:02.334014] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-13 12:12:02.339999] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-13 12:12:02.359945] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-13 12:12:02.366927] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-13 12:12:02.383880] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-13 12:12:02.383880] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-13 12:12:02.412804] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-13 12:12:02.412804] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-13 12:12:02.435742] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-13 12:12:02.444718] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-13 12:12:02.466659] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-13 12:12:02.471646] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-13 12:12:02.487604] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-13 12:12:02.488600] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-13 12:12:02.505555] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-13 12:12:02.514532] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-13 12:12:02.538468] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-13 12:12:02.541461] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-13 12:12:02.558414] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-13 12:12:02.558414] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-13 12:12:02.580355] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-13 12:12:02.582350] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-13 12:12:02.599305] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-13 12:12:02.599305] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-13 12:12:02.631220] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-13 12:12:02.631220] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-13 12:12:02.649171] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-13 12:12:02.650169] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-13 12:12:02.669118] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-13 12:12:02.669118] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-13 12:12:02.693054] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-13 12:12:02.695049] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-13 12:12:02.717987] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-13 12:12:02.722975] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-13 12:12:02.754889] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-13 12:12:02.754889] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-13 12:12:02.779822] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-13 12:12:02.784809] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-13 12:12:02.809742] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-13 12:12:02.811737] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-13 12:12:02.840660] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-13 12:12:02.840660] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-13 12:12:02.882547] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-13 12:12:02.882547] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:02.883545] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:02.883545] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-13 12:12:02.884542] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-13 12:12:02.893519] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-13 12:12:02.922441] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-13 12:12:02.922441] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-13 12:12:02.945379] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-13 12:12:02.950366] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-13 12:12:02.959342] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-13 12:12:02.964329] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-13 12:12:02.978291] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-13 12:12:02.979289] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-13 12:12:02.984275] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-13 12:12:02.993252] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-13 12:12:03.025166] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-13 12:12:03.026163] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-13 12:12:03.043118] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-13 12:12:03.043118] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-13 12:12:03.070046] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-13 12:12:03.070046] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-13 12:12:03.087000] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-13 12:12:03.087000] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-13 12:12:03.112931] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-13 12:12:03.112931] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-13 12:12:03.134872] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-13 12:12:03.138862] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-13 12:12:03.147838] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-13 12:12:03.152825] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-13 12:12:03.174766] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-13 12:12:03.180750] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-13 12:12:03.204686] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-13 12:12:03.208676] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-13 12:12:03.234113] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-13 12:12:03.236109] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-13 12:12:03.252065] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-13 12:12:03.253063] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-13 12:12:03.276002] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-13 12:12:03.277997] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-13 12:12:03.295948] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-13 12:12:03.295948] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-13 12:12:03.308913] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences +[2020-05-13 12:12:03.308913] INFO: gensim.models.word2vec: Loading a fresh vocabulary +[2020-05-13 12:12:03.310908] INFO: gensim.models.word2vec: effective_min_count=5 retains 1344 unique words (100% of original 1344, drops 0) +[2020-05-13 12:12:03.317890] INFO: gensim.models.word2vec: effective_min_count=5 leaves 607874 word corpus (100% of original 607874, drops 0) +[2020-05-13 12:12:03.349804] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items +[2020-05-13 12:12:03.354792] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words +[2020-05-13 12:12:03.354792] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) +[2020-05-13 12:12:03.357783] INFO: gensim.models.base_any2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes +[2020-05-13 12:12:03.357783] INFO: gensim.models.word2vec: resetting layer weights +[2020-05-13 12:12:03.537302] INFO: gensim.models.base_any2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 window=4 +[2020-05-13 12:12:03.539297] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-13 12:12:03.540295] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:03.549271] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:03.551265] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-13 12:12:03.551265] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-13 12:12:03.551265] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-13 12:12:03.580188] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-13 12:12:03.583180] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-13 12:12:03.608113] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-13 12:12:03.611105] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-13 12:12:03.638033] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-13 12:12:03.640028] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-13 12:12:03.665958] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-13 12:12:03.667954] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-13 12:12:03.687900] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-13 12:12:03.695879] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-13 12:12:03.719814] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-13 12:12:03.729788] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-13 12:12:03.753230] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-13 12:12:03.757220] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-13 12:12:03.771183] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-13 12:12:03.771183] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-13 12:12:03.786143] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-13 12:12:03.787140] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-13 12:12:03.808084] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-13 12:12:03.814069] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-13 12:12:03.835012] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-13 12:12:03.840997] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-13 12:12:03.865466] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-13 12:12:03.868431] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-13 12:12:03.894360] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-13 12:12:03.900345] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-13 12:12:03.930264] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-13 12:12:03.940238] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-13 12:12:03.970664] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-13 12:12:03.974654] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-13 12:12:03.997591] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-13 12:12:03.998589] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-13 12:12:04.035490] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-13 12:12:04.037484] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-13 12:12:04.068921] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-13 12:12:04.071913] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-13 12:12:04.093854] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-13 12:12:04.098841] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-13 12:12:04.129758] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-13 12:12:04.130755] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-13 12:12:04.159679] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-13 12:12:04.160675] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-13 12:12:04.187603] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-13 12:12:04.188602] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-13 12:12:04.205555] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-13 12:12:04.207550] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-13 12:12:04.249438] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-13 12:12:04.249438] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-13 12:12:04.272376] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-13 12:12:04.278361] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-13 12:12:04.303294] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-13 12:12:04.306286] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-13 12:12:04.323240] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-13 12:12:04.324238] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-13 12:12:04.345182] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-13 12:12:04.348174] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-13 12:12:04.368120] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-13 12:12:04.374105] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-13 12:12:04.392056] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-13 12:12:04.393054] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-13 12:12:04.413998] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-13 12:12:04.417988] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-13 12:12:04.436937] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-13 12:12:04.443918] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-13 12:12:04.457880] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-13 12:12:04.459875] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-13 12:12:04.479822] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-13 12:12:04.479822] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-13 12:12:04.498772] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-13 12:12:04.506750] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-13 12:12:04.533678] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-13 12:12:04.535672] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-13 12:12:04.553624] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-13 12:12:04.558611] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 20.11% examples, 105997 words/s, in_qsize 0, out_qsize 0 +[2020-05-13 12:12:04.561603] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-13 12:12:04.578557] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-13 12:12:04.580553] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-13 12:12:04.600499] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-13 12:12:04.600499] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-13 12:12:04.623437] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-13 12:12:04.626430] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-13 12:12:04.640392] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-13 12:12:04.642387] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-13 12:12:04.661336] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-13 12:12:04.661336] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:04.661336] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:04.663331] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-13 12:12:04.663331] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-13 12:12:04.663331] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-13 12:12:04.683277] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-13 12:12:04.688265] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-13 12:12:04.709208] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-13 12:12:04.715193] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-13 12:12:04.736137] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-13 12:12:04.743118] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-13 12:12:04.760072] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-13 12:12:04.762067] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-13 12:12:04.792984] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-13 12:12:04.792984] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-13 12:12:04.807944] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-13 12:12:04.808941] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-13 12:12:04.828888] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-13 12:12:04.834873] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-13 12:12:04.867785] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-13 12:12:04.868782] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-13 12:12:04.886733] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-13 12:12:04.895710] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-13 12:12:04.924633] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-13 12:12:04.924633] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-13 12:12:04.946574] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-13 12:12:04.968024] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-13 12:12:04.989965] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-13 12:12:04.994953] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-13 12:12:05.025869] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-13 12:12:05.027864] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-13 12:12:05.046813] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-13 12:12:05.054792] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-13 12:12:05.074738] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-13 12:12:05.083715] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-13 12:12:05.108648] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-13 12:12:05.110644] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-13 12:12:05.127597] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-13 12:12:05.129592] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-13 12:12:05.155522] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-13 12:12:05.155522] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-13 12:12:05.180455] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-13 12:12:05.181453] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-13 12:12:05.210375] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-13 12:12:05.210375] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-13 12:12:05.229325] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-13 12:12:05.236307] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-13 12:12:05.252264] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-13 12:12:05.252264] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-13 12:12:05.279191] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-13 12:12:05.281186] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-13 12:12:05.310109] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-13 12:12:05.311107] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-13 12:12:05.328061] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-13 12:12:05.330055] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-13 12:12:05.346013] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-13 12:12:05.353992] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-13 12:12:05.381917] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-13 12:12:05.382914] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-13 12:12:05.399869] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-13 12:12:05.399869] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-13 12:12:05.429789] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-13 12:12:05.431784] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-13 12:12:05.454722] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-13 12:12:05.458712] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-13 12:12:05.484150] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-13 12:12:05.486145] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-13 12:12:05.503098] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-13 12:12:05.503098] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-13 12:12:05.528032] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-13 12:12:05.530026] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-13 12:12:05.556954] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-13 12:12:05.556954] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-13 12:12:05.578404] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-13 12:12:05.582394] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-13 12:12:05.605332] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-13 12:12:05.606329] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 43.68% examples, 115255 words/s, in_qsize 0, out_qsize 0 +[2020-05-13 12:12:05.611317] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-13 12:12:05.638244] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-13 12:12:05.640239] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-13 12:12:05.658190] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-13 12:12:05.667672] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-13 12:12:05.681634] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-13 12:12:05.683629] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-13 12:12:05.700584] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-13 12:12:05.708563] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-13 12:12:05.718535] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-13 12:12:05.722525] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:05.722525] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:05.722525] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-13 12:12:05.723522] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-13 12:12:05.723522] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-13 12:12:05.747458] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-13 12:12:05.749453] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-13 12:12:05.770902] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-13 12:12:05.776886] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-13 12:12:05.799824] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-13 12:12:05.805809] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-13 12:12:05.825756] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-13 12:12:05.833734] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-13 12:12:05.850688] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-13 12:12:05.852683] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-13 12:12:05.885102] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-13 12:12:05.886099] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-13 12:12:05.900062] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-13 12:12:05.900062] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-13 12:12:05.922003] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-13 12:12:05.923999] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:05.923999] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:05.924995] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-13 12:12:05.924995] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-13 12:12:05.924995] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-13 12:12:05.946937] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-13 12:12:05.951925] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-13 12:12:05.972867] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-13 12:12:05.978852] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-13 12:12:05.997800] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-13 12:12:06.006777] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-13 12:12:06.029715] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-13 12:12:06.039690] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-13 12:12:06.056644] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-13 12:12:06.056644] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-13 12:12:06.081576] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-13 12:12:06.083572] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-13 12:12:06.109502] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-13 12:12:06.128452] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-13 12:12:06.163358] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-13 12:12:06.165353] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-13 12:12:06.194275] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-13 12:12:06.197268] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-13 12:12:06.220206] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-13 12:12:06.224196] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-13 12:12:06.239155] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-13 12:12:06.239155] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-13 12:12:06.259101] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-13 12:12:06.260099] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-13 12:12:06.285033] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-13 12:12:06.286030] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-13 12:12:06.314952] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-13 12:12:06.314952] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-13 12:12:06.331907] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-13 12:12:06.340883] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-13 12:12:06.368808] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-13 12:12:06.369806] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-13 12:12:06.377784] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-13 12:12:06.381774] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:06.381774] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:06.381774] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-13 12:12:06.382771] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-13 12:12:06.382771] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-13 12:12:06.407704] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-13 12:12:06.409700] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-13 12:12:06.446600] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-13 12:12:06.447597] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-13 12:12:06.474525] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-13 12:12:06.476520] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-13 12:12:06.498462] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-13 12:12:06.500457] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-13 12:12:06.519406] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-13 12:12:06.527385] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-13 12:12:06.549326] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-13 12:12:06.555310] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-13 12:12:06.575257] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-13 12:12:06.583235] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-13 12:12:06.607171] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-13 12:12:06.607171] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 65.52% examples, 116344 words/s, in_qsize 0, out_qsize 0 +[2020-05-13 12:12:06.611160] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-13 12:12:06.631108] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-13 12:12:06.639086] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-13 12:12:06.654046] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-13 12:12:06.655043] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-13 12:12:06.668008] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-13 12:12:06.668008] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:06.668008] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:06.669005] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-13 12:12:06.669005] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-13 12:12:06.669005] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-13 12:12:06.690947] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-13 12:12:06.695934] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-13 12:12:06.723859] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-13 12:12:06.723859] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-13 12:12:06.743805] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-13 12:12:06.750787] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-13 12:12:06.771731] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-13 12:12:06.778713] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-13 12:12:06.797662] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-13 12:12:06.805641] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-13 12:12:06.828579] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-13 12:12:06.833566] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-13 12:12:06.860494] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-13 12:12:06.862488] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-13 12:12:06.879443] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-13 12:12:06.880440] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-13 12:12:06.913352] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-13 12:12:06.914349] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-13 12:12:06.934296] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-13 12:12:06.934296] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:06.934296] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:06.935294] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-13 12:12:06.943273] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-13 12:12:06.944270] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-13 12:12:06.968205] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-13 12:12:06.971198] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-13 12:12:06.988152] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-13 12:12:06.990147] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-13 12:12:07.018072] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-13 12:12:07.019070] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-13 12:12:07.035027] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-13 12:12:07.037022] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-13 12:12:07.062953] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-13 12:12:07.064947] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-13 12:12:07.086888] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-13 12:12:07.090878] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-13 12:12:07.109827] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-13 12:12:07.117806] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-13 12:12:07.131768] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-13 12:12:07.132766] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-13 12:12:07.148722] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-13 12:12:07.149720] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-13 12:12:07.173657] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-13 12:12:07.175650] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-13 12:12:07.191608] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-13 12:12:07.191608] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-13 12:12:07.219533] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-13 12:12:07.221531] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-13 12:12:07.238482] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-13 12:12:07.238482] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-13 12:12:07.267405] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-13 12:12:07.268403] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-13 12:12:07.286860] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-13 12:12:07.291847] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-13 12:12:07.308801] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-13 12:12:07.309799] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-13 12:12:07.337723] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-13 12:12:07.338721] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-13 12:12:07.360663] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-13 12:12:07.368642] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-13 12:12:07.396075] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-13 12:12:07.396075] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-13 12:12:07.421008] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-13 12:12:07.425996] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-13 12:12:07.452923] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-13 12:12:07.453920] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-13 12:12:07.480848] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-13 12:12:07.482843] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-13 12:12:07.485835] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-13 12:12:07.492817] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:07.492817] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:07.493814] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-13 12:12:07.493814] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-13 12:12:07.493814] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-13 12:12:07.522736] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-13 12:12:07.523733] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-13 12:12:07.547670] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-13 12:12:07.549664] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-13 12:12:07.557643] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-13 12:12:07.562630] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-13 12:12:07.577590] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-13 12:12:07.578587] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-13 12:12:07.583573] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-13 12:12:07.590555] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-13 12:12:07.618481] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-13 12:12:07.620474] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-13 12:12:07.636432] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-13 12:12:07.636432] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-13 12:12:07.658373] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 91.38% examples, 116053 words/s, in_qsize 0, out_qsize 0 +[2020-05-13 12:12:07.661365] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-13 12:12:07.663360] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-13 12:12:07.680315] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-13 12:12:07.688294] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-13 12:12:07.714224] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-13 12:12:07.715222] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-13 12:12:07.736165] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-13 12:12:07.743147] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-13 12:12:07.751125] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-13 12:12:07.757110] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-13 12:12:07.778053] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-13 12:12:07.785035] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-13 12:12:07.808971] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-13 12:12:07.812961] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-13 12:12:07.841882] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-13 12:12:07.842880] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-13 12:12:07.859835] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-13 12:12:07.867814] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-13 12:12:07.889754] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-13 12:12:07.896737] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-13 12:12:07.914688] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-13 12:12:07.915685] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-13 12:12:07.936630] DEBUG: gensim.models.base_any2vec: job loop exiting, total 75 jobs +[2020-05-13 12:12:07.939621] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs +[2020-05-13 12:12:07.939621] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs +[2020-05-13 12:12:07.939621] DEBUG: gensim.models.base_any2vec: worker exiting, processed 18 jobs +[2020-05-13 12:12:07.940619] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 3 more threads +[2020-05-13 12:12:07.940619] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 2 more threads +[2020-05-13 12:12:07.940619] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 1 more threads +[2020-05-13 12:12:07.960565] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs +[2020-05-13 12:12:07.965553] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 0 more threads +[2020-05-13 12:12:07.965553] INFO: gensim.models.base_any2vec: EPOCH - 1 : training on 607874 raw words (519076 effective words) took 4.4s, 117270 effective words/s +[2020-05-13 12:12:07.966549] INFO: gensim.models.base_any2vec: training on a 607874 raw words (519076 effective words) took 4.4s, 117221 effective words/s diff --git a/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt b/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt new file mode 100644 index 0000000..d65b1a2 --- /dev/null +++ b/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt @@ -0,0 +1,789 @@ +[2020-05-13 12:12:33.663938] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml +[2020-05-13 12:12:33.663938] INFO: Generic: kmer fragmenter: sliding +[2020-05-13 12:12:33.664936] INFO: SeqGenerator: Number of epochs: 1 +[2020-05-13 12:12:33.664936] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 +[2020-05-13 12:12:33.664936] INFO: Learner: Context window half size: 4 +[2020-05-13 12:12:33.664936] INFO: Learner: Use skipgram: 1 +[2020-05-13 12:12:33.664936] INFO: Learner: gensim_iters: 1 +[2020-05-13 12:12:33.664936] INFO: Learner: vec_dim: 12 +[2020-05-13 12:12:33.665933] INFO: gensim.models.word2vec: collecting all words and their counts +[2020-05-13 12:12:33.674911] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-13 12:12:33.674911] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:33.674911] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:33.686877] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-13 12:12:33.690867] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-13 12:12:33.691864] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-13 12:12:33.715800] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types +[2020-05-13 12:12:33.717795] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-13 12:12:33.717795] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-13 12:12:33.747714] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-13 12:12:33.748712] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-13 12:12:33.786610] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-13 12:12:33.786610] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-13 12:12:33.822515] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-13 12:12:33.822515] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-13 12:12:33.847954] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-13 12:12:33.849949] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-13 12:12:33.871890] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-13 12:12:33.875880] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-13 12:12:33.912781] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-13 12:12:33.914776] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-13 12:12:33.930732] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-13 12:12:33.931730] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-13 12:12:33.951677] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-13 12:12:33.951677] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-13 12:12:33.987580] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-13 12:12:33.989576] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-13 12:12:34.016504] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-13 12:12:34.022488] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-13 12:12:34.066370] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-13 12:12:34.066370] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-13 12:12:34.101277] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-13 12:12:34.106264] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-13 12:12:34.131197] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-13 12:12:34.136184] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-13 12:12:34.165105] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-13 12:12:34.174082] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-13 12:12:34.193030] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-13 12:12:34.204002] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-13 12:12:34.220956] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-13 12:12:34.221953] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-13 12:12:34.240902] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-13 12:12:34.248882] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-13 12:12:34.273814] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-13 12:12:34.278802] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-13 12:12:34.310716] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-13 12:12:34.310716] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-13 12:12:34.340636] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-13 12:12:34.341633] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-13 12:12:34.363575] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-13 12:12:34.368562] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-13 12:12:34.387510] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-13 12:12:34.396487] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-13 12:12:34.428402] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-13 12:12:34.428402] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-13 12:12:34.454838] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-13 12:12:34.459825] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-13 12:12:34.481766] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-13 12:12:34.486753] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-13 12:12:34.505702] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-13 12:12:34.514679] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-13 12:12:34.533143] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-13 12:12:34.542111] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-13 12:12:34.560062] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-13 12:12:34.561060] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-13 12:12:34.587988] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-13 12:12:34.588986] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-13 12:12:34.609930] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-13 12:12:34.617909] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-13 12:12:34.638852] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-13 12:12:34.646831] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-13 12:12:34.663785] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-13 12:12:34.663785] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-13 12:12:34.683732] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-13 12:12:34.687722] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-13 12:12:34.708665] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-13 12:12:34.715647] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-13 12:12:34.745566] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-13 12:12:34.745566] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-13 12:12:34.763519] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-13 12:12:34.771498] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-13 12:12:34.789449] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-13 12:12:34.798426] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-13 12:12:34.815380] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-13 12:12:34.816377] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-13 12:12:34.838318] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-13 12:12:34.841311] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-13 12:12:34.860260] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-13 12:12:34.868239] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-13 12:12:34.901151] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-13 12:12:34.904144] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:34.905142] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:34.906138] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-13 12:12:34.907135] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-13 12:12:34.907135] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-13 12:12:34.939049] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-13 12:12:34.939049] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-13 12:12:34.977946] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-13 12:12:34.977946] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-13 12:12:35.012853] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-13 12:12:35.013850] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-13 12:12:35.040778] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-13 12:12:35.049754] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-13 12:12:35.074686] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-13 12:12:35.076682] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-13 12:12:35.092638] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-13 12:12:35.092638] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-13 12:12:35.112585] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-13 12:12:35.118569] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-13 12:12:35.149486] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-13 12:12:35.149486] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-13 12:12:35.167438] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-13 12:12:35.168436] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-13 12:12:35.201348] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-13 12:12:35.201348] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-13 12:12:35.226281] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-13 12:12:35.230270] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-13 12:12:35.251214] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-13 12:12:35.257199] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-13 12:12:35.286121] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-13 12:12:35.286121] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-13 12:12:35.304073] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-13 12:12:35.313050] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-13 12:12:35.335987] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-13 12:12:35.344964] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-13 12:12:35.375881] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-13 12:12:35.376878] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-13 12:12:35.396824] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-13 12:12:35.403807] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-13 12:12:35.424750] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-13 12:12:35.432730] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-13 12:12:35.461651] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-13 12:12:35.461651] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-13 12:12:35.496558] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-13 12:12:35.496558] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-13 12:12:35.516505] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-13 12:12:35.522489] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-13 12:12:35.540441] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-13 12:12:35.548420] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-13 12:12:35.578340] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-13 12:12:35.578340] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-13 12:12:35.611251] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-13 12:12:35.612249] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-13 12:12:35.633192] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-13 12:12:35.640174] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-13 12:12:35.661118] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-13 12:12:35.662115] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-13 12:12:35.697022] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-13 12:12:35.698019] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-13 12:12:35.719960] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-13 12:12:35.723951] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-13 12:12:35.752872] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-13 12:12:35.752872] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-13 12:12:35.778804] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-13 12:12:35.778804] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-13 12:12:35.809720] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-13 12:12:35.809720] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-13 12:12:35.829667] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-13 12:12:35.830665] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-13 12:12:35.857593] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-13 12:12:35.857593] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-13 12:12:35.887513] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-13 12:12:35.888509] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-13 12:12:35.912446] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-13 12:12:35.916436] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-13 12:12:35.938377] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-13 12:12:35.946862] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-13 12:12:35.976781] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-13 12:12:35.977778] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-13 12:12:35.996728] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-13 12:12:35.996728] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-13 12:12:36.012684] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-13 12:12:36.022659] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-13 12:12:36.042604] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-13 12:12:36.049094] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-13 12:12:36.060063] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-13 12:12:36.063056] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:36.063056] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:36.064053] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-13 12:12:36.064053] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-13 12:12:36.064053] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-13 12:12:36.089983] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-13 12:12:36.090981] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-13 12:12:36.108933] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-13 12:12:36.108933] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-13 12:12:36.133866] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-13 12:12:36.133866] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-13 12:12:36.154810] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-13 12:12:36.160795] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-13 12:12:36.178746] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-13 12:12:36.187723] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-13 12:12:36.212655] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-13 12:12:36.216646] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-13 12:12:36.232602] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-13 12:12:36.232602] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-13 12:12:36.254543] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-13 12:12:36.257536] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:36.257536] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:36.258533] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-13 12:12:36.258533] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-13 12:12:36.258533] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-13 12:12:36.281472] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-13 12:12:36.285461] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-13 12:12:36.308399] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-13 12:12:36.312390] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-13 12:12:36.331338] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-13 12:12:36.342309] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-13 12:12:36.365247] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-13 12:12:36.370235] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-13 12:12:36.388186] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-13 12:12:36.393174] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-13 12:12:36.421099] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-13 12:12:36.421099] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-13 12:12:36.452015] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-13 12:12:36.453013] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-13 12:12:36.480938] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-13 12:12:36.481935] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-13 12:12:36.507866] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-13 12:12:36.508863] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-13 12:12:36.531802] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-13 12:12:36.532799] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-13 12:12:36.549754] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-13 12:12:36.551749] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-13 12:12:36.569701] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-13 12:12:36.570698] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-13 12:12:36.597626] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-13 12:12:36.598623] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-13 12:12:36.627545] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-13 12:12:36.627545] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-13 12:12:36.646495] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-13 12:12:36.649487] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-13 12:12:36.677412] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-13 12:12:36.677412] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-13 12:12:36.687386] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-13 12:12:36.687386] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:36.687386] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:36.688383] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-13 12:12:36.688383] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-13 12:12:36.694367] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-13 12:12:36.722293] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-13 12:12:36.722293] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-13 12:12:36.751215] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-13 12:12:36.752212] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-13 12:12:36.781135] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-13 12:12:36.781135] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-13 12:12:36.802079] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-13 12:12:36.802079] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-13 12:12:36.823023] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-13 12:12:36.823023] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-13 12:12:36.846959] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-13 12:12:36.846959] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-13 12:12:36.869897] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-13 12:12:36.869897] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-13 12:12:36.890842] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-13 12:12:36.891839] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-13 12:12:36.911786] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-13 12:12:36.913780] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-13 12:12:36.930735] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-13 12:12:36.930735] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-13 12:12:36.944698] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-13 12:12:36.948687] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:36.948687] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:36.948687] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-13 12:12:36.949685] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-13 12:12:36.955668] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-13 12:12:36.980601] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-13 12:12:36.980601] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-13 12:12:37.011519] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-13 12:12:37.012517] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-13 12:12:37.039444] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-13 12:12:37.040442] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-13 12:12:37.060389] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-13 12:12:37.061386] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-13 12:12:37.082330] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-13 12:12:37.082330] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-13 12:12:37.106265] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-13 12:12:37.107263] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-13 12:12:37.138180] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-13 12:12:37.138180] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-13 12:12:37.156132] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-13 12:12:37.157129] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-13 12:12:37.187049] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-13 12:12:37.187049] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-13 12:12:37.195028] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-13 12:12:37.198020] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:37.198020] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:37.199030] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-13 12:12:37.200015] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-13 12:12:37.205001] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-13 12:12:37.230932] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-13 12:12:37.231929] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-13 12:12:37.249881] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-13 12:12:37.249881] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-13 12:12:37.271822] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-13 12:12:37.271822] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-13 12:12:37.288778] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-13 12:12:37.289775] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-13 12:12:37.316702] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-13 12:12:37.316702] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-13 12:12:37.342633] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-13 12:12:37.343631] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-13 12:12:37.368564] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-13 12:12:37.369561] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-13 12:12:37.386532] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-13 12:12:37.386532] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-13 12:12:37.404468] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-13 12:12:37.404468] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-13 12:12:37.432393] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-13 12:12:37.432393] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-13 12:12:37.449348] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-13 12:12:37.449348] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-13 12:12:37.468801] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-13 12:12:37.469798] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-13 12:12:37.486753] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-13 12:12:37.490743] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-13 12:12:37.521660] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-13 12:12:37.522657] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-13 12:12:37.541607] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-13 12:12:37.541607] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-13 12:12:37.560063] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-13 12:12:37.560063] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-13 12:12:37.579012] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-13 12:12:37.580009] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-13 12:12:37.606937] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-13 12:12:37.606937] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-13 12:12:37.638852] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-13 12:12:37.638852] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-13 12:12:37.663785] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-13 12:12:37.663785] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-13 12:12:37.689716] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-13 12:12:37.690713] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-13 12:12:37.720633] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-13 12:12:37.721631] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-13 12:12:37.724622] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-13 12:12:37.724622] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:37.724622] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:37.725620] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-13 12:12:37.725620] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-13 12:12:37.725620] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-13 12:12:37.755540] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-13 12:12:37.755540] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-13 12:12:37.778478] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-13 12:12:37.778478] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-13 12:12:37.787454] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-13 12:12:37.788452] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-13 12:12:37.801417] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-13 12:12:37.802415] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-13 12:12:37.807401] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-13 12:12:37.808399] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-13 12:12:37.836324] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-13 12:12:37.836324] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-13 12:12:37.852281] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-13 12:12:37.852281] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-13 12:12:37.879210] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-13 12:12:37.879210] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-13 12:12:37.896164] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-13 12:12:37.896164] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-13 12:12:37.922094] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-13 12:12:37.923092] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-13 12:12:37.945033] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-13 12:12:37.945033] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-13 12:12:37.954009] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-13 12:12:37.954009] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-13 12:12:37.977945] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-13 12:12:37.977945] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-13 12:12:38.010857] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-13 12:12:38.011854] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-13 12:12:38.039780] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-13 12:12:38.040777] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-13 12:12:38.057732] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-13 12:12:38.058729] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-13 12:12:38.088649] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-13 12:12:38.088649] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-13 12:12:38.110590] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-13 12:12:38.110590] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-13 12:12:38.125550] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences +[2020-05-13 12:12:38.128542] INFO: gensim.models.word2vec: Loading a fresh vocabulary +[2020-05-13 12:12:38.129540] INFO: gensim.models.word2vec: effective_min_count=5 retains 1344 unique words (100% of original 1344, drops 0) +[2020-05-13 12:12:38.135524] INFO: gensim.models.word2vec: effective_min_count=5 leaves 607874 word corpus (100% of original 607874, drops 0) +[2020-05-13 12:12:38.138516] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items +[2020-05-13 12:12:38.143504] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words +[2020-05-13 12:12:38.149487] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) +[2020-05-13 12:12:38.153476] INFO: gensim.models.base_any2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes +[2020-05-13 12:12:38.153476] INFO: gensim.models.word2vec: resetting layer weights +[2020-05-13 12:12:38.335987] INFO: gensim.models.base_any2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 window=4 +[2020-05-13 12:12:38.337982] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa +[2020-05-13 12:12:38.343966] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:38.343966] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:38.344964] INFO: SeqGenerator: Whole fasta seqlen: 148850 +[2020-05-13 12:12:38.345961] DEBUG: SeqGenerator: input seq len: 3846 +[2020-05-13 12:12:38.351945] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] +[2020-05-13 12:12:38.372889] DEBUG: SeqGenerator: input seq len: 4594 +[2020-05-13 12:12:38.373886] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] +[2020-05-13 12:12:38.397822] DEBUG: SeqGenerator: input seq len: 4394 +[2020-05-13 12:12:38.398820] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] +[2020-05-13 12:12:38.423753] DEBUG: SeqGenerator: input seq len: 4886 +[2020-05-13 12:12:38.424750] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] +[2020-05-13 12:12:38.453672] DEBUG: SeqGenerator: input seq len: 2843 +[2020-05-13 12:12:38.453672] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] +[2020-05-13 12:12:38.469137] DEBUG: SeqGenerator: input seq len: 3011 +[2020-05-13 12:12:38.471132] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] +[2020-05-13 12:12:38.494070] DEBUG: SeqGenerator: input seq len: 4317 +[2020-05-13 12:12:38.494070] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] +[2020-05-13 12:12:38.516012] DEBUG: SeqGenerator: input seq len: 2544 +[2020-05-13 12:12:38.518007] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] +[2020-05-13 12:12:38.531969] DEBUG: SeqGenerator: input seq len: 2626 +[2020-05-13 12:12:38.532967] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] +[2020-05-13 12:12:38.552913] DEBUG: SeqGenerator: input seq len: 3945 +[2020-05-13 12:12:38.552913] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] +[2020-05-13 12:12:38.574855] DEBUG: SeqGenerator: input seq len: 2886 +[2020-05-13 12:12:38.575852] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] +[2020-05-13 12:12:38.591809] DEBUG: SeqGenerator: input seq len: 4720 +[2020-05-13 12:12:38.594801] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] +[2020-05-13 12:12:38.619734] DEBUG: SeqGenerator: input seq len: 3778 +[2020-05-13 12:12:38.621729] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] +[2020-05-13 12:12:38.644668] DEBUG: SeqGenerator: input seq len: 3304 +[2020-05-13 12:12:38.644668] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] +[2020-05-13 12:12:38.662620] DEBUG: SeqGenerator: input seq len: 3247 +[2020-05-13 12:12:38.663618] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] +[2020-05-13 12:12:38.681569] DEBUG: SeqGenerator: input seq len: 2958 +[2020-05-13 12:12:38.684561] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] +[2020-05-13 12:12:38.701516] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-13 12:12:38.701516] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-13 12:12:38.715478] DEBUG: SeqGenerator: input seq len: 3289 +[2020-05-13 12:12:38.717473] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] +[2020-05-13 12:12:38.739414] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-13 12:12:38.739414] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-13 12:12:38.761356] DEBUG: SeqGenerator: input seq len: 4947 +[2020-05-13 12:12:38.763351] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] +[2020-05-13 12:12:38.789281] DEBUG: SeqGenerator: input seq len: 4999 +[2020-05-13 12:12:38.790278] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] +[2020-05-13 12:12:38.817207] DEBUG: SeqGenerator: input seq len: 3664 +[2020-05-13 12:12:38.819201] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] +[2020-05-13 12:12:38.841142] DEBUG: SeqGenerator: input seq len: 3124 +[2020-05-13 12:12:38.841142] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] +[2020-05-13 12:12:38.858098] DEBUG: SeqGenerator: input seq len: 4945 +[2020-05-13 12:12:38.860092] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] +[2020-05-13 12:12:38.894001] DEBUG: SeqGenerator: input seq len: 4217 +[2020-05-13 12:12:38.894001] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] +[2020-05-13 12:12:38.919932] DEBUG: SeqGenerator: input seq len: 3608 +[2020-05-13 12:12:38.920929] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] +[2020-05-13 12:12:38.942871] DEBUG: SeqGenerator: input seq len: 3106 +[2020-05-13 12:12:38.942871] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] +[2020-05-13 12:12:38.959825] DEBUG: SeqGenerator: input seq len: 2947 +[2020-05-13 12:12:38.963323] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] +[2020-05-13 12:12:38.982271] DEBUG: SeqGenerator: input seq len: 3104 +[2020-05-13 12:12:38.982271] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] +[2020-05-13 12:12:39.002218] DEBUG: SeqGenerator: input seq len: 3225 +[2020-05-13 12:12:39.002218] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] +[2020-05-13 12:12:39.024160] DEBUG: SeqGenerator: input seq len: 3532 +[2020-05-13 12:12:39.026154] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] +[2020-05-13 12:12:39.052085] DEBUG: SeqGenerator: input seq len: 3161 +[2020-05-13 12:12:39.052085] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] +[2020-05-13 12:12:39.069543] DEBUG: SeqGenerator: input seq len: 2523 +[2020-05-13 12:12:39.070542] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] +[2020-05-13 12:12:39.085501] DEBUG: SeqGenerator: input seq len: 3333 +[2020-05-13 12:12:39.086498] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] +[2020-05-13 12:12:39.106445] DEBUG: SeqGenerator: input seq len: 3360 +[2020-05-13 12:12:39.107442] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] +[2020-05-13 12:12:39.125394] DEBUG: SeqGenerator: input seq len: 4883 +[2020-05-13 12:12:39.125394] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] +[2020-05-13 12:12:39.154317] DEBUG: SeqGenerator: input seq len: 2887 +[2020-05-13 12:12:39.155314] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] +[2020-05-13 12:12:39.172774] DEBUG: SeqGenerator: input seq len: 3006 +[2020-05-13 12:12:39.179756] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] +[2020-05-13 12:12:39.195713] DEBUG: SeqGenerator: input seq len: 2885 +[2020-05-13 12:12:39.198705] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] +[2020-05-13 12:12:39.214662] DEBUG: SeqGenerator: input seq len: 3475 +[2020-05-13 12:12:39.215660] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] +[2020-05-13 12:12:39.238598] DEBUG: SeqGenerator: input seq len: 2706 +[2020-05-13 12:12:39.238598] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] +[2020-05-13 12:12:39.255553] DEBUG: SeqGenerator: input seq len: 3251 +[2020-05-13 12:12:39.257547] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] +[2020-05-13 12:12:39.276005] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa +[2020-05-13 12:12:39.276005] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:39.276005] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:39.277999] INFO: SeqGenerator: Whole fasta seqlen: 150742 +[2020-05-13 12:12:39.283984] DEBUG: SeqGenerator: input seq len: 3331 +[2020-05-13 12:12:39.283984] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] +[2020-05-13 12:12:39.301936] DEBUG: SeqGenerator: input seq len: 3916 +[2020-05-13 12:12:39.301936] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] +[2020-05-13 12:12:39.322879] DEBUG: SeqGenerator: input seq len: 3699 +[2020-05-13 12:12:39.324874] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] +[2020-05-13 12:12:39.351803] DEBUG: SeqGenerator: input seq len: 2893 +[2020-05-13 12:12:39.351803] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 24.71% examples, 128900 words/s, in_qsize 0, out_qsize 0 +[2020-05-13 12:12:39.351803] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] +[2020-05-13 12:12:39.367759] DEBUG: SeqGenerator: input seq len: 4177 +[2020-05-13 12:12:39.371748] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] +[2020-05-13 12:12:39.398676] DEBUG: SeqGenerator: input seq len: 2639 +[2020-05-13 12:12:39.398676] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] +[2020-05-13 12:12:39.413636] DEBUG: SeqGenerator: input seq len: 3202 +[2020-05-13 12:12:39.420618] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] +[2020-05-13 12:12:39.441562] DEBUG: SeqGenerator: input seq len: 4968 +[2020-05-13 12:12:39.443556] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] +[2020-05-13 12:12:39.483450] DEBUG: SeqGenerator: input seq len: 3065 +[2020-05-13 12:12:39.484447] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] +[2020-05-13 12:12:39.501402] DEBUG: SeqGenerator: input seq len: 4951 +[2020-05-13 12:12:39.503397] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] +[2020-05-13 12:12:39.531322] DEBUG: SeqGenerator: input seq len: 3861 +[2020-05-13 12:12:39.531322] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] +[2020-05-13 12:12:39.553263] DEBUG: SeqGenerator: input seq len: 3439 +[2020-05-13 12:12:39.554261] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] +[2020-05-13 12:12:39.574207] DEBUG: SeqGenerator: input seq len: 4727 +[2020-05-13 12:12:39.575205] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] +[2020-05-13 12:12:39.601135] DEBUG: SeqGenerator: input seq len: 2966 +[2020-05-13 12:12:39.603130] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] +[2020-05-13 12:12:39.622079] DEBUG: SeqGenerator: input seq len: 3578 +[2020-05-13 12:12:39.625071] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] +[2020-05-13 12:12:39.645018] DEBUG: SeqGenerator: input seq len: 4458 +[2020-05-13 12:12:39.646015] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] +[2020-05-13 12:12:39.669951] DEBUG: SeqGenerator: input seq len: 3075 +[2020-05-13 12:12:39.670949] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] +[2020-05-13 12:12:39.686906] DEBUG: SeqGenerator: input seq len: 3088 +[2020-05-13 12:12:39.691892] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] +[2020-05-13 12:12:39.712836] DEBUG: SeqGenerator: input seq len: 4257 +[2020-05-13 12:12:39.712836] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] +[2020-05-13 12:12:39.735775] DEBUG: SeqGenerator: input seq len: 4656 +[2020-05-13 12:12:39.736772] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] +[2020-05-13 12:12:39.763700] DEBUG: SeqGenerator: input seq len: 3321 +[2020-05-13 12:12:39.763700] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] +[2020-05-13 12:12:39.781652] DEBUG: SeqGenerator: input seq len: 2793 +[2020-05-13 12:12:39.783647] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] +[2020-05-13 12:12:39.801599] DEBUG: SeqGenerator: input seq len: 4583 +[2020-05-13 12:12:39.802597] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] +[2020-05-13 12:12:39.829524] DEBUG: SeqGenerator: input seq len: 4689 +[2020-05-13 12:12:39.830522] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] +[2020-05-13 12:12:39.856452] DEBUG: SeqGenerator: input seq len: 3073 +[2020-05-13 12:12:39.856452] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] +[2020-05-13 12:12:39.875401] DEBUG: SeqGenerator: input seq len: 2860 +[2020-05-13 12:12:39.877396] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] +[2020-05-13 12:12:39.897343] DEBUG: SeqGenerator: input seq len: 4850 +[2020-05-13 12:12:39.897343] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] +[2020-05-13 12:12:39.923273] DEBUG: SeqGenerator: input seq len: 2973 +[2020-05-13 12:12:39.925268] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] +[2020-05-13 12:12:39.941225] DEBUG: SeqGenerator: input seq len: 4234 +[2020-05-13 12:12:39.943220] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] +[2020-05-13 12:12:39.969151] DEBUG: SeqGenerator: input seq len: 3919 +[2020-05-13 12:12:39.970148] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] +[2020-05-13 12:12:39.993087] DEBUG: SeqGenerator: input seq len: 4392 +[2020-05-13 12:12:39.993087] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] +[2020-05-13 12:12:40.025999] DEBUG: SeqGenerator: input seq len: 2969 +[2020-05-13 12:12:40.027994] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] +[2020-05-13 12:12:40.051930] DEBUG: SeqGenerator: input seq len: 4295 +[2020-05-13 12:12:40.055919] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] +[2020-05-13 12:12:40.096810] DEBUG: SeqGenerator: input seq len: 4700 +[2020-05-13 12:12:40.097807] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] +[2020-05-13 12:12:40.139695] DEBUG: SeqGenerator: input seq len: 3826 +[2020-05-13 12:12:40.139695] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] +[2020-05-13 12:12:40.173112] DEBUG: SeqGenerator: input seq len: 3266 +[2020-05-13 12:12:40.175107] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] +[2020-05-13 12:12:40.208019] DEBUG: SeqGenerator: input seq len: 4794 +[2020-05-13 12:12:40.209016] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] +[2020-05-13 12:12:40.243922] DEBUG: SeqGenerator: input seq len: 3040 +[2020-05-13 12:12:40.244920] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] +[2020-05-13 12:12:40.263869] DEBUG: SeqGenerator: input seq len: 2526 +[2020-05-13 12:12:40.267858] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] +[2020-05-13 12:12:40.284813] DEBUG: SeqGenerator: input seq len: 2875 +[2020-05-13 12:12:40.288803] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] +[2020-05-13 12:12:40.306755] DEBUG: SeqGenerator: input seq len: 1818 +[2020-05-13 12:12:40.309746] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] +[2020-05-13 12:12:40.320717] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa +[2020-05-13 12:12:40.320717] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:40.320717] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:40.321714] INFO: SeqGenerator: Whole fasta seqlen: 27745 +[2020-05-13 12:12:40.321714] DEBUG: SeqGenerator: input seq len: 4135 +[2020-05-13 12:12:40.321714] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] +[2020-05-13 12:12:40.347645] DEBUG: SeqGenerator: input seq len: 3035 +[2020-05-13 12:12:40.348642] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] +[2020-05-13 12:12:40.366595] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-13 12:12:40.366595] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 47.70% examples, 126673 words/s, in_qsize 0, out_qsize 0 +[2020-05-13 12:12:40.366595] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-13 12:12:40.389533] DEBUG: SeqGenerator: input seq len: 3296 +[2020-05-13 12:12:40.391528] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] +[2020-05-13 12:12:40.410477] DEBUG: SeqGenerator: input seq len: 3049 +[2020-05-13 12:12:40.410477] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] +[2020-05-13 12:12:40.429426] DEBUG: SeqGenerator: input seq len: 4128 +[2020-05-13 12:12:40.437405] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] +[2020-05-13 12:12:40.459346] DEBUG: SeqGenerator: input seq len: 2648 +[2020-05-13 12:12:40.462338] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] +[2020-05-13 12:12:40.476301] DEBUG: SeqGenerator: input seq len: 3435 +[2020-05-13 12:12:40.482285] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] +[2020-05-13 12:12:40.503229] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa +[2020-05-13 12:12:40.504227] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:40.504227] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:40.505223] INFO: SeqGenerator: Whole fasta seqlen: 62944 +[2020-05-13 12:12:40.505223] DEBUG: SeqGenerator: input seq len: 3786 +[2020-05-13 12:12:40.506221] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] +[2020-05-13 12:12:40.531154] DEBUG: SeqGenerator: input seq len: 3831 +[2020-05-13 12:12:40.532151] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] +[2020-05-13 12:12:40.552098] DEBUG: SeqGenerator: input seq len: 3133 +[2020-05-13 12:12:40.554093] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] +[2020-05-13 12:12:40.574039] DEBUG: SeqGenerator: input seq len: 3714 +[2020-05-13 12:12:40.575038] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] +[2020-05-13 12:12:40.594984] DEBUG: SeqGenerator: input seq len: 3118 +[2020-05-13 12:12:40.596979] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] +[2020-05-13 12:12:40.614930] DEBUG: SeqGenerator: input seq len: 4415 +[2020-05-13 12:12:40.614930] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] +[2020-05-13 12:12:40.639863] DEBUG: SeqGenerator: input seq len: 4126 +[2020-05-13 12:12:40.640861] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] +[2020-05-13 12:12:40.664797] DEBUG: SeqGenerator: input seq len: 4866 +[2020-05-13 12:12:40.665794] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] +[2020-05-13 12:12:40.694224] DEBUG: SeqGenerator: input seq len: 4497 +[2020-05-13 12:12:40.696219] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] +[2020-05-13 12:12:40.721152] DEBUG: SeqGenerator: input seq len: 3155 +[2020-05-13 12:12:40.721152] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] +[2020-05-13 12:12:40.738107] DEBUG: SeqGenerator: input seq len: 2740 +[2020-05-13 12:12:40.740102] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] +[2020-05-13 12:12:40.756059] DEBUG: SeqGenerator: input seq len: 2828 +[2020-05-13 12:12:40.760048] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] +[2020-05-13 12:12:40.776510] DEBUG: SeqGenerator: input seq len: 4782 +[2020-05-13 12:12:40.777508] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] +[2020-05-13 12:12:40.804435] DEBUG: SeqGenerator: input seq len: 4819 +[2020-05-13 12:12:40.805432] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] +[2020-05-13 12:12:40.833358] DEBUG: SeqGenerator: input seq len: 3021 +[2020-05-13 12:12:40.833358] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] +[2020-05-13 12:12:40.850312] DEBUG: SeqGenerator: input seq len: 4590 +[2020-05-13 12:12:40.852308] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] +[2020-05-13 12:12:40.876747] DEBUG: SeqGenerator: input seq len: 1523 +[2020-05-13 12:12:40.876747] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] +[2020-05-13 12:12:40.885724] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa +[2020-05-13 12:12:40.885724] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:40.886722] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:40.886722] INFO: SeqGenerator: Whole fasta seqlen: 40191 +[2020-05-13 12:12:40.886722] DEBUG: SeqGenerator: input seq len: 4639 +[2020-05-13 12:12:40.892705] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] +[2020-05-13 12:12:40.918635] DEBUG: SeqGenerator: input seq len: 4460 +[2020-05-13 12:12:40.920630] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] +[2020-05-13 12:12:40.948556] DEBUG: SeqGenerator: input seq len: 4955 +[2020-05-13 12:12:40.948556] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] +[2020-05-13 12:12:40.976985] DEBUG: SeqGenerator: input seq len: 3367 +[2020-05-13 12:12:40.978980] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] +[2020-05-13 12:12:40.999924] DEBUG: SeqGenerator: input seq len: 3347 +[2020-05-13 12:12:40.999924] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] +[2020-05-13 12:12:41.020868] DEBUG: SeqGenerator: input seq len: 3985 +[2020-05-13 12:12:41.021865] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] +[2020-05-13 12:12:41.048793] DEBUG: SeqGenerator: input seq len: 3631 +[2020-05-13 12:12:41.048793] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] +[2020-05-13 12:12:41.067742] DEBUG: SeqGenerator: input seq len: 3570 +[2020-05-13 12:12:41.069737] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] +[2020-05-13 12:12:41.094670] DEBUG: SeqGenerator: input seq len: 3290 +[2020-05-13 12:12:41.094670] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] +[2020-05-13 12:12:41.112622] DEBUG: SeqGenerator: input seq len: 2659 +[2020-05-13 12:12:41.114617] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] +[2020-05-13 12:12:41.133567] DEBUG: SeqGenerator: input seq len: 2288 +[2020-05-13 12:12:41.133567] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] +[2020-05-13 12:12:41.147529] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa +[2020-05-13 12:12:41.149524] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:41.149524] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:41.150521] INFO: SeqGenerator: Whole fasta seqlen: 36723 +[2020-05-13 12:12:41.150521] DEBUG: SeqGenerator: input seq len: 3871 +[2020-05-13 12:12:41.150521] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] +[2020-05-13 12:12:41.171465] DEBUG: SeqGenerator: input seq len: 4704 +[2020-05-13 12:12:41.173460] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] +[2020-05-13 12:12:41.200388] DEBUG: SeqGenerator: input seq len: 3508 +[2020-05-13 12:12:41.200388] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] +[2020-05-13 12:12:41.220334] DEBUG: SeqGenerator: input seq len: 3522 +[2020-05-13 12:12:41.222329] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] +[2020-05-13 12:12:41.244270] DEBUG: SeqGenerator: input seq len: 3676 +[2020-05-13 12:12:41.244270] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] +[2020-05-13 12:12:41.267209] DEBUG: SeqGenerator: input seq len: 4106 +[2020-05-13 12:12:41.269204] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] +[2020-05-13 12:12:41.292142] DEBUG: SeqGenerator: input seq len: 4723 +[2020-05-13 12:12:41.292142] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] +[2020-05-13 12:12:41.317075] DEBUG: SeqGenerator: input seq len: 3079 +[2020-05-13 12:12:41.318073] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] +[2020-05-13 12:12:41.336025] DEBUG: SeqGenerator: input seq len: 4419 +[2020-05-13 12:12:41.337022] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] +[2020-05-13 12:12:41.362953] DEBUG: SeqGenerator: input seq len: 1115 +[2020-05-13 12:12:41.364948] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] +[2020-05-13 12:12:41.371929] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa +[2020-05-13 12:12:41.371929] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:41.371929] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:41.372927] INFO: SeqGenerator: Whole fasta seqlen: 79590 +[2020-05-13 12:12:41.373924] DEBUG: SeqGenerator: input seq len: 3592 +[2020-05-13 12:12:41.378910] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] +[2020-05-13 12:12:41.397859] DEBUG: SeqGenerator: input seq len: 2937 +[2020-05-13 12:12:41.397859] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 72.99% examples, 129914 words/s, in_qsize 0, out_qsize 0 +[2020-05-13 12:12:41.398857] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] +[2020-05-13 12:12:41.419801] DEBUG: SeqGenerator: input seq len: 3424 +[2020-05-13 12:12:41.422794] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] +[2020-05-13 12:12:41.446729] DEBUG: SeqGenerator: input seq len: 2785 +[2020-05-13 12:12:41.448723] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] +[2020-05-13 12:12:41.463685] DEBUG: SeqGenerator: input seq len: 4677 +[2020-05-13 12:12:41.468671] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] +[2020-05-13 12:12:41.494601] DEBUG: SeqGenerator: input seq len: 3758 +[2020-05-13 12:12:41.495598] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] +[2020-05-13 12:12:41.521529] DEBUG: SeqGenerator: input seq len: 3481 +[2020-05-13 12:12:41.522526] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] +[2020-05-13 12:12:41.541475] DEBUG: SeqGenerator: input seq len: 2555 +[2020-05-13 12:12:41.543470] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] +[2020-05-13 12:12:41.557433] DEBUG: SeqGenerator: input seq len: 2872 +[2020-05-13 12:12:41.560425] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] +[2020-05-13 12:12:41.576382] DEBUG: SeqGenerator: input seq len: 4296 +[2020-05-13 12:12:41.576382] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] +[2020-05-13 12:12:41.599320] DEBUG: SeqGenerator: input seq len: 2727 +[2020-05-13 12:12:41.601315] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] +[2020-05-13 12:12:41.618270] DEBUG: SeqGenerator: input seq len: 3326 +[2020-05-13 12:12:41.624254] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] +[2020-05-13 12:12:41.643204] DEBUG: SeqGenerator: input seq len: 2700 +[2020-05-13 12:12:41.645198] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] +[2020-05-13 12:12:41.660158] DEBUG: SeqGenerator: input seq len: 4942 +[2020-05-13 12:12:41.665146] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] +[2020-05-13 12:12:41.691075] DEBUG: SeqGenerator: input seq len: 3076 +[2020-05-13 12:12:41.692072] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] +[2020-05-13 12:12:41.710025] DEBUG: SeqGenerator: input seq len: 3087 +[2020-05-13 12:12:41.712019] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] +[2020-05-13 12:12:41.728974] DEBUG: SeqGenerator: input seq len: 3188 +[2020-05-13 12:12:41.733961] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] +[2020-05-13 12:12:41.752910] DEBUG: SeqGenerator: input seq len: 3966 +[2020-05-13 12:12:41.753907] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] +[2020-05-13 12:12:41.775848] DEBUG: SeqGenerator: input seq len: 4914 +[2020-05-13 12:12:41.776846] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] +[2020-05-13 12:12:41.805768] DEBUG: SeqGenerator: input seq len: 4116 +[2020-05-13 12:12:41.805768] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] +[2020-05-13 12:12:41.828707] DEBUG: SeqGenerator: input seq len: 4339 +[2020-05-13 12:12:41.829704] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] +[2020-05-13 12:12:41.864611] DEBUG: SeqGenerator: input seq len: 4377 +[2020-05-13 12:12:41.864611] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] +[2020-05-13 12:12:41.889052] DEBUG: SeqGenerator: input seq len: 455 +[2020-05-13 12:12:41.890049] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] +[2020-05-13 12:12:41.894039] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa +[2020-05-13 12:12:41.896034] INFO: SeqGenerator: Memory usage: 0 MB +[2020-05-13 12:12:41.896034] INFO: SeqGenerator: Current epoch: 1 / 1 +[2020-05-13 12:12:41.897031] INFO: SeqGenerator: Whole fasta seqlen: 71251 +[2020-05-13 12:12:41.897031] DEBUG: SeqGenerator: input seq len: 4979 +[2020-05-13 12:12:41.898028] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] +[2020-05-13 12:12:41.926951] DEBUG: SeqGenerator: input seq len: 3765 +[2020-05-13 12:12:41.926951] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] +[2020-05-13 12:12:41.946897] DEBUG: SeqGenerator: input seq len: 4973 +[2020-05-13 12:12:41.953880] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] +[2020-05-13 12:12:41.967842] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-13 12:12:41.971831] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] +[2020-05-13 12:12:41.983801] DEBUG: SeqGenerator: input seq len: 4038 +[2020-05-13 12:12:41.988786] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] +[2020-05-13 12:12:41.994770] DEBUG: SeqGenerator: input seq len: 4645 +[2020-05-13 12:12:41.997762] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] +[2020-05-13 12:12:42.031671] DEBUG: SeqGenerator: input seq len: 2748 +[2020-05-13 12:12:42.033665] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] +[2020-05-13 12:12:42.059596] DEBUG: SeqGenerator: input seq len: 4435 +[2020-05-13 12:12:42.059596] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] +[2020-05-13 12:12:42.087521] DEBUG: SeqGenerator: input seq len: 2868 +[2020-05-13 12:12:42.088519] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] +[2020-05-13 12:12:42.107468] DEBUG: SeqGenerator: input seq len: 4546 +[2020-05-13 12:12:42.109463] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] +[2020-05-13 12:12:42.136391] DEBUG: SeqGenerator: input seq len: 3716 +[2020-05-13 12:12:42.137388] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] +[2020-05-13 12:12:42.161324] DEBUG: SeqGenerator: input seq len: 3540 +[2020-05-13 12:12:42.162322] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] +[2020-05-13 12:12:42.169303] DEBUG: SeqGenerator: input seq len: 3754 +[2020-05-13 12:12:42.176285] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] +[2020-05-13 12:12:42.197228] DEBUG: SeqGenerator: input seq len: 4088 +[2020-05-13 12:12:42.199223] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] +[2020-05-13 12:12:42.229143] DEBUG: SeqGenerator: input seq len: 4366 +[2020-05-13 12:12:42.229143] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] +[2020-05-13 12:12:42.252081] DEBUG: SeqGenerator: input seq len: 2697 +[2020-05-13 12:12:42.253079] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] +[2020-05-13 12:12:42.274022] DEBUG: SeqGenerator: input seq len: 4019 +[2020-05-13 12:12:42.274022] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] +[2020-05-13 12:12:42.296961] DEBUG: SeqGenerator: input seq len: 3130 +[2020-05-13 12:12:42.297959] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] +[2020-05-13 12:12:42.315911] DEBUG: SeqGenerator: input seq len: 2076 +[2020-05-13 12:12:42.315911] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] +[2020-05-13 12:12:42.330871] DEBUG: gensim.models.base_any2vec: job loop exiting, total 75 jobs +[2020-05-13 12:12:42.332865] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs +[2020-05-13 12:12:42.336855] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs +[2020-05-13 12:12:42.337853] DEBUG: gensim.models.base_any2vec: worker exiting, processed 18 jobs +[2020-05-13 12:12:42.337853] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 3 more threads +[2020-05-13 12:12:42.337853] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 2 more threads +[2020-05-13 12:12:42.338850] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 1 more threads +[2020-05-13 12:12:42.354807] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs +[2020-05-13 12:12:42.358820] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 0 more threads +[2020-05-13 12:12:42.358820] INFO: gensim.models.base_any2vec: EPOCH - 1 : training on 607874 raw words (519076 effective words) took 4.0s, 129070 effective words/s +[2020-05-13 12:12:42.359794] INFO: gensim.models.base_any2vec: training on a 607874 raw words (519076 effective words) took 4.0s, 129014 effective words/s +[2020-05-13 12:12:42.365777] INFO: gensim.models.utils_any2vec: storing 1344x12 projection weights into ./tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v +[2020-05-13 12:12:42.371761] DEBUG: smart_open.smart_open_lib: {'uri': './tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v', 'mode': 'wb', 'buffering': -1, 'encoding': None, 'errors': None, 'newline': None, 'closefd': True, 'opener': None, 'ignore_ext': False, 'transport_params': None} +[2020-05-13 12:12:42.393210] INFO: Histogram: Percent of 3-mers: 33.3% (202162) +[2020-05-13 12:12:42.393210] INFO: Histogram: Percent of 4-mers: 33.3% (202583) +[2020-05-13 12:12:42.394208] INFO: Histogram: Percent of 5-mers: 33.4% (203129) +[2020-05-13 12:12:42.401188] INFO: Histogram: Number of base-pairs: 2432463 +[2020-05-13 12:12:42.402186] INFO: Benchmark: wall=0.146m cpu=0.146m diff --git a/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v b/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v new file mode 100644 index 0000000..28f3654 --- /dev/null +++ b/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v @@ -0,0 +1,1345 @@ +1344 12 +AAA 1.1242529 0.18182507 0.33577624 -0.312573 -0.40525377 -0.5318403 -0.54999405 -1.039881 -0.5980296 -1.1454755 -0.25008532 0.04169052 +TTT 0.9277847 0.5220297 -1.3926398 -0.33231407 -0.016000483 -1.0046344 -0.3326537 -0.4309856 -0.39578396 -0.4687364 0.5209789 0.42739508 +AAT 1.2860295 0.2185834 -0.29964387 0.31610093 -0.7653607 0.28095433 -0.59744304 -0.6588056 -0.37977123 -0.8622448 -0.058129173 0.15808782 +GAA 0.81747305 0.3557909 -0.14186342 0.05296047 -0.4921514 0.06319166 -0.36897868 -0.99645305 -0.841529 -1.0105146 -0.06454924 0.32450804 +ATT 1.3225299 0.39153492 -1.6195636 -0.19754899 -0.48307583 -0.044955038 -0.4404049 -0.53621805 -0.49651426 0.059699025 -0.038372975 0.21268748 +ATG 0.659189 0.33697045 -0.51735514 0.9991447 -0.651698 0.06653247 -0.7030769 -0.6078225 -0.2925405 -0.9310043 0.057457007 -0.1329275 +TGG 0.43090075 0.7020449 -0.5858098 0.64662254 -0.96654207 0.13549438 -0.36210793 -0.26591855 -0.5588129 -1.3768159 0.40738723 -0.032636143 +GGA 0.5081202 0.5157434 0.18060543 0.5948618 -0.97266454 0.13444367 -0.44681785 -0.8774259 -0.67132545 -1.2807876 0.6066824 0.39819133 +TTC 1.0261018 0.64052486 -0.75917107 -0.7513561 -0.58858985 -0.8811695 -0.54651093 -0.38884896 0.32098785 0.15783525 0.562957 0.1350043 +AGA 0.76309246 0.28806877 0.03178105 -0.49089682 -0.20095997 0.47640032 -0.7962318 -0.5780624 -1.3369917 -0.8379035 0.19354282 0.3929259 +CAT 1.5277567 0.69898945 -1.0043306 -0.2497477 -0.56376034 -0.1484138 -0.1662487 -0.10984755 -0.51138693 0.6479083 0.23941116 -0.37438303 +TCT 0.98145944 0.45585012 0.06638381 -0.027513534 0.1331927 -0.59388024 -1.0150045 -0.4386087 -0.104623355 0.2502798 0.9278915 0.76074684 +ACA 1.3025658 0.92500216 0.7495437 0.053582866 -0.60140663 -0.54457587 0.42152992 -0.5122342 -1.0344789 -0.15468396 0.14857295 -0.14188036 +TGA 0.3160212 0.27170232 -0.68902534 0.5658332 -0.18357687 -0.16672203 -0.67050487 -1.2023295 -1.1372042 -0.22352405 0.22522016 0.4931145 +TGT 0.62484956 -0.06159543 -0.98533374 0.8511169 -0.08888605 -0.86054206 -0.94682455 -0.019108327 -0.6432783 -0.536369 0.76016694 -0.3570855 +TTG 0.46124664 0.67847645 -1.2001911 0.48241723 -0.056621328 -0.43389034 -0.04437218 -1.1348336 -0.47276857 -0.48555452 0.46476895 0.4030257 +CCA 1.1415614 0.85810363 -0.38673797 -0.3401343 -0.77157706 -0.72476 -0.33089986 -0.9645572 0.47607836 0.5308533 0.14314476 -0.58063716 +CTT 0.55154985 0.88890386 -1.0218687 -0.54108185 0.42012835 -1.0452994 -0.8103552 -0.16814226 -0.6366762 -0.0011876443 0.25567254 0.44036478 +TCA 1.4782126 0.274177 0.6434683 -0.27041855 -0.82716656 -0.43890437 0.053991742 -0.9359331 -0.36124215 0.293091 0.89472455 -0.04327781 +CAA 1.1634465 0.019515727 0.1596026 -0.2326877 -0.59947616 -0.35412517 -0.3876397 -1.0748255 -0.79939383 -0.18608813 -0.13252228 -0.7021189 +ATA 1.6940074 0.25198737 -0.3637277 -0.19976534 -0.26943895 0.55832416 -1.0062587 0.1871512 -0.56707156 -0.6606001 -0.29786345 -0.019304257 +AAG 0.6865259 0.25945485 0.25465405 -0.46054327 -0.18040195 0.072007716 -0.16506737 -1.2149 -0.5152465 -1.2331228 0.53576833 -0.0904856 +CTG -0.119754694 0.740707 -0.10549643 0.71668875 -0.010741965 -0.40812662 -1.0344473 -0.23061398 -0.5682338 -0.34279042 0.47379395 0.1941188 +TAT 1.5810223 0.42158028 -0.49954447 0.50437295 -0.09921684 -0.05611958 -0.7637425 0.095127285 0.0958677 -0.2626859 0.4993031 0.50100476 +TCC 0.95186794 0.6324279 -0.43657178 -0.06882703 -0.44304395 -1.0298958 -0.81886196 -1.3134686 0.40235424 0.8762931 0.43362612 -0.26811448 +CAG 0.49682942 0.3317017 -0.050811604 -0.5928403 -0.13870113 0.2121069 -0.28560096 -0.39997724 -1.3396068 -0.077179894 0.7952319 -0.5545714 +TTA 1.6620172 0.5335172 -0.77561146 -0.22143652 0.045823354 -0.55445045 -0.26689085 0.12983662 -0.09765903 -0.81902003 0.09883185 0.31505945 +TAA 1.571656 0.08942324 0.26277673 0.4218422 -0.08967414 -0.5486358 -0.58386004 -0.41062275 -0.31684518 -1.2144445 0.027207408 0.27658755 +GAG -0.026457574 0.38686147 -0.51908314 -0.24361058 -0.11745558 0.29715535 -0.42818305 -0.8823363 -1.2686758 -0.56626296 1.0398847 0.092711 +AGG 0.29819572 0.830016 -0.26541865 -0.8154116 -0.5288567 0.33994102 -0.16403458 -0.3311511 -0.23481537 -1.7263325 0.4592267 -0.3547235 +ACT 0.32951698 1.0163844 0.43911314 -0.013008816 -0.24917242 -1.0326262 -0.87946725 -0.25895816 -0.5144072 -0.25913784 -0.085748285 0.62122124 +CTC 0.24258955 0.8267835 0.19610691 -1.0382887 -0.6315739 -0.6472643 -1.1121032 -0.0615455 -0.20056327 0.034682244 0.25633678 0.08617243 +CCT 0.18020444 0.90824425 -0.79219836 -0.47979224 0.3838512 -0.7686056 -1.1896943 -0.5809795 0.50342786 -0.21244949 0.0036115914 -0.081833385 +GTG 0.04219821 0.19362131 -0.7692757 0.9925543 -0.2589822 -0.52463865 -0.52374566 -0.78900945 -0.6741329 -0.7830991 0.9257587 -0.53212357 +CAC 0.7345274 1.0431032 0.29730815 -0.2757171 -0.47087806 -0.7933212 -0.28339517 -0.114861846 -0.9261885 0.41300616 -0.0349493 -0.8107415 +AGT 0.22962996 -0.26885012 -0.88407564 -0.3972407 -0.20175998 -0.4625116 -0.62217456 -0.2554984 -0.832308 -1.0450097 0.89251083 -0.7430719 +AAC 0.5210772 0.9033761 0.37464118 -0.29059535 -0.32498106 -0.8842815 -0.5109792 -0.41306195 -0.62410265 -0.74991405 -0.50784206 0.03738456 +AATG 0.95063853 0.45680517 -0.32676557 0.88541424 -0.97196716 0.35570726 -0.6755863 -0.9051371 -0.5517976 -1.3231901 -0.14064175 -0.3378231 +GTT 0.4857864 0.017474527 -1.1865479 -0.27826005 -0.0945596 -0.8594584 -0.31431186 -0.560169 -0.56880623 -0.60651135 0.92628694 -0.16785917 +ATC 1.1361276 0.12738456 -0.08180339 -0.6702652 -1.1824161 0.16442345 -1.1810905 -0.16286129 0.011042226 -0.093240015 0.18164487 -0.19824968 +TGC 0.80713665 0.66024536 -0.7325103 0.59528834 0.53290427 0.18353306 -0.12648822 -0.7705151 -0.38942507 -0.018389376 0.13961455 -0.809866 +GAAT 1.0795788 0.52936304 -0.3639585 0.5081809 -0.9812957 0.71870863 -0.5894187 -0.9242656 -0.86071175 -1.0473521 0.15503724 0.19590273 +TTTT 1.3307804 0.71026 -1.5042809 -0.43971366 0.09840969 -1.3384615 -0.1791949 -0.39835438 -0.54126114 -0.49679792 0.6529668 0.69341034 +GCA 1.1639422 0.83422774 0.07673155 0.5970839 0.25846735 0.23916349 0.6326375 -1.3106818 -0.3094636 -0.005155773 0.6127376 -0.54181755 +TGGA 0.41711384 0.670072 -0.50219184 0.56736475 -1.1307765 0.11007773 -0.54329586 -0.41742915 -0.9207499 -1.4260379 0.34256378 -0.013569332 +GAT 0.8543784 0.5984489 -0.9110871 0.40519872 -0.6674236 0.52461976 -0.46893752 -0.34097698 -0.64252627 -0.07999676 0.58377564 0.6932478 +AAAA 1.3658854 0.0120977005 0.29304898 -0.44058293 -0.5852816 -0.7681353 -0.8009514 -1.1507938 -0.5865382 -1.3933136 -0.37924817 -0.05445166 +GGAA 0.8455107 0.5157944 0.23419137 0.5377589 -1.059593 0.2506183 -0.41223922 -1.1306478 -0.5489589 -1.739747 0.36898062 -0.0052034906 +GCT 0.2676802 1.1769623 -0.23982501 0.18688528 0.93774396 -0.023702407 -0.5464227 -0.57960904 0.033923928 -0.13517262 0.7135101 0.21777968 +TAG 1.1667732 0.37051216 0.31472895 -0.12875251 0.3836893 0.5784688 -0.58605516 -0.2737918 -0.7329368 -1.2439095 0.7423677 0.47185683 +ATGG 0.8258724 0.7122323 -0.47750574 0.78550786 -1.0501916 0.38147038 -0.73582464 -0.61560416 -0.10410152 -1.5707214 0.12879016 -0.07985207 +CTA 1.1444172 0.46853957 0.13744988 -0.1618552 0.3582704 -0.28420666 -1.3252885 0.09227222 0.083120145 -0.34128684 0.07674316 0.28884658 +AGC 0.41009575 0.9325931 -0.5006397 -0.7938032 0.80392665 0.4372339 -0.29859236 -0.8633703 -0.5398675 -0.34935302 0.06563354 -0.59392637 +GGG -0.2072919 1.1909524 -0.30925384 -0.22532244 -0.9497395 0.18584956 -0.15213586 -0.40894803 0.07818191 -1.2001468 0.88925445 -0.13224635 +CCC 0.3569593 1.1837828 -0.21104082 -0.14687048 -0.37209606 -0.3353082 -1.0290523 -1.1292073 0.5865217 0.3530078 -0.3945036 -0.59824723 +GTA 1.1341023 -0.054717798 -0.10959821 0.7244256 0.027457535 -0.2963953 -0.8115 0.1900646 -0.374634 -1.2658372 0.63951033 -0.32700452 +ACC 0.36049947 1.2064255 0.18645899 0.15612374 -0.5010631 -0.6420314 -0.74415934 -0.7614712 0.005041891 0.011049109 -0.7846209 -0.3257418 +GGT 0.25458142 0.434479 -0.65544724 0.1282124 -0.71168286 -0.32963523 -0.361763 0.21657446 0.09316287 -1.0665251 1.1911145 -0.33152947 +GAC 0.14509755 1.2569959 0.31000006 0.056993954 -0.9021075 -0.17450285 -0.6088547 -0.057713285 -1.0225165 -0.36610147 -0.10667321 0.3116522 +AAAT 1.6377289 -0.28162777 -0.21242134 0.21198897 -0.90221846 -0.18176724 -0.91055274 -0.952902 -0.5618177 -0.82414013 -0.26441228 -0.012659225 +TAC 1.5093983 0.9823307 0.27345473 0.15384142 -0.0034509765 -0.60899705 -0.27524728 0.36132666 -0.26867953 -0.19351278 -0.15655777 -0.02857609 +ATTT 1.515932 0.41673175 -1.711714 -0.066131614 -0.15958045 -0.46771 -0.3425308 -0.36378324 -0.87431 -0.108163565 0.12618639 0.44522616 +GCC 0.18613443 1.1069031 -0.28375176 0.28462285 0.35612148 0.28360534 -0.72791064 -1.1973163 0.5868137 0.14234735 0.22798808 -0.7470605 +GGC 0.15467934 1.5623944 -0.4033603 -0.089678906 0.096991904 0.65349394 0.089860104 -0.33106413 0.21235947 -0.46008047 0.6845904 -0.7947287 +CATT 1.3826648 1.0474223 -1.4343545 -0.27847886 -0.65036 -0.3702724 -0.09231834 -0.2719433 -0.53924125 0.75323904 0.2583965 -0.12792724 +GTC 0.32745856 -0.17553332 -0.3373791 -0.39778963 -0.9293104 -0.784606 -1.1059755 -0.32942665 0.021764858 -0.23097804 1.0519376 -0.81295747 +AGAA 0.8901115 0.42155832 0.022592684 -0.705326 -0.0031770878 0.48195753 -0.7514257 -0.89694977 -1.224957 -1.1294315 -0.13661025 0.24029033 +ATGGA 0.9011541 0.78788507 -0.27960014 0.61629325 -1.1984121 0.26619506 -0.836997 -0.8772192 -0.54209507 -1.7328866 0.10548057 0.08332881 +ATTC 1.6398054 0.32128468 -1.1633211 -0.4892242 -0.2785981 -0.236733 -0.9127784 -0.50225264 -0.25426546 0.6884492 0.36494774 -0.05242907 +GAATG 0.77220786 0.81714803 -0.47426552 0.91403216 -0.9963241 0.6537059 -0.6391849 -1.0336492 -0.99121827 -1.5111371 0.16882138 -0.06619393 +GAAA 0.6212371 0.3593201 -0.039874434 -0.23809524 -0.61827624 -0.33986065 -0.4315396 -1.1638278 -0.82780284 -1.3715031 -0.14427802 0.19052814 +TGGAA 0.8921191 0.68139833 -0.60633415 0.5596144 -1.2319175 0.25406066 -0.3892416 -0.6765169 -0.7585718 -1.8235933 0.061682172 -0.21637125 +TCCA 1.2809864 0.71665525 -0.21315277 -0.11261379 -0.7329006 -0.9937448 -0.65248847 -1.3007464 0.10150081 1.0678769 0.46595365 -0.44363713 +AATGG 0.9124296 0.6689113 -0.38094524 0.6676504 -1.2821835 0.32327065 -0.7348713 -0.8547408 -0.60751116 -1.5913824 0.12930791 -0.19503461 +TTCC 1.2093353 1.1143734 -1.3698404 -0.5144027 -0.55851805 -1.0800703 -0.6331467 -0.74053246 0.7557122 0.3219616 0.1882593 -0.3366617 +TTCT 0.8586375 0.6119592 -0.584158 -0.4213121 -0.039217822 -1.0067753 -1.1460207 -0.26355323 0.4213609 -0.11669545 1.0745703 0.69665 +TTTC 0.9480174 0.5032 -1.0256952 -0.9646273 -0.21187769 -1.1542215 -0.5467362 -0.50213146 -0.0146041615 0.020297373 0.787662 0.13059627 +AAAG 0.82495433 0.34549856 0.4241291 -0.5969952 -0.21808779 -0.10847329 -0.24742983 -1.4594665 -0.46510437 -1.7638693 0.22496362 -0.14749822 +TTTG 0.4975354 0.89404064 -1.3835653 0.42701873 0.030086486 -0.7764353 -0.05751193 -0.7577621 -0.4920471 -0.4323522 0.71278507 0.5768013 +CAAA 1.2218317 -0.11787928 0.36365172 -0.49312615 -0.6705896 -0.519127 -0.56193495 -1.2171739 -1.092351 -0.45829552 -0.15945333 -0.615914 +GGAAT 1.1199704 0.64113945 -0.20516999 0.7891125 -1.1208216 0.5206124 -0.619264 -1.2153198 -0.45230266 -1.6985375 0.55718124 -0.00923774 +CTTT 0.6384921 0.95926964 -1.3048373 -0.69887495 0.5911771 -1.2967852 -0.80830854 -0.4777091 -0.50212395 -0.09924123 0.30288488 0.51075876 +TAAA 1.7947628 0.011898225 0.29482654 -0.059621874 -0.10270499 -0.72398156 -0.6991904 -0.6479921 -0.21408148 -1.3047965 -0.25988778 0.20678142 +AATA 1.9868565 0.1706025 0.18490258 -0.18004437 -0.15986946 0.5825928 -1.0330865 -0.46827108 -0.59405774 -1.0889364 -0.2423872 0.106433064 +AATT 1.6122895 0.2970403 -1.0570492 -0.10714284 -0.5798269 -0.26891375 -0.14069808 -1.309951 -0.3557603 -0.6326418 -0.092443384 0.60250473 +TGAA 0.42835873 0.25628033 -0.7154029 0.7067886 -0.5208862 -0.59479576 -0.6384632 -1.5443535 -0.9884591 -0.8867766 -0.22861774 0.4592693 +CCAT 1.523125 1.0810828 -0.85592055 -0.08794938 -0.6925371 -0.68094575 -0.5118628 -0.59501 0.5843623 0.6895983 0.46671084 -0.48201934 +TTTA 1.7106441 0.6894407 -1.2833728 -0.5421716 0.18655838 -0.6513746 -0.12281954 0.13012 -0.09382826 -1.0397547 0.022982614 0.37397355 +TTCA 1.5943848 0.5402642 -0.3985694 -0.98863804 -1.0299115 -0.6984224 0.2231084 -0.37794515 -0.19747433 0.19449745 0.8023259 -0.056821715 +ATAT 1.8852934 0.1972241 -0.83526766 0.070160694 -0.5544956 0.38459903 -1.1523482 0.31487453 -0.32040876 -0.35276428 0.062416103 0.24270342 +TATT 1.9825954 0.64617693 -0.9000232 0.31558186 0.067373395 -0.4034156 -0.5692636 -0.06588666 0.2278379 -0.13799544 0.5366391 0.7050644 +TTGA 0.36984292 0.59138626 -1.1599166 0.30106488 -0.26031002 -0.51614314 -0.5002528 -1.32449 -0.8941346 -0.46325377 0.15349983 0.8712656 +CACA 1.2430531 0.92571765 0.5024984 -0.38609353 -0.7055302 -0.58846974 0.11852313 -0.22882617 -1.2874076 0.26338226 0.07033969 -0.85055155 +TCTT 1.0105523 0.843424 -0.3690808 -0.35304648 -0.0044831657 -1.1351793 -0.75093216 -0.50956327 -0.19678798 0.12965253 1.0557895 1.1482273 +AAAC 0.62821406 0.90728074 0.4305184 -0.40537533 -0.46663678 -1.0868338 -0.4947418 -0.7486776 -0.8220637 -1.0039145 -0.79841787 -0.057986006 +GTTT 0.5609896 0.28156424 -1.2677611 -0.37109554 -0.114495374 -1.2351938 -0.04325905 -0.36109197 -0.39518976 -0.68414265 1.1922576 -0.20652212 +TGTG 0.25581804 0.3595508 -1.0003041 1.3289957 -0.052480187 -0.9963745 -0.90570396 -0.29971004 -0.74108124 -0.38710636 0.79445803 -0.41778758 +AAGA 0.9519904 0.33221084 0.13818805 -0.6383474 -0.32552177 0.31493014 -0.5680095 -1.336321 -1.1068131 -1.0896682 0.02005807 0.49079838 +TGTT 0.7366212 0.33355334 -1.6384473 0.33329996 -0.052589204 -1.3677771 -0.547487 0.08021728 -0.6248116 -0.42258546 0.9543894 -0.14884773 +TTAT 1.8420691 0.5773551 -1.2518451 0.18994142 -0.23325846 -0.41968086 -0.63344395 0.24413292 0.08655447 -0.6421708 0.2491012 0.64042854 +CAGA 0.6761254 0.61072224 0.17384511 -0.6706408 -0.38809347 0.60724753 -0.57305914 -0.69364387 -1.9025748 0.015859507 0.20705247 -0.3172916 +TTAA 1.6376983 0.31119487 -0.60601956 -0.18311259 -0.00037212073 -0.76437837 -0.22282547 -0.67386574 0.17297973 -1.3407477 -0.14192677 0.37250856 +ATGT 1.1079456 -0.25491905 -0.7498887 1.2917651 -0.5912396 -0.6098504 -0.9672118 -0.2502123 -0.383868 -0.67552763 0.45480573 -0.65916336 +TCAA 1.5483466 -0.07221437 0.83026826 -0.3751701 -0.8624132 -0.7397671 -0.17205454 -1.5305988 -0.19922264 -0.19763665 0.87789416 0.11848807 +AACA 1.2486757 0.79935336 0.60187304 -0.010982422 -0.70287293 -0.43701628 0.072890036 -0.50109166 -1.2207775 -0.8831545 -0.41369396 -0.4917081 +TGCA 1.2164687 0.5959563 -0.53884983 0.6588119 0.43262798 0.0709989 0.34460837 -1.031058 -0.654801 -0.020989837 0.25500983 -0.9943949 +ATAA 2.0755465 0.1946744 0.06300367 0.040537644 -0.19744757 -0.07583853 -0.97634894 -0.3903662 -0.38049614 -0.8458354 -0.7523682 -0.24175474 +ACAA 1.5081416 0.87840664 1.1718476 0.15495081 -0.8529524 -0.7149669 0.26983264 -1.1751454 -0.6207282 -0.60785997 -0.3273895 -0.32280305 +TCTG 0.41284767 0.4593388 -0.11623752 0.46008006 0.2573425 -0.21169822 -1.162477 -0.46386757 -0.3997402 0.36262083 1.1539123 0.3737004 +ACAT 1.7302911 1.2539062 0.11354617 0.49816146 -1.1394255 -0.5309349 0.5088279 0.124657094 -0.42240041 0.06412861 0.060784414 -0.018286686 +TGAG -0.13258417 0.55491585 -0.7404347 0.060879286 0.1830123 0.24051262 -0.79851496 -1.0651118 -1.3455216 0.110598885 0.78158396 0.2800303 +TAAT 1.8089228 -0.17149182 -0.3352146 0.7341683 -0.1704826 -0.21416245 -0.9939573 -0.60624164 -0.13084976 -0.9547678 0.19914898 0.29260308 +AGGA 0.6211154 0.79889745 0.05442286 -0.9050254 -0.86091274 0.31139696 -0.45178935 -0.5945437 -0.8145155 -1.8030357 0.13951278 0.008933143 +TTGT 0.75179875 0.38346773 -1.0151614 0.90410435 0.033959046 -1.4313895 -0.49745187 -0.60044074 -0.1524133 -0.681921 0.8921349 0.35624072 +GAGA 0.12504737 0.77873385 -0.27062574 -0.37611267 -0.5385785 0.5418301 -0.71822 -0.8318907 -1.750423 -0.64874023 0.46860006 0.7422754 +ACAG 0.8943228 0.93396825 1.0189167 -0.32505575 -0.18216023 -0.045276016 0.2511913 -0.3867831 -1.5500749 -0.6039539 0.709008 -0.22143489 +TCCT 0.57961166 0.80554897 -0.66116905 0.02930414 0.33335564 -1.0820338 -1.3985876 -1.0287381 0.49674404 0.460335 0.7559431 0.35473606 +TTTTT 1.6260337 0.78992397 -1.7493787 -0.45750993 0.15734364 -1.495448 -0.2526392 -0.6559719 -0.6019848 -0.45443246 0.61283845 0.9627947 +CAAT 1.7061368 -0.17592034 -0.44880027 0.39307132 -0.49820098 0.14901476 -0.48922426 -1.1851535 -0.9658162 0.16301985 -0.034047607 -0.6665282 +ATTG 0.92654055 0.6201933 -1.5476034 0.60334694 -0.19594374 0.06334043 -0.08492458 -1.1264663 -0.6879988 -0.5273601 0.10132441 0.1634021 +AGAG 0.28450674 0.3369351 -0.05613654 -0.73425865 0.091837786 0.6234785 -0.61026096 -0.85364187 -1.7815541 -0.8845049 1.0242447 -0.1443588 +AAGG 0.67150897 0.7392422 0.30151352 -0.624345 -0.6007539 0.1752895 -0.05399748 -1.144548 -0.089608945 -1.927444 0.58781713 -0.08437486 +ATTA 2.033932 0.6164921 -1.1659145 -0.5402855 -0.21748853 -0.18290836 -0.48161158 0.14353815 -0.18725792 -0.6193454 -0.5393237 -0.00037344324 +AGTG -0.17123125 0.17267923 -0.58402085 0.38760868 0.020640241 -0.25336945 -0.8465823 -0.6989201 -0.9827872 -1.5208619 0.79850173 -0.87678254 +AATC 1.2576263 -0.057487383 -0.025579227 -0.63555115 -1.1617669 0.4094985 -1.2929686 -1.0318738 -0.116582446 -0.36777192 0.035699904 -0.05990165 +TCTC 0.6824106 0.45982927 0.45433623 -0.74138427 -0.71853197 -0.8742796 -1.2433177 -0.4319574 -0.0659887 0.5234171 1.3437176 0.2587931 +CTCA 0.7346697 0.66935724 0.68507516 -1.1519988 -0.64968604 -0.43920925 -0.7141531 -0.018328436 -0.43804777 0.13430789 0.68219465 -0.3618917 +GGAG -0.04841218 0.7902844 -0.37619543 0.1252229 -0.5282166 0.56031215 -0.38222653 -0.7777184 -1.0351322 -1.1678245 1.3847871 -0.12762548 +AAAAA 1.618655 -0.08744248 0.2473312 -0.7008165 -0.6015499 -0.95826364 -0.8753826 -1.4437009 -0.7939785 -1.6356763 -0.5626588 -0.052779093 +AGTT 0.52860445 0.010454425 -1.110651 -0.8354247 0.39485478 -0.8195285 -0.12720832 -0.48162943 -1.0833063 -1.050585 0.9996633 -0.3134801 +TAGA 1.477714 0.52405155 0.31639948 -0.1635559 0.14161949 0.8356903 -0.9431233 -0.4111157 -1.0784974 -1.059215 0.34568045 0.9108333 +CCTT 0.47974163 1.1982208 -1.3717068 -0.676159 0.22205625 -1.2884259 -0.94734776 -0.73068625 0.31333247 -0.01781936 0.04055461 0.19603536 +TGTA 1.295447 -0.14091583 -0.5879109 1.04152 0.12163678 -0.6394305 -1.0007479 0.21088879 -0.587444 -1.2102 0.39581004 -0.26358312 +GATT 0.96267873 0.9576042 -1.3557135 -0.2344445 -0.78585845 0.367121 -0.17609607 -0.7461891 -0.43029013 -0.056784492 0.5596271 1.0471065 +TCAT 1.9036573 0.60072553 -0.08035527 0.033751782 -0.8276307 -0.2593675 -0.13764115 -0.16074656 0.17605387 0.55924314 1.5014066 0.040304452 +ATGA 0.7312118 0.44998863 -0.82758605 0.6513881 -0.6779345 0.3735919 -1.1680326 -0.89009064 -1.0274422 -0.6177524 -0.737708 -0.0015663126 +CGA 0.40616664 0.6310988 -0.14799576 -0.049863953 -1.1863253 0.48730558 -1.1539577 -1.1783087 -0.3044638 -0.3450703 0.29581463 0.3226166 +CTTC 0.7837983 0.8418358 -0.3083354 -1.1950248 0.2795021 -1.0787411 -0.9758276 -0.24315326 -0.44930026 0.53696275 0.51061434 0.03557473 +CTGT 0.313232 0.46612906 -0.3035047 0.7415621 0.3919677 -1.3849086 -1.4361949 0.22035931 -0.41476208 -0.07062181 0.98548895 -0.1915431 +ACTT 0.5737617 1.3825607 -0.13688329 -0.36936447 0.08310539 -1.5507461 -0.19358501 -0.27521396 -0.81649745 -0.50673157 -0.14385249 0.86678684 +CACT 0.45094913 1.41191 -0.0791843 -0.43787876 -0.03435091 -1.3064159 -0.63459 0.13310742 -0.9258685 0.47677395 0.09511372 -0.24025905 +CTCC -0.0109356465 1.34288 -0.15297215 -0.79185617 -0.33800188 -0.8500496 -1.4526737 -0.5457689 0.10025026 0.61965984 0.43127525 -0.53876555 +TATA 2.3788376 0.42256048 -0.2379176 0.4186239 0.12045821 0.11638625 -0.8659622 0.43489155 -0.28465492 -0.6119478 0.1410956 0.26357868 +AACT 0.4052453 0.74792284 0.44071808 -0.35255715 0.24719788 -1.3208783 -1.0265894 -0.48582217 -0.7383421 -0.7994422 -0.3163317 0.46574938 +ATCT 1.1526575 0.26355553 0.040272586 -0.40630093 -0.57432044 -0.2607112 -1.4724011 0.18289198 0.14423965 -0.052556667 0.58400655 0.4239989 +ACAC 0.97738886 1.7369926 0.68126273 0.20548652 -0.68578935 -0.9673344 0.18316793 -0.2846507 -1.2083184 -0.052092258 -0.48828208 -0.43197525 +GAAG 0.25674376 0.58261466 -0.0051507563 -0.32803494 -0.23640648 0.4508697 -0.34758458 -1.3393368 -0.8879302 -1.4038593 0.5411108 0.26061854 +TGAT 0.8987629 0.49466008 -1.3887764 1.1877309 -0.4113708 0.06777276 -1.0069722 -0.7308552 -0.594015 0.17382462 0.7646516 0.74137384 +GAGT -0.0062230863 -0.06617919 -0.5725225 -0.061904743 -0.5045625 -0.121501364 -0.7119445 -0.6234486 -1.4196421 -0.93115366 1.4510485 -0.23633562 +TCCAT 1.6998954 0.9177735 -0.94490224 0.068497986 -0.7050938 -0.8572559 -0.73426634 -0.9309091 0.09784307 0.9788122 0.82545966 -0.33680466 +CTCT 0.20937672 1.0809659 0.018986082 -0.59644 0.21659152 -0.74824274 -1.733861 0.14108616 0.11160635 0.056649666 0.93990034 0.58316475 +CTGG -0.28812048 1.7375152 -0.047685552 0.5012763 -0.6595785 -0.1590539 -0.8019772 0.19132525 -0.068977565 -1.0416061 0.44837385 0.11531699 +AGAT 1.1827881 0.43555173 -0.43366447 -0.33348882 -0.26617092 1.0884285 -0.68255776 -0.45037782 -0.97040784 -0.16874248 0.50560683 0.6572497 +TCG 0.40667686 0.7940117 -0.25897673 -0.22599597 -1.3825603 0.41753897 -1.099775 -1.0429357 0.021579625 -0.18897878 0.5471737 0.42523518 +AGCA 0.97035176 0.79762083 -0.27371526 -0.7425818 0.62688345 0.37024903 0.4023385 -0.9650272 -1.1592467 -0.4287412 0.29614756 -0.93908376 +TGCT 0.49515858 1.2123569 -0.70827425 0.56121475 1.2600837 -0.284943 -0.75017667 -0.27467412 -0.3693078 0.25667948 0.770326 -0.022551343 +ATCA 1.7229334 0.025433779 0.16699602 -0.8491132 -1.5411386 0.18025854 -0.568674 -0.34666345 -0.54416364 -0.40137964 0.38459226 -0.6257216 +CCTG -0.5467662 1.377133 -0.6496333 0.541273 0.17738415 -0.39763695 -1.5108343 -0.3060275 -0.079273865 -0.034670863 0.14512897 -0.6557743 +GTGG -0.049420808 0.6207749 -0.4912474 0.70052356 -0.7282781 0.0028441073 -0.33311456 -0.67503464 -0.49696195 -1.5066005 1.2523565 -0.7289939 +CATTC 1.6675558 0.9964417 -1.0924712 -0.53176665 -0.42898333 -0.5202013 -0.6420502 -0.5107423 -0.13266692 1.008844 0.5863959 -0.5167946 +AAGT 0.49214 -0.46612263 -0.14853257 -0.29628968 0.054153606 -0.77618104 -0.61564773 -1.0226135 -0.59679914 -1.4815784 0.86244 -0.69859034 +TACA 2.071301 0.8469432 0.54477394 0.15603341 -0.07397171 -0.5099901 0.30434108 0.23920187 -0.7348773 -0.24630827 0.22781633 -0.09753298 +TTCCA 1.4858888 0.9755528 -1.133271 -0.55142087 -0.7565342 -1.039856 -0.48551762 -0.959976 0.3925711 0.54709125 0.34293127 -0.4312741 +TCAG 0.6845793 0.45288348 0.57031685 -0.6571496 -0.31450713 0.22260046 -0.13201734 -1.0969126 -0.50567764 0.3394668 1.7957762 -0.058387615 +ACTC 0.31121174 1.0704783 0.63150805 -0.49541023 -0.99511236 -0.93201923 -1.232141 -0.37412763 -0.4631871 0.21464191 0.049034134 0.45366165 +ACTG -0.09963262 1.3374896 0.3807132 1.0923744 0.0033291215 -0.7204862 -0.7460321 -0.081935816 -1.0878189 -0.80123615 -0.08884943 -0.079525225 +CAGG 0.17864072 1.10111 0.23861293 -0.8044601 -1.0122216 0.7097433 -0.1268666 -0.19175872 -0.64909625 -0.34865353 1.1026986 -1.1735158 +TTGG 0.444992 1.2178484 -0.94991153 0.4439875 -0.7022305 -0.25662264 0.33114657 -0.60107374 0.0988257 -1.1059315 0.7722592 0.5994744 +CTGA -0.24241087 0.829999 -0.47788087 0.21203624 0.14609288 0.07501671 -1.5939726 -0.7186617 -1.0538349 -0.09881165 -0.15493669 0.6388205 +TCTA 1.6918931 0.3422822 0.34490794 -0.2475986 0.22973025 -0.5212122 -1.4958494 -0.20818515 0.5345011 -0.11534073 0.97421867 0.716685 +CCAG 0.34970632 0.72976774 0.1306023 -0.7937904 -0.40028965 0.09909364 -0.5914644 -1.1072168 0.11062847 0.17130274 0.6044611 -1.207158 +TCAC 1.1511297 1.0777713 0.832507 -0.2776598 -0.65096015 -0.9790689 -0.07274861 -0.003517864 -0.7965575 0.6786495 0.8810767 -0.3010652 +TGGG -0.11427877 1.4894434 -0.5627992 0.53546125 -0.9039442 0.2600193 -0.2903625 0.026108172 0.2798823 -1.0724608 0.9907938 -0.055736035 +CCCA 0.55476916 0.9181746 0.1756265 -0.27879825 -0.9271869 0.015781978 -0.7052015 -1.4219455 -0.0502724 0.4909748 -0.29806626 -1.3312252 +GTGA -0.15295354 0.17885627 -0.6633797 0.9790562 -0.43546018 -0.31977978 -0.93711674 -0.82977724 -1.2922127 -0.47972244 0.5284556 -0.16340624 +GTGT 0.5113604 -0.07989028 -0.77629983 0.98851186 -0.06649936 -1.1419038 -0.8341434 -0.3001342 -0.37962994 -0.766662 1.3877176 -0.7624774 +CTGC 0.34811723 1.1692532 0.037192754 0.21855287 1.1690426 -0.37979487 -0.75000376 -0.50633943 -0.61317664 0.32824373 0.36337316 -0.64653844 +CATG 0.7931616 0.6834557 -1.0569855 0.8420187 -1.0499045 0.31138194 -0.30914 0.006667399 -0.8442417 0.2342417 0.1456494 -1.0671936 +CCATT 1.5928961 1.2187694 -1.0215372 -0.16937354 -0.6626152 -0.84351885 -0.52245027 -0.9087737 0.45957938 0.59120476 0.45697275 -0.30277896 +TGGT 0.3289749 0.7428588 -0.791908 0.75687253 -0.7321379 -0.3614837 -0.44023764 0.36740625 0.120567314 -1.1363279 1.201444 -0.22112073 +GACT -0.04115811 1.2597989 0.37110132 0.18517627 -0.8949102 -0.5459846 -1.2002044 -0.19881637 -0.8274671 -0.91889554 0.24811797 0.8258009 +CCAA 1.1482319 0.54584616 0.17540051 -0.3967772 -0.7162871 -0.38252956 -0.652934 -1.5602243 0.42236236 -0.0604132 -0.5150168 -0.94619113 +GACA 0.61863303 1.2206521 0.2911643 0.19240372 -0.9444864 0.007465963 0.16441795 -0.34124693 -1.6662507 -0.09390162 0.26168132 0.1171353 +ATAG 1.5535634 0.27624142 -0.15293099 -0.33923468 -0.02422047 1.2625862 -0.8647135 -0.20620945 -0.9062438 -1.2519181 0.40402353 -0.23797175 +ACCA 0.88081557 0.98052853 0.41021594 0.2348691 -0.7917293 -0.24892771 -0.64717686 -0.66727 -0.43439853 0.28400934 -0.6834676 -0.96890897 +CCTC 0.017812876 1.2731719 -0.11039304 -0.9749611 -0.2882892 -0.38701206 -1.5000625 -0.6118399 0.2777233 0.62822163 0.52683103 -0.51333076 +CCAC 0.559918 1.5648967 0.118173175 -0.11063556 -0.596878 -0.9880783 -0.5191687 -0.44707498 -0.101078294 0.5908118 -0.22202384 -0.8858359 +GGGA 0.12485745 1.2737429 -0.07200023 -0.054900534 -1.0466261 0.5180137 -0.22083698 -0.4931337 -0.33160308 -1.4137113 0.54363734 0.3014763 +TATG 1.0578898 0.59937704 -0.6685675 1.2357616 -0.019608604 0.27182305 -0.7865525 0.2058903 0.06399736 -0.6648396 0.3890502 -0.10170527 +ATTCC 1.831105 0.74005735 -1.306589 -0.4063974 -0.26036337 -0.8316926 -1.1053407 -0.8523498 0.13078643 0.6827702 0.20466451 -0.44385955 +GCAA 1.3240372 0.6210614 0.41338766 0.58357686 0.3892813 0.26461938 0.16966727 -1.7393434 -0.21705753 -0.73935276 0.049477886 -0.7884867 +GCAG 0.5627321 0.8519179 0.21757667 0.038363207 0.642073 0.50541747 0.3781759 -1.271798 -0.7715825 -0.3503067 1.3244513 -1.0480074 +ATGC 1.2693328 0.6931676 -0.67942476 0.9112876 0.2999365 0.7329499 -0.39642382 -1.0949517 -0.14821075 -0.2700253 -0.31681946 -1.065427 +CATA 1.8643066 0.6222862 -0.08705762 -0.18842188 -0.31115043 0.35605454 -0.53250253 0.564484 -0.58899325 0.02373995 -0.13204786 -0.6220476 +CAGT 0.72052807 -0.11276053 -0.41831735 -0.4091033 0.19184262 -0.81482947 -0.27182555 -0.30334353 -1.0199252 -0.053773798 1.1469986 -1.4810549 +GCCT -0.010827968 1.1795886 -0.07671236 0.17479819 0.7368041 0.2770959 -1.1995205 -0.9310943 0.7001159 -0.15599406 0.41494733 -0.35380518 +CATC 1.4202474 0.7845323 -0.011900772 -0.5684694 -1.1346977 0.21302155 -0.6896105 0.10345394 -0.40262732 0.91640455 0.5982466 -0.5813223 +GGTG -0.10314678 0.64039016 -0.62892616 0.8798943 -0.64546794 -0.2202118 -0.20929706 -0.36848548 -0.40160635 -1.2804501 1.2052249 -0.5119275 +GCAT 1.5790013 1.1668534 -0.5206059 0.76882434 0.15242769 0.62445736 0.5302501 -0.7966338 0.22327897 0.3247421 0.84795254 -0.48685136 +AGCT 0.24540754 1.0178747 -0.13597937 -0.8673453 1.2776058 0.21268268 -0.739328 -0.6514709 -0.4822517 -0.27622926 0.64363176 0.025998637 +GCTG -0.28651297 1.4065555 -0.56887764 0.8042644 0.8974557 0.24959214 -0.76319855 -0.51012266 -0.4790939 -0.39200544 0.9549075 -0.21761073 +GAGG -0.33032718 1.18991 -0.17496026 -0.14749703 -0.37270084 0.99471235 -0.4280746 -0.77849257 -0.8879002 -0.91085225 1.0934263 -0.14063345 +AGGG -0.123404585 1.1932563 0.116829455 -0.72925824 -0.8208664 0.47998446 -0.19526832 -0.44306004 -0.17509648 -1.591634 0.9919936 -0.6291183 +TGTC 0.34418803 0.113273256 -0.5002953 0.61556125 -0.867287 -0.9061943 -1.17732 -0.06261294 -0.5095955 0.40286583 1.257599 -0.6396919 +CAGC 0.73692393 1.2434766 0.16094388 -0.9131852 0.6211785 0.43589783 -0.3808341 -0.6536888 -0.8987606 0.5954947 0.4455905 -1.3238358 +AGGC 0.16472223 1.4537617 -0.08101959 -0.48589003 0.32031608 0.98262167 -0.32900932 -0.2923464 -0.20715353 -0.61649275 0.50767833 -1.0215626 +GCTT 0.4355046 1.3089013 -0.7798124 -0.43789262 1.2478333 -0.2467675 -0.16492216 -0.97524846 -0.062322546 -0.30976322 0.67751724 0.35769287 +TCCC 0.50050044 0.8430423 -0.26542822 -0.10096048 -0.342298 -0.403985 -1.3848276 -1.3166549 0.6686392 0.8040584 0.26529658 -0.37416747 +CTTG -0.018636938 1.0850996 -1.0104551 0.35622844 0.27184436 -0.9568716 -0.6491644 -0.651383 -0.5949908 -0.12195713 0.35981354 0.5183332 +CTAT 1.4624922 0.7664234 -0.5884291 0.28976834 0.26139063 -0.05206809 -1.4425333 0.2656161 0.35561907 0.22427803 0.55225253 0.49575737 +ACG 0.07591473 1.1416782 0.22117555 0.1625569 -0.8617559 -0.20131218 -0.13346791 -0.45900252 -0.75705916 -0.8282094 0.012621389 -0.6219744 +CAAG 0.66415393 0.13995123 0.5640517 -0.8891268 -0.35514966 -0.0014568649 -0.33711728 -1.1508218 -0.6726179 -0.4937443 0.577939 -0.78106314 +AAAAT 1.7234825 -0.21989684 -0.037823696 -0.13657063 -0.88991815 -0.25325558 -0.88757 -1.1796795 -0.4454126 -1.080348 -0.34274277 -0.042485565 +CCCT 0.13769278 1.459654 -0.43985543 -0.2487647 0.118648015 -0.5614686 -1.5417765 -0.9276236 0.67150766 0.28546333 -0.21025692 -0.07107832 +CTAA 0.9884546 0.2330366 0.7377819 -0.13477166 0.6198083 -0.48995954 -1.4164078 -0.617926 0.048617244 -1.0266026 -0.11517756 0.21656387 +GAAC 0.086714245 1.2693198 0.10813256 -0.033711497 -0.7101836 -0.41580117 -0.43177065 -0.54322845 -1.0561657 -0.8647421 -0.5654547 0.03165149 +CACC 0.39878133 1.4435796 0.259203 -0.35468346 -0.5410669 -0.9962763 -0.89453834 -0.33845836 -0.36642268 0.5902832 -0.4037141 -1.3592359 +AGAC 0.39803928 1.3507494 0.49026316 -0.5086458 -0.4606134 0.14959289 -0.59039706 -0.360339 -1.4769794 -0.36404413 -0.30605918 0.32968056 +GTAA 1.4368992 -0.22439028 0.17713319 0.71475756 0.0041361377 -0.6115761 -0.8724101 -0.31605142 -0.39436486 -1.6523627 0.4063646 -0.52601457 +TTGC 0.94362104 1.1595893 -1.1061102 0.56375474 0.8657778 -0.3605847 0.19296996 -1.1676544 -0.07958274 0.09388401 0.4399256 -0.3363151 +TTAC 1.5962368 1.1625227 -0.23072626 0.09182574 -0.2076057 -1.245643 -0.15323651 0.48255488 -0.28713593 -0.2445612 -0.13197568 0.17841682 +CCG -0.2673787 1.2964648 -0.4034323 -0.1814447 -0.6402361 -0.36891642 -0.60833615 -0.75429404 0.27639654 -0.08815327 0.28939524 -0.66035336 +GATA 1.3854563 0.696474 0.04808589 0.20110719 -0.29582378 0.9670516 -0.95288897 0.066954754 -0.7791319 -0.62925404 0.0015551158 0.61581516 +TACT 1.2944326 1.0986469 0.28341225 0.36830658 0.41198593 -1.0264654 -1.0025284 0.5518917 -0.40502465 -0.34777424 -0.038333304 0.580984 +ATTTT 1.7444968 0.30980745 -1.5575396 -0.15707758 -0.17124906 -0.7075739 -0.31375656 -0.563288 -0.7898238 -0.015355912 0.2766584 0.5462837 +GATG 0.4772111 0.5786329 -0.9494409 1.2218707 -0.6963188 0.7576734 -0.8124068 -0.39833856 -0.7166756 -0.19028011 0.80428463 0.03815003 +AGTA 1.2172556 -0.10536857 0.13302763 -0.2715382 0.68561155 -0.19169295 -0.86509246 0.32217914 -0.9408454 -1.7726363 0.6220068 -0.65364164 +TTAG 1.0888511 0.5402163 -0.7675132 -0.76177 0.8964762 0.036156904 -0.3056152 -0.19257624 -0.22759824 -1.0258616 0.689941 0.36882502 +GGAC 0.17654422 1.5103168 0.65196323 0.36694545 -1.1706308 -0.26833892 -0.70511526 -0.23613791 -0.7494934 -1.0016034 0.27402174 0.40805823 +TGCC 0.48906013 0.8279226 -0.96569026 0.52820206 0.5435657 -0.12486858 -0.97217613 -0.7738509 0.23637198 0.3139387 0.12615776 -1.1358026 +ACTA 1.2167996 0.9859694 1.0607709 -0.03159209 0.3790551 -0.61511415 -1.1904825 0.13009416 -0.47368476 -1.0630345 -0.3439447 0.5501246 +TTTCT 1.113165 0.73564696 -0.8529971 -0.69436365 0.20001543 -1.3606682 -1.0669457 -0.57137966 0.2643728 -0.05917248 1.1668695 0.95349914 +TATTT 2.2971447 0.62274235 -1.1377963 0.38526872 0.07866084 -0.5224154 -0.37257156 -0.16330993 -0.12633513 -0.4316754 0.6945343 1.1307132 +AAGC 0.8655588 0.8991439 0.081577234 -1.0240391 0.80320084 0.46847904 -0.23013134 -1.4092953 -0.33778077 -0.7352274 -0.22689456 -0.55719095 +AGCC 0.050076935 0.9552114 -0.34206444 -0.86251384 0.44652247 0.5665976 -1.2193187 -1.0953826 -0.024175951 -0.28793305 -0.13975166 -1.1253835 +CGG -0.08049527 1.3651924 0.05045349 0.20453587 -0.89978355 0.24259456 -0.31955257 -0.51120496 -0.06770693 -0.89761347 0.38926637 -0.52325827 +TAGT 1.3438429 -0.13399404 -0.21266335 -0.13850388 0.7717496 -0.44176462 -0.52266383 0.08499103 -0.26616055 -1.1635454 1.2318449 -0.42015788 +CGT 0.010971476 0.7079547 -0.5235112 0.049098995 -0.2715833 -0.782817 -0.45830584 -0.28121442 -0.051884744 -0.047007877 0.8942102 -0.7639019 +TTTTG 0.8376381 0.9628032 -1.5503109 0.3905338 0.06518272 -1.1706423 -0.0056729214 -0.7921742 -0.55487233 -0.48064744 0.84006363 0.7152567 +AAATA 2.1338348 -0.100894526 0.17532258 -0.099521056 -0.3540903 0.20536928 -1.1074368 -0.6526585 -0.58755004 -1.0685457 -0.4183944 -0.08374647 +GTCA 0.7841921 -0.21793844 -0.031933863 -0.027997447 -1.1769432 -0.48927298 -0.4304065 -0.1895989 -0.69731265 -0.11406103 1.2941742 -1.0790622 +ATCC 1.1099178 0.482369 -0.45274383 -0.27872804 -0.90487635 0.13582702 -1.4313877 -0.73845536 0.5382738 0.37951657 -0.14412571 -0.50818336 +TAAG 0.99357325 0.15380464 0.41000026 -0.2293319 0.5053632 -0.012888554 -0.608437 -0.4371195 -0.17371054 -1.4608215 0.77997756 0.23398004 +GGAT 0.87841517 0.8743998 -0.7610579 0.3665939 -0.96199745 1.0067954 -0.40406573 -0.40749088 0.14184333 -0.47301167 0.92804205 0.5288079 +TGGC 0.3194294 1.6001874 -0.671966 0.6022451 -0.06295017 0.36257866 0.11246884 -0.15835519 0.061746582 -0.48760173 0.57279027 -0.817768 +ATAC 1.6636281 0.9815969 0.380617 0.45079824 -0.3358861 -0.0827513 -0.84414035 0.4576633 -0.4709054 -0.124580815 -0.4966852 -0.15147738 +GTCT 0.08656397 0.22760193 -0.042060643 -0.19395177 -0.3399301 -1.0406533 -1.4079943 -0.02502183 0.17112313 -0.48755008 1.3742502 0.037104767 +GGCT -0.06619197 1.745339 -0.12736657 -0.113140985 0.526309 0.32133195 -0.3768248 -0.22290161 0.15824312 -0.474165 1.2761016 0.13188778 +GGCA 0.8064357 1.5182316 -0.0043095155 0.18382382 -0.29173514 0.7532603 0.64909977 -0.36751086 -0.35449842 -0.54218817 0.62526125 -1.1644198 +ACCT 0.26654813 1.318279 0.21370348 0.28734294 -0.010422246 -0.81436414 -1.298299 -0.08270462 0.032142986 0.014183291 -0.61501366 -0.14704438 +AGGT 0.2708533 0.24824958 -0.33509964 -0.50126845 -0.25427297 -0.04042011 -0.24758461 -0.0018670345 -0.36861885 -1.3122634 1.4747962 -0.50578594 +TATC 1.6548759 0.40666127 0.056798212 -0.15964669 -0.47181335 0.08273253 -1.2736996 0.33146295 0.15863466 0.17280258 0.6492927 0.35687017 +GCCA 0.6150488 0.80562365 -0.36218628 0.37777567 -0.0058237147 0.11951093 -0.24301213 -1.3912033 0.054129552 0.2757744 0.09653519 -1.3410789 +AAATG 1.2181057 -0.087686054 -0.3756522 0.6291728 -0.95408726 -0.12003467 -0.72482836 -1.300438 -0.7242727 -0.9632786 -0.34283417 -0.7987546 +AAAGA 1.049172 0.4097712 0.40624678 -0.7497031 -0.46434686 0.1414353 -0.51030296 -1.4691023 -1.1906685 -1.4476664 -0.086176775 0.25754473 +GAGC -0.13501364 1.1640208 -0.48869142 -0.32690868 0.5269266 0.67465764 -0.47109178 -1.2269499 -0.962184 -0.05316758 0.47018316 -0.37511748 +GTAT 1.549941 -0.13394246 -0.6015346 0.7867614 -0.08129446 -0.051291466 -0.99385226 0.4063949 0.0036054207 -0.8358829 1.0529256 -0.27528754 +GGGG -0.38767433 1.7085415 0.013939331 -0.10037347 -1.1167932 0.25256848 -0.26846623 -0.41035876 0.10408643 -1.3503244 1.3151882 -0.29321197 +AGAAA 0.6815935 0.44179443 0.29507327 -0.9664873 -0.46021122 -0.068060875 -0.9223295 -1.2183188 -1.281212 -1.4321307 -0.23965472 0.27664182 +GTTG 0.06812496 0.45313072 -1.3423673 0.7286195 0.06598646 -0.5927183 -0.2652396 -0.8305121 -0.8896788 -0.7620228 1.2000415 0.023441726 +TAAAA 1.9091874 -0.1595756 0.027691241 -0.24284348 -0.039379764 -0.79508996 -0.83683324 -0.73947823 -0.3882305 -1.341354 -0.34850824 0.12831499 +CAAC 0.7901995 0.8790132 0.61834145 -0.55068433 -0.37844834 -0.9480379 -0.30736697 -0.6710614 -0.914208 -0.03856054 -0.3712588 -0.82538825 +AACC 0.33845413 1.114839 0.08168433 0.012545182 -0.435541 -0.5092696 -1.1025784 -0.88019466 -0.08235331 -0.6392972 -1.3414128 -0.7238691 +CTTA 1.1555856 0.9546098 -0.63982624 -0.6933357 0.8210544 -0.51782286 -0.8965584 0.3383553 -0.12013167 -0.51976484 -0.21293986 0.3155145 +AGTC 0.35517594 -0.082617804 -0.32412046 -0.7928989 -0.4839096 -0.5875874 -1.0553769 -0.5631931 -0.2548421 -0.2559321 1.0914621 -0.86685276 +GGTT 0.43715286 0.67438966 -1.0475929 -0.43294737 -0.42785683 -0.4441199 0.3496389 -0.18187968 -0.026288914 -0.84226215 1.6936154 -0.037173394 +TCAAA 1.4454768 -0.021810742 0.756874 -0.6380299 -1.106068 -0.6859515 -0.4257801 -1.4114718 -0.30256835 -0.5345087 0.50672346 0.03617166 +TTTTC 1.3275367 0.51775986 -1.185691 -0.9882943 -0.16890357 -1.4568696 -0.5732872 -0.77570575 -0.11943989 0.06857609 0.92150843 0.4491192 +TCGA 0.57751554 0.792882 -0.25957656 -0.2552123 -1.3182187 0.5072995 -1.2076334 -1.1001325 -0.19057758 -0.14338608 0.49018672 0.5151951 +TCTTT 1.1536181 0.9227224 -0.7821626 -0.5674669 -0.04191528 -1.4612366 -0.925849 -0.6049201 -0.09976834 0.21894452 1.1225386 1.2270583 +AGAAT 1.33391 0.30940843 -0.16326986 -0.45914015 -0.37647468 0.94932723 -0.9867744 -0.74641305 -0.84185433 -0.97723925 0.18499835 0.4354528 +GCTC -0.0188162 1.3486097 0.09840134 -0.54266924 0.46844316 -0.052739657 -1.0116454 -0.5186095 -0.015949426 0.43374133 1.1616486 -0.3516419 +GTTC 0.4399211 0.16172773 -0.7087665 -0.4647209 -0.43649703 -0.9164429 -0.6976349 -0.4840742 0.12329818 -0.013691794 1.7084336 -0.3592398 +TAAC 1.3511925 0.50601023 0.62784237 0.24904765 0.22576614 -0.958954 -0.6742472 0.28170693 -0.6720608 -1.0088714 -0.28335658 -0.20658703 +GGAAA 0.6416766 0.5960159 0.28134814 -0.109451264 -1.2056583 -0.19142559 -0.34573448 -1.1148176 -0.45318258 -1.9205979 0.12618908 -0.20814288 +AAAAG 1.1321882 0.081426755 0.3176217 -0.84086514 -0.18796617 -0.29084283 -0.42454717 -1.4116875 -0.6628444 -1.6905446 0.0767677 -0.26820487 +CAAAA 1.3409227 -0.041759178 0.44464186 -0.76186657 -0.70060676 -0.8282975 -0.46909338 -1.2029192 -1.0223316 -0.6631183 -0.23822519 -0.70251 +TGAAA 0.4336257 0.13817233 -0.6050544 0.41196468 -0.6845087 -0.6297169 -0.73410416 -1.4296068 -0.9243359 -1.1067253 -0.3037019 0.18528742 +TGAC 0.06108894 1.1311209 -0.20878483 1.017775 -0.7491604 -0.6348838 -0.7230236 -0.47484067 -1.5118724 0.25389183 -0.21043655 0.23009965 +TTTTA 1.8933735 0.5485617 -1.3267624 -0.30893433 0.15269049 -0.9973293 -0.25997615 -0.01745829 -0.32507625 -0.98320735 0.29122064 0.7198707 +TTCTT 1.0214962 0.83648086 -0.9656281 -0.930946 -0.06472003 -1.491586 -0.80274975 -0.65757567 0.2095804 -0.3529338 1.202153 1.046519 +CATTT 1.5367308 1.1083161 -1.4473425 -0.2006938 -0.65496624 -0.9066098 0.44462922 -0.32371497 -0.93874836 0.38119873 0.26599464 0.0016499832 +GGCC -0.20784163 1.4854429 -0.29150632 -0.04709323 -0.020347316 0.7089678 -0.7712093 -0.64488035 0.5337858 -0.35915443 0.52794933 -1.0275495 +CTTTT 0.9272034 1.115751 -1.227801 -0.5853599 0.5804034 -1.5645531 -0.70963776 -0.42870653 -0.56794274 0.031003118 0.4860292 0.7262628 +ACCC 0.36794975 1.4990243 0.3970726 0.20977423 -0.78109026 -0.3440498 -1.3187093 -0.9891657 0.013844778 0.10175725 -1.0398322 -0.76370245 +GAAAA 0.7423573 0.1832292 -0.26412672 -0.29473007 -0.9127664 -0.16523936 -0.71930295 -1.3830185 -0.7455157 -1.507183 -0.33642828 -0.03046029 +TTTGT 0.9677206 0.4561563 -1.4488398 0.7775662 0.10637433 -1.5953819 -0.41576087 -0.51283085 -0.36467686 -0.5527809 1.1526316 0.36373612 +GCAC 0.620174 1.6410942 0.58626264 0.36424953 0.40826184 -0.42698735 0.21907946 -0.43600276 -0.78779984 0.12764642 0.25353587 -1.0609057 +TTGAA 0.59707206 0.5090289 -1.1525402 0.22679001 -0.43690082 -0.71319747 -0.29931417 -1.6056855 -0.7232251 -1.0772406 -0.18539654 0.70644426 +AATTT 1.7562865 0.21462394 -1.010397 -0.16976434 -0.290515 -0.5008115 0.020831848 -1.2245926 -0.40886772 -0.80225694 0.0677395 0.63566804 +TTTAT 1.9405583 0.76031095 -1.6189886 0.03970668 -0.057223573 -0.60714006 -0.6612398 0.25593153 0.020559099 -0.6215405 0.3341511 0.84082913 +ATAAA 2.1897814 0.02854416 0.07044381 -0.06701567 -0.40212396 -0.09395412 -1.0266334 -0.54602325 -0.40282035 -1.1285677 -0.80636585 -0.40007946 +GGGT -0.027019462 0.9100235 -0.60752296 0.22396563 -0.80050755 -0.24378155 -0.21230823 -0.022715392 0.16314332 -0.9956945 1.6685808 -0.3601376 +CCCC 0.28229037 1.6292087 0.04721447 -0.088306874 -0.6323151 -0.13139385 -1.3478166 -1.1909806 0.30269027 0.46101296 -0.60330373 -1.1483648 +CGC 0.13220671 1.5672617 -0.16326624 -0.08483325 0.21083204 0.050445564 -0.25730684 -0.46972433 0.036347825 0.09642013 0.2768526 -0.8702749 +GTGC 0.29018885 0.6398233 -0.64330006 0.8520542 0.7282021 -0.36357856 -0.26297134 -0.9098236 -0.18686222 -0.2269487 1.0204757 -1.3028599 +AGGAA 0.87818176 0.663605 -0.05262052 -0.73941267 -0.7911714 0.39242142 -0.3871646 -0.92889845 -0.6714077 -2.0211346 -0.027548676 -0.37923685 +AAGGA 0.9245168 0.7387913 0.43906182 -0.6169066 -0.90304315 0.22696263 -0.31731027 -1.1846893 -0.776031 -1.9042 0.22883181 0.04300344 +GTTA 1.1302497 0.18661888 -0.71897507 0.036008533 0.16026819 -0.9641765 -0.43311352 0.6454332 -0.40480193 -1.3245244 0.65083987 -0.24396214 +ATTCT 1.4973398 0.42681697 -0.6514199 -0.4176512 0.007357707 -0.2936058 -1.3459885 -0.46488458 0.20985422 0.4059785 0.717689 0.5013902 +GCG -0.11588975 1.4089271 -0.20295012 0.19326054 0.032681588 0.23774727 -0.15733877 -0.6034833 -0.07495252 -0.22054555 0.68007344 -0.7737744 +AAATT 1.9212627 0.03249228 -0.7274216 -0.34579244 -0.316427 -0.7277502 -0.39615738 -1.3134162 -0.4232392 -0.6573466 -0.43241245 0.2318562 +TAGG 0.86740804 1.0109423 0.25020307 -0.043276917 -0.021261066 0.7937195 -0.22502585 0.33294308 0.030981846 -1.2838097 1.0860549 0.21513063 +CCTA 0.7257444 0.7908207 0.11933478 -0.191904 0.5326732 0.13103682 -1.7094095 -0.20404343 0.70032305 -0.43330163 -0.3396166 -0.4408324 +CTAG 0.51959693 0.5665155 0.42946398 -0.5549262 0.84231853 0.14578782 -1.2785814 -0.050902043 -0.2420468 -0.7527591 0.49765185 0.07011183 +AAACA 1.4260116 0.7232743 0.56231695 -0.33637246 -0.9801304 -0.9221293 -0.016084496 -0.8485519 -1.094569 -1.1637871 -0.6486582 -0.42038536 +TAGAA 1.6198596 0.5512769 0.034196347 -0.15307273 -0.05335195 0.75535476 -0.75009847 -0.59327936 -1.0290457 -1.5275673 0.23013005 0.6868256 +GTAG 0.7340099 0.062955216 -0.094943546 0.27799383 0.67687076 0.29081035 -0.7919362 -0.0871668 -0.81118363 -1.497839 1.238019 -0.25031576 +ACAAA 1.751396 0.74337363 1.0033098 -0.24146812 -0.7632085 -0.75208855 -0.06794235 -1.0090716 -0.7811982 -1.0187978 -0.6524612 -0.46155372 +TTTCC 0.94665384 0.72110164 -1.4844826 -0.3813167 -0.27980748 -1.4051946 -0.7418973 -0.9369276 0.32331216 0.32746732 0.42592525 -0.2264116 +TTTCA 1.722115 0.32297346 -0.7872852 -1.0915145 -0.581003 -1.0631465 0.18405816 -0.70357394 -0.42401266 0.14279474 1.0580468 -0.07167669 +GTCC 0.2909789 0.3304533 -0.6810992 -0.22694044 -0.89725405 -0.8201124 -1.1268022 -0.9003224 0.44064838 0.063343965 0.943375 -1.0498743 +GAAAT 1.0431432 -0.02691207 -0.523602 0.25681382 -0.76028484 0.1569258 -0.8452075 -1.1210314 -0.7841268 -0.9914553 -0.13069136 0.2532062 +AAGAA 1.200911 0.3891001 0.14448373 -0.73922175 -0.6123771 0.025283406 -0.5816952 -1.3313279 -0.95350814 -1.664031 -0.21085347 0.28891805 +CAAAT 1.6179712 -0.21746364 0.021840466 -0.10787832 -0.86632794 -0.15232562 -0.7686886 -0.9593945 -0.7945107 -0.25118434 -0.10954838 -0.603924 +AAAGG 0.71624506 0.61475617 0.39046374 -0.6389974 -0.7745664 0.026790507 -0.20770124 -1.1262225 -0.4150317 -2.0125284 0.4123265 -0.41905716 +CGAA 0.633581 0.78730005 0.15271407 -0.045045823 -1.1728263 0.3614181 -1.1273949 -1.062295 -0.33210662 -0.7386064 0.13054074 0.1329366 +ACAGA 1.0256453 1.0079687 0.9542977 -0.43285143 -0.4666907 0.34276897 -0.22159083 -0.6782222 -1.850593 -0.5176138 0.17099983 0.0684742 +TTTGA 0.66817683 0.81007594 -1.5748785 0.03866383 -0.21924464 -0.60045826 -0.43388292 -1.0652231 -0.8924636 -0.23225375 0.21044517 0.99779016 +ACACA 1.636735 1.7046473 1.0684055 0.17346705 -0.8631422 -0.6257755 0.48161831 -0.21075486 -1.6258284 -0.30855396 -0.15169641 -0.72927153 +GTTTT 0.95031613 0.36078492 -1.4476663 -0.24747066 -0.017288547 -1.380235 0.07286251 -0.5494329 -0.4667861 -0.66321254 1.1893662 0.112608194 +CTAC 1.0894623 1.1798269 0.9345998 -0.08982673 0.466131 -0.5803595 -1.1731238 0.40990797 -0.27525887 0.161705 -0.049606774 -0.16238555 +GAAAG 0.47498855 0.5642938 -0.22521228 -0.53366953 -0.43228668 0.20476368 -0.37246692 -1.5492399 -0.7311364 -1.8243376 0.34904847 -0.025219798 +TGTTT 0.8717512 0.34499344 -1.7253625 0.53336436 0.0060992977 -1.5424674 -0.5252049 -0.23953535 -0.49089193 -0.29457852 1.1445893 -0.109421246 +TTTAA 1.7096757 0.3116202 -0.88188726 -0.5141739 0.002141435 -1.0930622 -0.29611215 -0.53185356 -0.2973242 -1.3020349 -0.07806223 0.5615569 +ATATT 2.14845 0.28859618 -1.1188506 0.17490186 -0.40272236 0.06022975 -0.77683866 -0.11978345 -0.12441248 -0.38033482 0.079197146 0.50434613 +ATTTG 1.1019568 0.62092865 -1.6381075 0.5356518 -0.24401493 -0.30934417 -0.26480725 -0.69543755 -0.60537016 -0.06166804 0.30685997 0.41413474 +TTATT 2.0053272 0.73642737 -1.7015085 -0.03339124 -0.06408414 -0.6578188 -0.6423228 -0.20458642 0.25724247 -0.46282187 0.35580292 0.7991393 +AATAT 2.1789196 -0.005412259 -0.43899712 0.10627249 -0.50922906 0.47270507 -1.0311829 -0.4293539 -0.0666483 -0.7894122 -0.034099746 0.18587805 +TTAAA 1.7549009 0.25145537 -0.528797 -0.3964588 -0.021916203 -1.2472949 -0.42705357 -0.86557555 0.044017132 -1.4016066 -0.31786337 0.47627136 +TTCCT 0.9765703 1.213752 -1.4835768 -0.37045816 0.14340147 -1.2164426 -1.1665839 -0.75151354 0.6515514 0.3084453 0.6186585 0.20694016 +AATAA 2.439143 -0.09568777 0.09914389 0.0603126 -0.3903581 0.009433281 -0.9420958 -1.0287831 -0.5933507 -1.3984894 -0.5857833 -0.22847936 +AAACT 0.5718329 0.7203079 0.5226964 -0.42975843 0.11221575 -1.304328 -0.9194272 -0.68174624 -0.82498205 -0.95778793 -0.46021387 0.42067328 +ATGAA 0.8244163 0.31688994 -0.78236425 0.5022627 -0.79245275 0.12372586 -0.84193885 -1.2321991 -0.9179366 -1.1664692 -0.6072949 -0.113220304 +TGAAT 0.97491735 0.19239575 -1.1174362 0.7549996 -0.5139042 0.0914493 -0.8704432 -1.1508805 -0.8211857 -0.6257171 0.067675255 0.45989928 +AAAAC 1.3126774 0.66493016 0.5426096 -0.47980663 -0.51815087 -1.1706631 -0.7020041 -0.9349941 -0.8737158 -1.2511098 -1.0338475 -0.2750422 +CCTTT 0.6949927 1.2658411 -1.2949051 -0.6232164 0.22378196 -1.2740308 -0.8380573 -0.84579784 0.30795896 0.04424099 -0.1311727 0.2794867 +ATAGA 1.7236416 0.563359 -0.12251056 -0.4425808 -0.30241108 1.0191225 -1.1241874 -0.50537246 -1.2486095 -1.3615384 0.14628135 0.40272915 +GCCC -0.009816254 1.3076205 -0.22842693 0.060156252 0.08782961 0.29145408 -1.080327 -1.2914795 0.34347385 0.13354562 0.021470904 -1.2979673 +CAGAA 0.6813599 0.5267731 0.22453924 -0.88752526 -0.5625606 0.41531315 -0.56266785 -1.0206722 -1.5784887 -0.39131147 -0.1159221 -0.333339 +AGAGA 0.35633874 0.75058395 0.14404525 -0.68763757 -0.27165854 0.7027849 -0.7865426 -0.99189454 -2.0362027 -1.0228298 0.3027208 0.33720708 +TACC 1.155408 1.0834781 0.08810221 0.22216311 0.087618545 -0.35077822 -1.2026454 0.20322451 0.27390432 0.024308432 -0.78315175 -0.5918372 +TCTGT 0.7064028 0.32133824 -0.49541757 0.62679857 -0.004004672 -1.1340641 -1.5763173 0.064286105 -0.20170158 0.34150746 1.7311188 0.09779774 +TCCTT 1.0231507 1.0365335 -1.2205809 -0.2566686 0.1891876 -1.3203478 -1.0883067 -1.0957042 0.32100433 0.42346534 0.66777414 0.40565357 +TGGAG -0.09900881 0.9435657 -0.69742113 0.31915417 -0.5107426 0.32876223 -0.53876114 -0.4040467 -0.9492491 -1.3847145 1.1121267 -0.046017464 +GGTA 0.8579746 0.5129837 0.090137035 0.45083627 -0.12802634 0.13579008 -0.51522785 0.52941674 0.038637415 -1.6948047 1.0268289 -0.40907592 +TTCAA 1.5828853 0.095780656 -0.42077512 -1.0537481 -0.83194166 -0.90993494 -0.098482296 -1.1222774 -0.23558362 -0.24937591 0.5234942 0.08770659 +GGGC -0.32194394 1.8624928 -0.09642884 -0.10182686 -0.25832283 0.4550832 -0.15093656 -0.43047115 0.17040235 -0.53824043 1.247957 -0.8341651 +TTCTG 0.31290564 0.6873788 -1.003344 -0.045793146 -0.083888926 -0.643014 -1.121616 -0.25893065 0.069970936 0.19925177 1.2910051 0.44409972 +ATTTA 2.0734122 0.5084793 -1.3211403 -0.15621811 -0.08842932 -0.29452947 -0.39252436 -0.12643443 -0.46551704 -0.7907739 -0.27517727 0.5199164 +TTCAT 1.6576433 0.47759956 -1.0820854 -0.5715654 -1.0051832 -0.65067446 -0.31415725 -0.16486184 0.14534423 0.39424166 1.0419658 -0.11812351 +AGTTT 0.8098145 0.047145236 -0.9193692 -0.71381176 0.4159361 -0.9405323 0.03986224 -0.6150519 -0.9020067 -1.152409 1.1133239 0.04320239 +CTTTC 0.8210932 0.94030535 -0.72990197 -1.0209713 0.3736648 -1.2417798 -0.93899316 -0.6787194 -0.2174653 0.54205585 0.606913 0.1997041 +AATGT 1.1551273 -0.42812124 -0.42257693 1.0683489 -0.62488663 -0.65839666 -1.0259465 -0.6832192 -0.5643392 -0.9324964 0.28080633 -0.6961113 +GCTA 0.9736778 1.117243 0.22638941 0.40533742 1.3869401 0.39301413 -0.9742932 -0.14626743 0.14309639 -0.5217767 0.17549042 -0.07577674 +AATGA 0.9186193 0.28897774 -0.6678104 0.5412749 -0.8358954 0.22425993 -0.93451 -1.1952776 -1.1090059 -0.9868094 -0.5134854 -0.12055798 +AATAG 1.6328651 0.35513937 0.06699122 -0.25524843 -0.12152035 0.9404768 -0.8509417 -0.59456015 -0.87182033 -1.4448218 0.27883697 0.07276143 +GATC 0.5297721 0.55078393 -0.23695205 -0.39219734 -1.1680416 0.848005 -1.316722 -0.4059104 -0.4508242 0.3556489 0.6522466 0.5181325 +ATTTC 1.7321224 0.13174248 -0.9856382 -0.574965 -0.3211298 -0.5952825 -0.59871787 -0.74836475 -0.32227117 0.54651695 0.403106 0.10851291 +TGTGT 0.6116509 0.22964191 -1.0960782 1.4968802 0.055361267 -1.2572368 -0.97729224 -0.14758489 -0.49131137 -0.4603817 1.2500943 -0.75715536 +ATTCA 1.9438978 0.15531799 -0.6298588 -0.7759577 -0.747451 -0.2660597 -0.34457895 -0.5828536 -0.5325775 0.40199965 0.6489058 -0.225467 +TAAAT 2.2929032 -0.19721133 -0.34454894 0.20078164 -0.25438353 -0.48899978 -0.9068874 -0.6203304 -0.15992764 -0.9753824 -0.13898078 0.3196402 +TTCTA 1.743939 0.5965959 -0.42061365 -0.5174201 0.1448176 -0.8717845 -1.4678535 -0.263219 0.6725074 -0.039454702 0.71983635 0.7500559 +TAGC 1.2455397 0.941428 0.07253378 -0.34178868 1.2666774 0.4294624 -0.34653902 -0.2837046 -0.071403995 -0.48886392 0.3114333 -0.43489155 +GAATA 1.5383023 0.58589745 0.04440338 0.13395333 -0.33196315 0.8204752 -0.8727872 -0.54972136 -0.92139643 -1.3105323 0.0331437 0.19819197 +GACC -0.12681726 1.3253152 -0.107042916 0.05946081 -0.93617517 -0.041832414 -1.008992 -0.6006576 -0.53841996 -0.022646714 -0.63705164 -0.3653758 +ATTGA 0.93665653 0.5023512 -1.3434744 0.4911473 -0.25635737 0.050613683 -0.6274766 -1.2256062 -1.1101439 -0.6936306 -0.14477184 0.63647664 +AGAAG 0.5282847 0.6159664 0.30879405 -0.84586406 -0.10444341 0.6601593 -0.5176575 -1.1336082 -1.1972898 -1.5668184 0.46826172 0.065247886 +TGGAC 0.25655413 1.3312522 0.12162353 0.6584971 -1.0670751 -0.15500706 -0.8236724 -0.21728922 -0.9101743 -0.94906455 0.045316808 0.25063154 +TTGTT 0.85234195 0.67774755 -1.6899815 0.63596016 -0.08043357 -1.6957383 -0.3921262 -0.7100819 -0.07928214 -0.55576754 1.0524913 0.40483814 +AATTA 2.1376514 0.38331598 -0.45437562 -0.3156025 -0.21338037 -0.09728545 -0.43490493 -0.41213036 -0.112324536 -1.2658747 -0.30244184 0.37255123 +TGCAA 1.2238942 0.3154478 -0.40691826 0.5175923 0.4393386 0.0039556487 -0.02876193 -1.2594924 -0.7114995 -0.53274834 -0.108134486 -0.94372106 +GTGGA -0.0121815875 0.53644747 -0.32348207 0.565314 -0.81905675 0.067523085 -0.48514915 -0.635699 -0.684765 -1.4113697 0.9739286 -0.5542143 +AATTG 1.0538214 0.45356146 -0.9999592 0.5974768 -0.42658284 -0.26424444 -0.26752347 -1.3374367 -0.5792724 -0.9356145 0.19728331 0.5603 +TGTAA 1.2455828 -0.19082166 -0.30333737 0.93679994 0.09748869 -0.74210346 -0.9176328 -0.27852204 -0.52839077 -1.4023498 0.31876096 -0.529869 +GGTC 0.021265268 0.52933514 -0.22654553 -0.11218205 -1.1284851 -0.35605365 -0.81065077 -0.15402573 0.21393378 -0.21820411 1.6269023 -0.52435553 +CTTCT 0.51649433 1.0710094 -0.52702916 -0.806684 0.6086512 -1.1765984 -1.4196515 -0.37252992 -0.0265426 0.30243433 0.957982 0.54657847 +GAATT 1.1731889 0.47649965 -1.0782253 0.0010277223 -0.5448035 0.08859444 -0.30161762 -1.1849769 -0.7150439 -0.9686735 0.12968083 0.8058324 +TTCTC 0.7696566 0.6348862 -0.3940103 -0.8892004 -0.4003198 -1.0233551 -1.0781759 -0.48714644 0.1554746 0.43431273 1.2187879 0.48403916 +CTCCA 0.49454573 1.2259624 0.17968766 -0.7981102 -0.6431206 -0.9936731 -1.1592261 -0.70337826 -0.010396283 0.7818059 0.15470791 -0.60231197 +CACAC 1.1562141 1.8605846 0.7351263 -0.09522758 -0.54983306 -1.0218495 -0.0039315238 -0.10909325 -1.6802226 0.2780237 -0.14145502 -1.1533887 +TCACA 1.4888444 0.86007833 0.71933526 -0.46896693 -0.78750086 -0.91307545 0.07227594 -0.23143311 -0.8964661 0.5637415 0.67176646 -0.31310445 +CTTTG 0.12316291 1.189632 -1.1810459 0.17544867 0.39071193 -1.1905618 -0.5385352 -0.6830787 -0.52541536 0.02552624 0.45282748 0.48387715 +ATATA 2.5293424 0.17910728 -0.30599913 0.4898487 -0.23466535 0.5629665 -1.3482867 0.31848794 -0.31530336 -0.82497156 -0.13716084 -0.12154328 +AACAA 1.5630858 0.59997106 0.72564703 -0.3425619 -0.81252533 -0.8422145 -0.056900382 -1.0432405 -1.0124258 -1.2395208 -0.67305094 -0.50734377 +CAGAG 0.13327624 0.7471467 0.29049665 -0.86715895 -0.3573835 0.32371175 -0.47027194 -0.6212278 -1.9400065 -0.1572285 0.78128713 -0.5332991 +TGTGA 0.010601636 0.30667472 -1.045576 1.1800038 -0.43210328 -0.6739843 -1.0841876 -0.4800622 -1.0040582 -0.3679797 0.47643638 -0.033974532 +AGTGG -0.022603549 0.6596365 -0.35664025 0.38002023 -0.3769868 0.1376321 -0.36292917 -0.6657763 -0.89813954 -1.6712929 1.1832045 -0.94272894 +ACTTT 0.81545925 1.3996044 -0.28710213 -0.43374166 0.29729733 -1.8145471 0.055017777 -0.38969803 -0.7999582 -0.47132596 -0.01947203 0.72804314 +AATCA 1.770993 0.04867614 0.2761643 -0.68110555 -1.3135005 0.023638044 -0.5948001 -0.7617226 -0.6001609 -0.5673585 0.17273727 -0.24227856 +GAGAA 0.25268322 0.6872913 -0.23383611 -0.23584493 -0.4268374 0.44389316 -0.6921574 -1.1975857 -1.34716 -1.1412129 0.12882435 0.54156816 +GAGTG -0.13725957 0.48292688 -0.5620288 0.5888567 -0.1633426 0.057817884 -0.5898241 -0.923008 -1.4794798 -1.3419464 1.1610569 -0.54963744 +TCTCT 0.77777606 0.8022312 0.120979734 -0.45437345 -0.14595073 -0.91116506 -1.6387196 -0.29543966 0.17574756 0.49553546 1.477737 0.7945854 +TAATT 2.2709386 0.005108569 -0.8056263 0.26088187 0.17307839 -0.61786026 -0.59065104 -0.66105264 -0.15638517 -0.8232477 0.2210109 0.51123273 +ACATT 1.7508612 1.2193942 -0.37611753 0.2776048 -0.673234 -0.7509657 0.446612 -0.2052603 -0.59168255 0.0465626 -0.12856625 0.34648675 +CAAAG 0.74282014 0.25813064 0.5472579 -0.9141586 -0.13316168 -0.16263166 -0.20336723 -1.2412999 -0.86728454 -0.68614125 0.27276212 -0.7369601 +TATTC 1.9678594 0.7568183 -0.63926315 -0.3056328 -0.16529784 -0.49254298 -1.0734814 -0.1363158 0.5597847 0.2248274 0.6796439 0.39212567 +TATAT 2.404398 0.3796299 -0.7707968 0.8239519 -0.07854725 0.21998957 -1.2319028 0.44202983 0.08174917 -0.49479377 0.46368003 0.3766115 +GGACT 0.085970744 1.5402479 0.54898804 0.32098964 -0.86828834 -0.10909611 -0.9733125 -0.3155817 -0.87668943 -1.025135 0.51727974 0.60875565 +GAAAC 0.27337158 1.0439681 0.1973131 -0.2384948 -0.62708646 -0.57382005 -0.44873863 -0.83703417 -1.0704991 -1.1094561 -0.65217525 -0.035997074 +TCATT 1.9043335 0.7236821 -0.6248012 -0.17343634 -0.5625761 -0.78979176 -0.053469434 -0.62017506 0.075106844 0.55600244 0.95620984 0.1915237 +ATGCA 1.3489419 0.52767086 -0.41248384 0.83538026 -0.043374244 0.39882535 -0.07097404 -1.0946338 -0.54574215 -0.51392823 -0.21597615 -1.2240067 +GGAGT 0.044473533 0.5593946 -0.53933895 0.21466452 -0.47537202 0.15525784 -0.58322746 -0.5234321 -1.0134372 -1.3601716 1.5267068 -0.4027547 +TCTCA 0.8687739 0.4124851 0.51629806 -0.9573826 -0.7176392 -0.6835492 -0.79341465 -0.37659773 -0.2190418 0.41688776 1.5211189 0.0037102003 +AAAGT 0.9439868 -0.4149705 0.042124216 -0.28913662 -0.16198565 -0.8405581 -0.33846423 -1.0202346 -0.56559145 -1.636765 0.65424937 -0.6474991 +TGATT 1.0401903 0.7029957 -1.5970699 0.56276286 -0.4803847 -0.08121579 -0.7424118 -0.70284075 -0.5164603 0.13294107 0.58349425 0.83999586 +TTGAG -0.09688112 0.8827959 -1.3451483 -0.13295065 0.27882358 -0.10751507 -0.42446014 -1.0796772 -0.9913962 -0.64707553 0.7348669 0.7213489 +TAATG 1.3908577 0.1977206 -0.6468184 1.0521381 -0.28778106 -0.13760935 -0.86723757 -0.25548425 -0.37298822 -1.2294652 0.16680242 -0.055033997 +CTGTG -0.2584091 0.9034446 -0.5415859 1.1131928 0.3564394 -1.0203689 -1.2387811 -0.2234865 -0.5729692 -0.11448266 0.9953855 -0.63144624 +AGACA 0.8051097 1.1983097 0.7610817 -0.38194838 -0.47602704 0.18269163 -0.18194534 -0.48757616 -1.7366326 -0.69616383 -0.06868938 0.049174886 +TGAGA 0.025827708 0.6504001 -0.56868565 0.2302879 -0.19242693 0.39688635 -0.94955546 -0.84869957 -1.4495949 -0.47673818 0.39391807 0.7957212 +TGGGA -0.06492182 1.323793 -0.33738053 0.61302185 -0.98235893 0.54678446 -0.41520306 -0.25976902 -0.45810834 -1.2399331 0.6415065 0.28097793 +CTGCA 0.57250774 0.94962436 0.1841408 0.28647485 0.7298598 -0.18470742 -0.34763098 -0.5525496 -0.71099025 0.33155358 0.42006084 -0.99123585 +AATGC 1.1873287 0.3398181 -0.5096869 0.58102393 0.047201626 0.46703798 -0.44213605 -1.2467402 -0.3593636 -0.5530767 -0.22216332 -1.0538067 +TTTGG 0.32817456 1.4435735 -1.1901513 0.27697128 -0.4348304 -0.688826 0.5347841 -0.3434901 -0.17915253 -0.73515445 1.1412511 0.46870637 +TCGAA 0.6253429 0.74520874 0.0524665 -0.1580837 -1.1340761 0.42613888 -1.2168858 -0.87242824 -0.33820897 -0.59288263 0.2327853 0.29347956 +TTATA 2.263049 0.5163976 -0.92791635 0.14413442 0.059012383 -0.23962168 -0.7034755 0.29101133 -0.084108815 -0.8665695 0.10170618 0.5299593 +CACAG 0.65670013 1.0371513 0.69068575 -0.6401209 -0.5304048 -0.21560809 -0.028534828 -0.35571966 -1.5383204 0.09175561 0.51777685 -1.1658417 +GTTTC 0.647965 0.15669572 -1.2178394 -0.40951243 -0.2535404 -1.1822773 -0.64789855 -0.57735145 -0.12850188 -0.091914095 1.6488642 -0.11116241 +TTACA 1.9725968 1.1667911 -0.19992846 0.13937373 -0.33980164 -0.938858 0.36566836 0.37216458 -0.45444855 -0.23211624 0.15756229 0.04901406 +CTGGA -0.08278089 1.5131619 -0.0034221935 0.34482905 -0.6005248 0.03258988 -0.9155275 -0.09541787 -0.4644353 -0.98965305 0.44074008 0.55119187 +CTTCA 1.0082994 0.73706156 -0.09531226 -1.2778295 -0.1180987 -0.8472158 -0.39793858 -0.24852653 -0.5371957 0.52696884 0.7137721 -0.1396575 +GAATC 0.9420153 0.34459516 -0.16271374 -0.19514945 -1.1775101 0.5436769 -1.108382 -0.7955479 -0.5750796 -0.4780775 0.2652514 0.26821208 +CACAT 1.5027113 1.1566335 0.0033007548 0.35366964 -0.8237477 -0.45617688 -0.0010823018 0.2981247 -0.68823135 0.5565063 -0.057440467 -0.8235805 +ATAAT 2.4843776 -0.07545667 -0.3573405 0.31557885 -0.31377286 0.28053313 -1.0903283 -0.4081942 -0.43585342 -0.7802253 -0.089534774 0.066780515 +AAGAT 1.3439319 0.2772845 -0.2734452 -0.1275172 -0.52497977 0.8088309 -0.5949827 -0.9042676 -0.62708133 -0.8092133 0.11990824 0.68351424 +CTGAG -0.6267817 1.1611748 -0.4745019 -0.16982214 0.4002594 0.23226205 -1.2760367 -0.6611228 -1.1208199 -0.26744828 0.39246958 0.24993035 +CTCAA 0.67923814 0.23737216 0.8033351 -1.1587881 -0.586471 -0.76392305 -0.83758247 -0.72772205 -0.2383346 -0.37735602 0.63060117 -0.32272345 +AATTC 1.5812792 0.12948053 -0.5015121 -0.7773299 -0.61990196 -0.23664513 -0.6873282 -1.2241617 -0.07829893 -0.0007544153 0.22399674 0.2998428 +TGCAG 0.43677592 0.81046885 -0.38966003 0.2537992 0.7092654 0.2786239 -0.028296785 -0.68491423 -0.838883 -0.060436465 1.0580076 -1.2606833 +TTGCA 1.1681165 0.90547425 -0.9307128 0.4294592 0.53981066 -0.3433618 0.46470004 -1.0509068 -0.5163532 0.15774214 0.41802028 -0.53257334 +TCCAC 0.7107319 1.3687991 0.06753805 -0.26007068 -0.45765468 -1.2142826 -0.88745487 -0.69695926 -0.24029356 1.0075424 0.031907562 -0.48412955 +ATGTG 0.73624325 0.09783459 -0.89336026 1.4112673 -0.5200974 -0.50143695 -0.7167006 -0.33179495 -0.35427046 -0.57329655 0.5187759 -0.7569647 +GAAGA 0.4636049 0.56023175 -0.035263743 -0.26085883 -0.48293203 0.53524727 -0.6409788 -1.1690897 -1.4013371 -1.3378412 0.1922317 0.51551825 +AACAT 1.7258397 0.80942655 0.08559985 0.118932985 -0.8673613 -0.41013688 0.05900281 -0.33433136 -0.57373947 -0.43928045 -0.6702954 -0.28606945 +AAGAG 0.4915275 0.38560924 0.18637282 -0.84382385 -0.26205596 0.44378373 -0.49916235 -1.3249224 -1.2630737 -1.3044496 0.4303096 -0.036404155 +CTCTG -0.3588726 1.1536139 -0.3586966 0.056084916 0.10403491 -0.70456207 -1.5680299 -0.009879565 -0.23223616 0.28618053 1.04194 0.032793257 +CTATT 1.7686502 0.86073095 -0.7354573 -0.14052065 0.45984623 -0.67891794 -1.3766884 -0.10345521 0.13395813 0.22831698 0.3537962 0.6212491 +ATCTT 1.3183669 0.53154445 -0.4909454 -0.52110165 -0.5894166 -0.5517014 -1.1121391 0.05598373 0.15697683 -0.02683575 0.4124704 0.82451147 +AGATA 1.64766 0.43154353 0.2069542 -0.077378556 -0.1334973 1.095166 -0.8852318 -0.35033524 -1.031061 -0.8571193 0.07547804 0.34527683 +TCTTC 1.1529846 0.66971195 -0.16859561 -0.89958584 -0.2562572 -1.0039392 -1.049791 -0.59264535 0.24491043 0.6092233 1.1735357 0.44518578 +GTAC 0.9402635 0.58027434 0.47600642 0.7172938 0.0982167 -1.0248823 -0.4230737 0.5692796 -0.48772597 -0.8303795 0.42737216 -0.6430042 +ATTAA 1.9549956 0.32378462 -0.714998 -0.27959532 -0.30440852 -0.40045244 -0.5558408 -0.39494902 -0.1800076 -1.1890374 -0.55896735 0.19760405 +CCAAA 1.0408366 0.4772764 0.39421862 -0.63636166 -0.5925183 -0.516709 -0.8286773 -1.5701365 0.041195355 -0.23788254 -0.75411296 -1.0843335 +TCAAT 2.0137858 -0.041192595 -0.20636192 -0.20674254 -0.6352966 -0.36177865 -0.43845585 -1.1124154 -0.110655874 0.18756148 0.6591791 -0.13527624 +TAATA 2.3871279 0.086447455 0.014510429 0.3099099 -0.00820188 0.07191204 -1.0597557 -0.092260405 -0.33973435 -0.92964727 0.02002951 0.2200962 +GATTT 0.88392484 0.7543959 -1.2171693 -0.04986924 -0.3643228 0.1390918 -0.2145334 -0.58813983 -0.5915827 -0.6006457 0.546899 1.170571 +CTCAG 0.04143188 0.8153527 0.23617633 -1.4845979 -0.21903908 -0.06734231 -1.0040942 -0.6428083 -0.51393926 0.33491004 1.2220005 -0.486038 +CTTTA 1.1314787 1.0922744 -0.77225596 -0.5897716 0.7908603 -1.0777414 -0.84101397 0.013988547 0.07198731 -0.53049415 -0.09182982 0.3892349 +TCCTG -0.21018061 1.3184551 -0.66184443 0.39572397 -0.0696712 -0.6557755 -1.3749942 -0.60791594 0.13307214 0.5905888 1.046759 -0.21765518 +AACAG 0.97566456 0.7041456 0.69424075 -0.32813653 -0.2477912 0.008034425 -0.10940512 -0.53502524 -1.4694948 -1.0840513 -0.029068552 -0.62342507 +CTCCT 0.06716125 1.5894774 -0.47025526 -0.44220307 0.33258623 -0.68156946 -1.6433175 -0.30940714 0.32065105 0.47996944 0.5070281 -0.06410261 +TGCAT 1.3873665 0.9450655 -1.1039088 0.8408871 0.26449937 0.05724481 -0.05536842 -0.3948477 -0.34680936 0.5118559 0.625769 -0.8195984 +TCCCA 0.92101306 0.49536094 -0.22532915 -0.17279635 -0.6867424 -0.20116939 -1.0085471 -1.2105507 0.18369092 0.8400781 0.028491165 -0.80719763 +CATCT 1.2779416 0.83568096 -0.133238 -0.43818527 -0.70986325 -0.37285176 -1.185508 0.19425395 -0.19084391 1.0109679 0.6761929 -0.06721137 +ATTAT 2.3208756 0.35591117 -1.2631795 0.26524258 -0.31192318 0.01742181 -0.9075422 0.20976269 -0.053677727 -0.49041846 -0.1282346 0.32944238 +CGAAT 0.74246246 0.762665 -0.02518934 0.16698909 -1.1414758 0.49431926 -1.2316045 -0.9361653 -0.3492756 -0.6835073 0.16357115 0.13996692 +TTGTA 1.3267499 0.16997522 -0.74164116 0.8108272 0.4843699 -0.94369763 -0.6189617 -0.2278635 -0.10078216 -0.99833125 0.64666355 0.24569497 +TACAT 2.1370637 1.050507 -0.38909635 0.58954024 -0.43360475 -0.6773483 -0.0875214 0.47930804 -0.3450661 0.002102229 0.023981154 -0.14876813 +TATGT 1.6221967 0.15744747 -0.8181944 1.2312546 -0.05892515 -0.56118846 -0.8859805 0.5142025 -0.1943647 -0.6722287 0.69991106 -0.11316497 +ATCAA 1.6340312 -0.00200525 0.22371477 -0.6337996 -1.2173975 -0.10541862 -0.6966361 -0.7238331 -0.41389626 -0.4924002 0.042728882 -0.40191555 +CTGTT 0.5261197 0.6883172 -0.942516 0.3901785 0.2427127 -1.389315 -0.85294354 0.073397614 -0.2026537 0.09924641 1.2196223 -0.04195099 +GTAAT 1.4991508 -0.22228475 -0.37322208 0.8960778 -0.10028989 -0.31020716 -0.8654255 -0.46018255 -0.22073239 -1.1937486 0.5407771 -0.43008274 +CTCTT 0.45626813 1.1162074 -0.4662662 -0.7969631 0.3116835 -1.2469361 -1.201925 -0.3347228 0.1183406 0.1727641 0.8540485 0.62978315 +AATCT 1.1646036 -0.0058990815 0.2653757 -0.38789636 -0.4129768 -0.11021565 -1.4289114 -0.46993545 -0.179399 -0.105126984 0.41722783 0.5434098 +CACTG 0.06321904 1.446795 0.10136876 0.47428283 0.08946596 -1.12547 -0.62653005 0.17141326 -1.1255169 0.20158502 0.30622005 -0.9642157 +CAATT 1.8124937 0.18637021 -0.64469236 -0.2934288 -0.49211738 -0.7329265 -0.27503595 -1.0157189 -0.71611077 0.23670875 -0.008830828 -0.16708046 +TATAA 2.4116366 0.36159894 -0.2749746 0.37110585 0.050809577 -0.0424943 -0.9522085 -0.14696588 -0.11111294 -1.0472031 -0.32184798 0.28687844 +CCACT 0.46678877 1.6248798 -0.019663913 -0.24679212 -0.28471482 -1.2140707 -0.8908687 -0.28404793 -0.096396714 0.53382593 -0.02536339 -0.4927366 +AAGTG 0.49889866 -0.1455574 -0.31519482 0.45346123 0.13817658 -0.32506964 -0.42912462 -1.0349514 -0.74368113 -1.5740232 0.6579888 -0.8552904 +AAATC 1.3821123 -0.2583277 0.20665199 -0.8533351 -1.045325 -0.22566919 -1.3268028 -1.0598363 -0.28752565 -0.34726095 -0.0549564 -0.037230197 +TTAAT 1.884301 0.082845576 -0.9668082 0.30967 -0.07636662 -0.5599303 -0.52335876 -0.51693577 -0.01575998 -0.8551761 0.3838622 0.47632924 +TTGAT 1.1271987 0.6388411 -1.5995843 0.76718247 -0.3961616 -0.28073356 -0.90079355 -0.71350056 -0.3791938 -0.037606124 0.6263387 0.9755933 +TTCG 0.6539968 0.9182931 -0.8084312 -0.5903551 -0.5442371 -0.17899545 -0.68878746 -0.7031863 0.061633732 0.18964134 0.7277458 0.32149222 +AACTT 0.87716407 0.97610146 -0.0636344 -0.66801476 0.14511319 -1.3898593 -0.38739175 -0.6294453 -0.79071283 -0.72035086 -0.41153395 0.80055416 +CAGCA 1.0235956 1.0614767 0.4354447 -0.58030945 0.3998969 0.117034845 0.06011568 -0.60790086 -1.2507005 0.20417568 0.38219354 -1.4693385 +TGGTG 0.06266004 0.7982987 -0.97790027 1.1680894 -0.5014425 -0.27263966 -0.32791308 -0.13951412 -0.3662324 -1.1143513 1.2158496 -0.37841412 +TCAGA 0.6789954 0.31357202 0.36068264 -0.86293316 -0.65362746 0.49716496 -0.5552222 -1.1063169 -0.7910994 0.26343417 1.1229365 0.19139288 +TCTAT 1.7697473 0.59594065 -0.419702 0.039112363 -0.031388495 -0.45527303 -1.5472565 -0.15030064 0.49553335 0.23389547 0.90777165 0.52775013 +GAGAG -0.0950209 1.0305907 -0.1013492 -0.22237372 -0.2559112 0.86243 -0.7806176 -1.0669073 -1.955247 -1.1544663 0.82671356 0.30568603 +TTGGA 0.42259932 0.9950549 -0.91002476 0.3024991 -0.8122111 -0.16612867 0.078099705 -0.6001498 -0.43803984 -1.0034041 0.6996243 0.7078461 +ATATC 1.757059 0.11727239 -0.041349184 -0.23681067 -0.5610085 0.39852962 -1.4659289 0.050390303 0.020113753 -0.039207358 0.16960664 0.034897134 +TGCTT 0.4464314 1.3298849 -1.1515102 0.16712284 1.2031219 -0.6882617 -0.5062409 -0.43427908 -0.15541652 -0.06909633 0.6785788 0.050932184 +CAATG 1.0480319 0.31512052 -0.3643618 0.76768976 -0.71435976 0.071690686 -0.36955214 -0.84040785 -0.8300045 -0.26277316 -0.15840589 -1.0463035 +TTCAC 1.101289 1.0651414 0.03784381 -0.6835691 -0.576507 -1.4969674 -0.069215536 -0.083490096 -0.5171662 0.48622566 0.47516176 -0.22547482 +GCATT 1.3003292 1.0049497 -0.8925621 0.41902232 0.31647688 -0.019601537 0.4285257 -0.83989435 -0.088203445 0.2079134 0.65690166 -0.39898962 +AGATT 1.1761768 0.5089744 -0.75342274 -0.5140805 -0.24722293 0.45329204 -0.39185333 -0.74618214 -0.5478192 -0.556646 0.5015262 1.0669135 +CTGGG -0.45532218 1.9609722 -0.10248779 0.44230175 -0.5058144 0.019545374 -0.83782566 0.1643532 0.120034985 -0.40298605 1.1653206 -0.26751563 +CAGTG 0.066414386 0.30927423 -0.3006086 0.29822093 -0.07181383 -0.339665 -0.1794907 -0.6963717 -1.1795456 -0.38275903 1.1795485 -1.6320637 +ACTGG -0.09988042 1.6350665 0.23148699 0.53523624 -0.75570804 -0.44045612 -0.55447644 0.21468107 -0.46914917 -1.0564202 0.38045046 0.07850242 +ATGTA 1.6134158 0.048894405 -0.2907788 1.0517031 -0.2822172 -0.37248388 -1.1184034 -0.07244623 -0.2908389 -1.307203 0.09730531 -0.51392585 +ATACA 2.1526625 0.6746308 0.5540279 0.24798 -0.54118806 0.034628835 -0.28515613 0.15146503 -0.9072099 -0.43173254 -0.2950335 -0.5410436 +GACTC 0.016392866 1.3132749 0.3977939 -0.27526402 -1.0891821 -0.1687698 -1.2174393 -0.5218205 -0.7898382 -0.31842119 0.3781405 0.47985905 +ATGGT 0.80238515 0.433348 -0.6179588 0.82473636 -0.91981524 0.15480173 -0.5902649 0.12105775 0.36461124 -0.9850146 1.0638555 -0.33225566 +TATTA 2.245628 0.7977575 -0.6937969 0.33252195 0.11174395 -0.2571342 -0.7023623 0.30365166 0.12562896 -0.9638458 -0.01208729 0.70196664 +CATCA 1.4629815 0.60002434 0.09504841 -0.5624796 -1.148701 0.04836817 -0.28523687 -0.13379216 -0.73211604 0.64359874 0.43811002 -0.88161165 +ACATA 1.9428856 1.0250174 0.5556281 0.36125565 -0.5664025 0.08026476 -0.055629537 0.32796296 -0.5808203 -0.43556887 -0.24078022 -0.19489422 +GTGTT 0.528827 0.19533291 -1.0851488 0.62938017 -0.045928158 -1.4411598 -0.4401206 -0.3333694 -0.3667389 -0.83366805 1.3921311 -0.5185981 +GGAGA -0.002377756 1.1740057 -0.090813056 -0.0898022 -0.7537422 0.871097 -0.53103626 -0.6561766 -1.2106613 -1.2954981 0.7658705 0.40671772 +GATTC 1.082331 0.6759589 -0.9433558 -0.37349737 -0.694734 0.10760964 -0.77576685 -0.8145179 -0.15178593 0.31894568 0.74825996 0.72468346 +AGAGT 0.24306263 -0.00036798592 -0.21841538 -0.6759502 0.12456343 -0.0023201716 -0.6628772 -0.72557837 -1.3927164 -1.0577955 1.0706905 -0.13949747 +TCCTC 0.6433148 1.1028037 -0.21534653 -0.66202456 -0.43046218 -0.6092198 -1.6445203 -0.8584923 0.4171045 1.105921 0.8176925 -0.24970958 +CACAA 1.2751135 0.8393164 0.720395 -0.3441461 -0.8247144 -0.65281063 -0.03977754 -0.674429 -0.9902415 -0.066662356 -0.3733459 -0.96652997 +AGAGG -0.035025187 0.98008853 0.19213136 -0.55154335 -0.47872213 0.9867466 -0.46938577 -0.95145327 -1.2630435 -1.1948243 1.0554463 -0.34388852 +TACAA 2.0143905 0.5957548 0.7237146 0.087878205 -0.24714625 -0.54931366 -0.33147112 -0.25458783 -0.6517935 -0.55488825 -0.46659228 -0.1745119 +TATCT 1.6006494 0.42839924 -0.0888511 0.036205977 -0.038279172 -0.21658446 -1.4406292 0.39614925 0.21086662 0.086812206 0.81047636 0.65111303 +CAGTT 0.6912184 0.10982107 -0.7472786 -0.62680185 0.19243774 -0.85176426 0.08042522 -0.47724617 -1.1306555 -0.24154373 1.0546706 -0.7246686 +CTCG -0.1347319 1.3308417 0.12410972 -0.16628258 -0.8213786 0.064692825 -1.2666526 -0.44909906 -0.30277124 -0.48141003 0.5603653 0.08994165 +ATCG 0.748201 0.70783913 -0.16097055 -0.10130301 -1.0519751 0.62193704 -1.1159769 -0.6769495 -0.19472297 -0.5226347 0.3036919 -0.110879585 +CACCA 0.9797131 1.3657538 0.2638861 -0.15177971 -0.7554335 -0.58223 -0.48415858 -0.37739837 -0.5137028 0.5018504 -0.41077745 -1.5863209 +TGCCT 0.15669556 1.2558736 -0.8508944 0.34016186 0.64887726 -0.2800665 -1.3355932 -0.32392952 0.32440084 0.37545022 0.36564034 -0.77989453 +TCCAG 0.45024124 0.41061395 -0.18884191 -0.5606521 -0.4419822 -0.24934773 -0.63441503 -1.2988256 -0.32743114 0.5988128 0.9628833 -0.5137103 +GTGTG 0.19670619 0.29245564 -0.72177625 1.5033965 -0.042291407 -0.8429356 -0.7096994 -0.64010113 -0.5456212 -0.9931927 1.3955021 -0.976614 +CAGGA 0.24019046 0.8843082 0.19570382 -0.86809534 -0.89818025 0.58994627 -0.26040113 -0.51446223 -0.93164474 -0.3908781 0.7114948 -0.51194847 +TAAAG 1.28685 0.22654766 0.20902237 -0.5674836 0.2697538 -0.013746018 -0.44342142 -0.55938786 -0.3053669 -1.5816919 0.32394415 0.26757812 +AGTGT 0.34842536 -0.1443442 -0.42199856 0.5175403 0.09781471 -0.77691287 -0.6040309 -0.59236705 -0.6534247 -1.1775463 1.0993803 -0.8932708 +GCAAA 1.0394583 0.3513317 0.29776287 0.016732678 0.42498443 -0.086886786 0.020727456 -1.5101943 -0.55485576 -0.79402363 0.016675182 -0.8531454 +TGTCT 0.46176302 0.4149959 -0.5392827 0.47233564 -0.113176756 -1.0095185 -1.3719915 0.18663535 -0.050029878 -0.010145954 1.6678846 -0.025318472 +ATGTT 1.1533324 -0.122798026 -1.1354618 0.61547714 -0.41053417 -0.70727015 -0.48484996 -0.38601062 -0.08576568 -0.5441676 0.6779277 -0.25204584 +CACTC 0.58312064 1.3894191 0.48508346 -0.7613783 -0.379446 -1.1845729 -0.9663376 -0.13822947 -0.5904319 0.7821746 0.36715087 -0.69018507 +CCACA 0.95419115 1.2796988 0.39661157 -0.2189103 -0.68845516 -0.53489405 -0.239528 -0.4596277 -0.5144993 0.4291592 -0.2977658 -1.3656765 +TTCAG 0.616384 0.42858052 -0.3908214 -1.3553272 -0.34241888 -0.25236773 0.09998652 -0.811536 -0.47919464 -0.02490135 1.5032977 -0.19983375 +CCCAG 0.012071107 1.1864196 0.30825174 -0.43018427 -0.42477015 0.41893804 -0.9447328 -1.3456006 -0.07140055 0.13754527 0.22314617 -1.454375 +ACATG 1.1647298 1.0786301 0.0042523546 1.1884507 -0.88464326 -0.23534434 0.12275929 0.006607862 -0.5020702 -0.4699024 -0.36902446 -0.81532 +TGAAG 0.1559775 0.19716841 -0.5986264 0.14048493 -0.23218508 0.14614104 -0.60653114 -1.2747357 -0.777579 -1.1131287 0.32968503 0.058755998 +CTGAA -0.22440174 0.6264282 -0.44059896 -0.0229867 0.021398604 -0.2379717 -1.2332574 -1.1039809 -0.5935804 -0.58271277 -0.37082073 0.22659703 +TCATC 1.7999604 0.55169797 -0.058543425 -0.59802026 -1.0665171 -0.30938888 -0.85439163 -0.3089001 0.25589648 0.881727 1.0903101 -0.10921228 +AGGGA 0.19218023 0.99212956 0.23002064 -0.36836788 -0.7750392 0.72828215 -0.39480323 -0.6218903 -0.5354235 -1.5312275 0.7016162 -0.10382093 +TCTGA -0.008437359 0.5599888 -0.5473561 0.0070321644 -0.32282606 -0.06305528 -1.4702032 -0.6123969 -0.62509173 0.20081502 0.7053081 0.9585045 +ATCTG 0.57687736 0.38841107 -0.21792674 0.12273358 -0.3898891 0.22190435 -1.4668405 0.20191506 0.020813676 0.12270302 0.72231823 -0.12432392 +TGTCA 0.70263517 0.07326105 -0.27564722 0.42409715 -0.81526786 -0.86082596 -0.528182 0.087529406 -0.79924077 0.11417404 1.2536246 -0.9272604 +GTGAA 0.11547973 0.08661086 -0.6011361 0.6618904 -0.4935534 -0.2740846 -0.6288164 -1.0337675 -0.86331576 -1.4497422 0.3937314 -0.2800239 +GAACA 0.7729466 1.1317672 0.3183946 0.011875533 -0.8232788 -0.050350443 0.076513514 -0.6143163 -1.4881867 -1.0570937 -0.3727431 -0.22199082 +CACTT 0.5959302 1.4337239 -0.042209495 -0.55330795 0.22704339 -1.5027243 0.00041757748 -0.14480491 -0.8372576 0.091112785 0.114886746 -0.015029674 +CTTCC 0.4195593 1.2737743 -0.76265204 -0.7536117 0.28695416 -1.0266145 -1.2178241 -0.8686799 0.17475508 0.8015093 0.2543506 -0.046242356 +CCAGG 0.04507649 1.4221358 0.43679258 -0.38084152 -1.0021752 0.56884116 -0.6721932 -0.84765226 0.19888383 -0.22783391 0.5864598 -1.2207346 +CTGCT 0.060255043 1.7134876 -0.39539897 0.33538738 0.9246071 -0.5944183 -1.1840711 -0.14752759 -0.13887586 0.45240477 0.8998262 -0.25178605 +TGAGG -0.44319543 1.236886 -0.67206895 0.3670842 -0.10163029 0.7413477 -0.6847664 -0.5803481 -0.8301806 -0.5826639 1.0145282 -0.06447841 +TCCAA 1.0079725 0.2667635 0.0688214 -0.5330951 -0.5430992 -0.761607 -0.840679 -1.5324873 0.060072828 0.29589072 -0.09711824 -0.48670027 +TGGAT 0.79291475 0.96592927 -1.0123527 0.61622804 -0.80952036 0.70485324 -0.6420543 -0.095813096 -0.074582785 -0.5172025 0.6849934 0.41664714 +ATCAT 1.6992875 0.28594333 -0.48845407 -0.27013573 -1.3223909 0.18326859 -0.79469794 -0.05307297 0.18117154 0.19428922 0.3703867 -0.3367838 +CCTCC 0.2536711 1.6533604 -0.32470468 -0.7137713 -0.29430202 -0.50048494 -1.5741539 -1.1705248 0.616893 0.8310583 0.20291086 -0.86028516 +CCTCA 0.5270931 0.99962217 0.33244112 -1.1213471 -0.5111668 -0.47780418 -1.0062029 -0.51620185 -0.07477911 0.7143075 0.52517176 -0.8920664 +AACAC 0.8492692 1.138628 0.7140627 -0.21804988 -0.61479944 -1.0036818 -0.11344535 -0.49128723 -0.92254555 -0.6255958 -0.58913016 -0.603853 +AAGTT 0.82809776 -0.16511928 -0.5196202 -0.7644712 0.045480203 -0.8328223 -0.09043561 -1.0433922 -0.45895648 -1.32023 0.89300656 -0.043061763 +TTTAG 1.082684 0.69882804 -1.0487263 -0.67269236 0.77093935 -0.24067776 -0.24104528 -0.09386511 -0.32881477 -1.04952 0.64313614 0.4352794 +GTGAG -0.46936828 0.53339654 -0.621089 0.40043542 0.035883036 0.18126482 -0.7204817 -0.99728024 -1.2773973 -0.86639076 0.99354345 -0.5230688 +TGATG 0.43259475 0.48291108 -1.180162 1.3581501 -0.3758442 0.1571992 -0.9992623 -0.4677562 -0.6331334 -0.30841345 0.7415168 0.15670179 +GATAT 1.329074 0.36922103 -0.6168191 0.543741 -0.4931983 0.8041831 -0.9905929 -0.0069738035 -0.3375017 -0.46716973 0.37097535 0.5678733 +CAGAT 1.1202644 0.5689846 -0.009788307 -0.098584846 -0.48655394 0.9244767 -0.595691 -0.27791467 -1.2706269 0.022764802 0.30328023 0.062112954 +GCCTG -0.51053995 1.584487 -0.46426815 0.6723841 0.4226455 0.40372702 -1.168559 -0.8196016 -0.21407036 -0.0040043006 0.8074309 -0.9533175 +GAAGG 0.27261472 1.0017697 0.12837666 -0.34346554 -0.7718452 0.62877554 -0.35415277 -0.83970535 -0.63928306 -1.8092757 0.81405103 0.04201074 +CATGT 1.0401295 0.25507745 -0.61070466 0.98651695 -0.8002097 -0.7485969 -0.43582436 0.1764233 -0.59799147 0.14401586 0.4890356 -1.1736109 +GGGAA 0.09298732 0.92917657 0.0073520206 0.12595315 -1.1389289 0.2295557 -0.31426916 -0.7484403 -0.39427003 -1.8309716 0.41994756 -0.3062274 +TCCCT 0.44482785 1.242116 -0.7775567 -0.18355311 0.075867705 -0.6961048 -1.4192508 -1.0421902 0.5169448 0.6928354 0.48894107 -0.06765337 +CATTA 1.9210223 0.88196224 -0.6107581 -0.46265808 -0.4951466 -0.45981556 -0.27780202 0.1483787 -0.08641648 -0.06890234 -0.25178373 -0.24455985 +TATTG 1.4110659 0.6405078 -1.0253462 1.0163386 0.10840795 -0.11889251 -0.44086975 -0.2577779 -0.21275152 -0.65511334 0.42859536 0.7536822 +TTGTG 0.37207934 0.47259364 -1.2818257 0.9903306 0.06416704 -0.93832266 -0.5119191 -0.6654486 -0.33797136 -0.49388853 0.82185465 0.045369796 +AAGCA 1.1184009 0.6946616 0.21329087 -0.5565815 0.37598032 0.25858822 0.15330221 -1.1889986 -0.76458895 -0.7323167 -0.07219551 -0.80579376 +TTATG 1.241681 0.54049677 -1.3498284 0.86063296 -0.10344773 -0.29477373 -0.5848806 0.2683844 -0.030596213 -0.71916884 0.31045714 0.20471354 +GGAAG 0.16377106 0.8957632 0.11442456 -0.13206138 -0.6907091 0.5697171 -0.4108974 -1.0430721 -0.47920412 -1.6207355 0.8024966 -0.05428694 +TCACT 0.9604959 1.1163945 0.5619907 -0.4141395 -0.08649557 -1.4042263 -0.5018676 0.13559783 -0.49598193 0.6659111 1.1269914 -0.07974834 +CCTGT 0.04585914 0.8803256 -0.7756213 0.6496546 0.022233373 -1.2251986 -1.5020667 -0.1791019 0.19500674 0.31349263 0.73932487 -0.9914499 +AGCAG 0.4898615 0.83664346 0.21143618 -0.6289951 0.5170125 0.662304 -0.028532175 -1.0093414 -1.2446624 -0.7819658 0.7061964 -1.2751305 +CATTG 0.96255296 1.0445275 -1.3188008 0.6480872 -0.35854086 -0.3702421 0.1245707 -0.5722178 -0.5006526 0.26735598 0.26215184 -0.32010946 +CAACA 1.2323527 0.9435662 0.498837 -0.4899344 -0.76384544 -0.6629098 -0.011518882 -0.49014422 -0.90163845 -0.08074467 -0.35352615 -1.0306082 +GGTGG -0.15247567 1.2175667 -0.4798656 0.7365083 -0.76377845 0.29219338 -0.17861 -0.26565456 -0.119434915 -1.4834917 1.4751455 -0.7493173 +ACTCA 0.6675145 0.96445966 1.0141251 -0.8670361 -0.65855145 -0.869468 -0.7308646 -0.27788013 -0.8219193 -0.012872927 0.26993242 0.021922115 +GCTTT 0.5425464 1.1994886 -1.0141973 -0.35758144 1.0527022 -0.50393075 -0.13455328 -0.59165287 -0.19294 -0.30882645 0.8527093 0.31962246 +TCTGC 0.4826188 1.1294175 -0.3091959 0.108013436 0.7077918 -0.3104075 -0.9827974 -0.32159027 -0.111085035 0.79817194 1.2533364 -0.3764881 +GGGAG -0.32025445 1.3319203 -0.16258028 0.012897217 -0.5560358 0.8382535 -0.45211735 -0.5663139 -0.8726127 -1.3343041 1.1730323 0.032456916 +GAGAT 0.4694221 0.6878427 -0.4982897 0.06689769 -0.5046416 0.98342365 -0.8257645 -0.6892573 -1.0492477 -0.29729775 0.5762438 0.7527194 +CCCTT 0.5729656 1.4386784 -0.89609605 -0.3551902 0.17685512 -0.98136646 -1.0273887 -0.8316984 0.6144456 0.45153996 -0.15407622 -0.093404055 +CATAT 1.9599588 0.5637142 -0.47384354 0.3219019 -0.39850166 0.4122903 -0.62688285 0.43373966 -0.2658859 0.25705197 0.15001631 -0.51783067 +TGCTG -0.08906638 1.4095534 -0.8019068 0.8153583 0.78263766 -0.10020692 -0.826257 -0.227511 -0.4328298 -0.05175437 1.0160958 -0.36584175 +TGTAT 1.4766792 0.19205956 -0.8604664 1.1695604 0.064624354 -0.600362 -1.0225013 0.49595958 -0.17113724 -0.54444957 0.6834713 -0.1637233 +ACAAT 1.7896183 0.52177817 0.3391138 0.43489468 -0.6259529 -0.3466198 -0.053022407 -0.53560406 -0.7348246 -0.15188211 -0.3858769 -0.35856783 +AGGAG -0.025518142 0.8490121 0.005915151 -0.66138667 -0.5439325 0.85846823 -0.51431984 -0.83545595 -1.2631751 -1.201115 0.87738043 -0.24600945 +ATTGT 1.2721199 0.027849684 -1.110307 0.8844904 -0.2164512 -0.65677613 -0.57448643 -0.33729792 -0.30510247 -0.33833668 0.6561827 0.047543913 +ACTCT 0.3884905 1.0690653 0.63215774 -0.4973036 0.022946423 -1.2744938 -1.1534826 0.05191368 -0.3937431 0.065285675 0.48199058 0.5053351 +GCAAT 1.4319893 0.44661182 -0.17608663 0.62386 0.12433408 0.41402566 -0.103234164 -1.2349007 -0.33763707 -0.451521 0.17646468 -0.78205824 +CTCCC 0.22252284 1.6825945 -0.2458006 -0.53605336 -0.26778227 -0.4898393 -1.6228938 -0.796954 0.4586093 0.83835644 0.15861137 -0.5493982 +TGGCA 0.50165397 1.2899823 -0.33399066 0.5947679 -0.38886443 0.5336191 0.20079443 -0.24729446 -0.25170302 -0.5950809 0.5908398 -1.1870483 +AACTG 0.10645817 0.93579626 0.33639482 0.41195467 0.26063767 -1.0262922 -0.75169003 -0.24216418 -0.8886427 -0.83535606 -0.3249523 -0.17006324 +TTTGC 0.89611655 1.1422207 -1.2758632 0.2192482 0.9260965 -0.6189991 0.14802805 -0.97312033 -0.24008495 0.09575092 0.41672045 -0.16022445 +GGATT 0.88421124 1.0170392 -1.0005103 0.31927842 -0.61236227 0.43231943 -0.23621267 -0.54708123 -0.07197061 -0.8955045 0.8116569 0.7986597 +TGTGG -0.13202526 0.8635488 -0.6446786 1.1191387 -0.5427286 -0.3821213 -0.4802758 -0.009105879 -0.1992796 -1.0272765 1.345236 -0.53263396 +AACG 0.30036172 1.0096767 0.36801624 0.009199322 -0.731385 -0.18197997 -0.3589327 -0.6631237 -0.5488611 -1.0547944 -0.11619406 -0.43639573 +ACTCC 0.44967163 1.68382 0.2831981 -0.5012842 -0.36808679 -1.0934131 -1.2088588 -0.44953504 -0.26419905 0.7241558 -0.124916084 -0.28383186 +AAGGG 0.40441602 0.97472703 0.33631855 -0.25842384 -0.9036884 0.48617244 -0.07818513 -0.79916275 -0.29217806 -1.7470331 0.8920894 -0.38137043 +CCTGA -0.38581014 1.273475 -0.6317854 0.07182792 -0.27401718 0.1060104 -1.5193975 -0.8683201 -0.5952142 0.022070346 -0.52757776 -0.089645565 +TGAGC -0.2015185 0.995092 -0.63866454 0.20479989 0.6473176 0.36127794 -0.6357189 -1.1239774 -0.9675385 -0.006771887 0.55919176 -0.39212725 +AGTAA 1.348263 -0.15353455 0.121667795 -0.2072876 0.34571052 -0.41254 -0.6320908 -0.20105007 -0.79480314 -1.7565813 0.47662738 -0.4306392 +AGTGA -0.023846097 0.14686362 -0.59864235 0.37957454 -0.10412206 -0.046703998 -0.7682968 -0.9817019 -1.5066267 -1.2365588 0.45438427 -0.45851862 +CACG 0.13555056 1.3444878 0.29436395 -0.07744756 -0.5643781 -0.30333105 -0.16745694 -0.291668 -0.73258567 0.064789385 0.2857449 -0.9718908 +AAAGC 0.8661212 0.63922626 0.27762803 -0.88672954 0.51054245 0.041808244 -0.28341475 -1.3199376 -0.3239202 -1.027261 -0.16582744 -0.6597781 +TTGCT 0.6361773 1.2392238 -0.9719962 0.27862987 1.2441869 -0.5160294 -0.514622 -0.65137583 -0.07069982 -0.060151435 0.93701994 0.48735145 +GAGTT 0.29831415 0.18075536 -0.8008711 -0.41199967 -0.047011722 -0.30367258 -0.16961187 -0.652922 -1.0344884 -0.9469639 1.1702232 0.13517319 +GAGGC -0.44779658 1.6738292 -0.17248608 -0.048327662 0.121681765 1.0314307 -0.64849895 -0.7916323 -0.8646649 -0.5882199 0.89836466 -0.43685034 +CTAAA 1.4020215 0.22087505 0.61307216 -0.47716767 0.3739161 -0.596797 -1.3594466 -0.530431 -0.150891 -0.8031694 -0.43806976 0.09962361 +ACTTC 0.64233845 1.0893835 0.24567342 -0.786709 -0.12983978 -1.3636993 -0.45649955 -0.52399385 -0.49430078 0.20264538 0.21642329 0.37643942 +CCCCA 0.5394099 1.3140373 0.1986135 -0.18312812 -0.792579 -0.16600183 -1.312235 -1.2638869 0.021201292 0.453257 -0.6264893 -1.2579904 +TGACA 0.48510635 0.9888257 -0.041752055 0.8007886 -0.7292113 -0.32269117 -0.16337997 -0.31321624 -1.4664009 0.031450663 0.09562535 -0.042524025 +CCACC 0.5251795 1.8614631 0.28717554 -0.18622284 -0.5069267 -0.59647435 -1.1837114 -0.81493986 0.08434929 0.61993974 -0.50008297 -1.4515022 +CCTGG -0.5304803 1.7560791 -0.41489363 0.25915268 -0.5681466 -0.046410896 -1.0159922 -0.04501124 0.41975978 -0.21772967 0.6596223 -0.72305304 +GGCTG -0.3267448 1.7139417 -0.5015339 0.540139 0.38750988 0.43519938 -0.6462495 -0.10666266 -0.28486514 -0.6440094 1.374594 -0.35836166 +ACTGC 0.26056236 1.508184 0.27329215 0.45785087 0.6907495 -0.7614684 -0.4696962 -0.28556243 -0.87456495 0.10685254 -0.013824985 -0.7079604 +AGCCT -0.11347309 1.2856941 -0.14922248 -0.80975306 0.5501686 0.30274466 -1.1086946 -0.92599905 0.03614006 -0.13592991 0.26457483 -0.71974427 +TCTCC 0.5929671 0.9945772 -0.22555004 -0.64809006 -0.44381493 -0.79068434 -1.419703 -0.7647221 0.45995107 0.92051476 0.86786413 -0.22688963 +CCTTC 0.5125681 1.2427412 -0.7044532 -0.86428887 0.07998667 -1.0547974 -1.2957574 -0.7485151 0.5190843 0.6831365 0.6076254 -0.15991911 +TATCA 1.9882915 0.16258676 0.09819324 -0.48387527 -0.6261354 0.15605214 -0.6572455 0.23489897 -0.23619887 0.0029472057 0.73465776 -0.087350115 +CAAAC 1.1786714 0.6073643 0.7947403 -0.56909615 -0.5669311 -0.9239786 -0.61259484 -0.7849842 -1.0042592 -0.33535007 -0.6163926 -0.6938441 +ACCAT 1.327818 0.9639192 -0.17841153 0.40560344 -0.8466103 -0.33967367 -0.6212641 -0.112687275 -0.19303168 0.37221456 -0.6606639 -0.6149859 +ATATG 1.4275726 0.28507522 -0.7413525 1.0479794 -0.42852202 0.69136053 -1.1033317 0.2722405 -0.27659473 -0.72680223 0.11130059 -0.2595583 +CTCAC 0.3462781 1.4325095 0.5432745 -0.7827994 -0.42188904 -0.8419852 -0.6678039 0.1714747 -0.61567396 0.6192753 0.6337936 -0.5053497 +GTGGG -0.2597571 0.98001474 -0.26323837 0.6941684 -0.7721272 0.047163326 -0.3232302 -0.42182705 -0.2875603 -1.5107591 1.5101026 -0.62902 +TGTTG 0.41336206 0.33858126 -1.4956285 1.0465778 0.027284466 -0.8734094 -0.4471013 -0.46756667 -0.646491 -0.6526337 1.0428114 -0.012113012 +GTTCT 0.4774589 0.3080133 -0.623943 -0.32853043 0.14128625 -0.96499515 -1.0164952 -0.34893298 0.033805314 -0.12609966 1.796295 0.15221703 +GAGGA -0.01591969 1.1052139 -0.0019731103 -0.09381859 -0.6158961 1.0252908 -0.6402216 -0.83814555 -1.1029797 -1.2185308 0.5530266 0.19695337 +AAACC 0.6714064 0.8538157 0.4342487 -0.291525 -0.75926137 -0.3667442 -1.0599585 -1.013198 -0.35043862 -0.7538863 -1.2290514 -0.71425825 +ATCCA 1.2522665 0.44365424 -0.24692003 -0.38349432 -1.1062818 0.0041244724 -1.0764335 -0.61634696 0.10439265 0.3146285 -0.21947518 -0.6581739 +CTGCC 0.055916782 1.5612384 -0.5029931 0.26752344 0.5935571 -0.3157577 -1.303053 -0.5873476 0.19488259 0.5768286 0.6182684 -1.0112355 +ATGCT 0.6861443 0.8524896 -0.7066977 0.5885987 0.64946735 0.4855394 -0.7450648 -0.4204929 -0.005704548 0.011766967 0.2739528 -0.13654177 +AGATG 0.5022236 0.3477834 -0.37961444 0.5297537 -0.5720348 0.8669623 -0.645954 -0.7684108 -0.8749649 -0.71652114 0.31179166 -0.061915122 +GTAAA 1.3763908 -0.3377819 0.0721022 0.4380342 -0.09397857 -0.5968851 -0.6860553 -0.36111164 -0.29534534 -1.5549413 0.34200007 -0.46764013 +GGAGG -0.3486847 1.5257624 -0.09426295 0.038963407 -0.76157063 0.92526764 -0.51953536 -0.58365536 -0.6110985 -1.24733 1.361133 -0.37948337 +AACTA 1.2071756 0.7246166 0.7317113 -0.2614709 0.25952885 -0.58246195 -1.1125133 -0.14598764 -0.5466592 -1.1464205 -0.616166 0.2526115 +TGAAC 0.09825605 0.9113565 -0.3984691 0.3990661 -0.39326292 -0.77656746 -0.53474426 -0.72527164 -1.0993733 -0.58722603 -0.6018351 0.2382392 +ATCTC 1.1077051 0.5719599 0.08295734 -0.7731273 -0.79516923 -0.41896343 -1.2993556 -0.22766542 0.202805 0.6057731 0.6314089 -0.03944091 +TTACT 1.484079 1.1330745 -0.19816273 0.27094206 0.31205174 -1.4423664 -0.6065408 0.48088154 -0.29938948 -0.44192174 0.13737427 0.60197777 +TCAGG 0.37462175 0.8877802 0.5753242 -0.9682674 -0.72550267 0.22568509 -0.24714011 -0.51481783 -0.30206585 -0.04005164 1.5894147 -0.20044433 +CAGGC 0.04364032 1.586049 0.36416277 -0.37886855 -0.05175094 0.5869422 -0.4512185 -0.5256408 -0.5079072 -0.033822224 0.8231541 -1.4267961 +AAGTA 1.4408833 -0.12599108 0.2068743 -0.044429373 0.25871342 -0.2545657 -0.44636726 -0.3546497 -0.5887412 -1.788178 0.47558302 -0.52643293 +CTCAT 1.1932294 0.80807745 -0.33594742 -0.5027138 -0.54564726 -0.5094873 -0.85606015 0.1435064 0.2378671 0.7488337 0.6324761 -0.3446898 +TCTAA 1.5341914 0.18728714 0.48838788 -0.47184566 0.23114704 -0.5922223 -1.3354878 -0.4530867 0.3063556 -0.3637323 0.46307224 0.53913844 +AGGCC -0.37924623 1.3366567 -0.0119016655 -0.5081159 -0.051354915 0.6253723 -0.7302125 -0.8119587 -0.15965275 -0.43317688 0.5432129 -1.0471623 +GCAGT 0.38771805 0.31401202 -0.22662282 0.22959197 0.61329246 -0.203753 0.08155663 -0.7678709 -0.77092785 -0.7894034 1.3082443 -1.2340428 +ACACT 0.6363023 1.4501762 0.7106986 0.085731715 -0.16015562 -1.3501146 -0.36842635 0.04444573 -0.9714638 -0.05123703 -0.18216452 -0.27631104 +TTCCC 0.71074337 0.9535978 -0.97503155 -0.33726287 -0.38145483 -0.87040555 -0.96350956 -0.9693195 0.6963675 0.53924096 0.27697477 -0.30429843 +AGCAA 1.0451698 0.52337354 0.2872244 -0.61193466 0.43322077 0.25025442 -0.06518154 -1.2268482 -0.94114375 -0.7690011 -0.05142336 -0.9531052 +TCTGG -0.13727176 1.2277033 -0.33385208 0.0542169 -0.57347995 -0.054848656 -0.9707971 -0.0019180303 0.3330248 -0.044049606 1.5404972 0.44292095 +ACTGT 0.2205639 0.68320435 0.1167477 0.8727779 -0.07141151 -1.4302299 -0.82372576 0.16884507 -0.92280805 -0.50525683 0.4084781 -0.28444278 +AACTC 0.5446893 0.74060273 0.60241556 -0.7159582 -0.3847718 -1.04188 -1.0568563 -0.5361522 -0.5671796 -0.08590614 -0.24438219 0.17968546 +TGTTC 0.715363 0.15954563 -1.0537375 0.15764807 -0.11237574 -1.0102991 -0.72876805 -0.18355425 -0.26706508 0.22553079 1.4635099 -0.33475763 +CGAG -0.026487853 0.80290264 -0.22962637 -0.5280853 -0.44734198 0.15693715 -0.89334553 -0.92756045 -0.56123185 -0.042616636 0.7814933 -0.20209375 +CATAA 2.00893 0.29793918 0.08365665 -0.12523179 -0.24401976 -0.17566958 -0.43523058 -0.16520338 -0.4761256 -0.29468778 -0.42583275 -0.68904245 +TGCCA 0.62550944 0.7123386 -0.6275319 0.4440847 0.13043235 -0.066576004 -0.43146738 -0.7471317 -0.18396004 0.27858016 0.14238271 -1.2589782 +TGTAG 0.60424334 0.3097279 -0.43801114 0.6937727 0.48763233 -0.07558847 -0.7581163 0.29529205 -0.6572469 -1.1948285 1.0183702 -0.1933929 +GACAG 0.1458547 1.092064 0.525656 -0.23994517 -0.47046298 0.36622983 -0.31396484 -0.49299368 -1.6784408 -0.6933562 0.45072347 -0.3030652 +TAACA 1.9177545 0.46697623 0.32178533 0.23833427 -0.21384542 -0.6426802 -0.1182046 -0.05744245 -1.0192059 -1.0377043 -0.2383456 -0.22888759 +AGGCA 0.4690948 1.1982005 0.24402182 -0.19441658 -0.079378076 0.91263485 -0.041621447 -0.5636162 -0.61990845 -0.7853277 0.4856883 -1.2515323 +CCTGC -0.027134443 1.8980315 -0.659402 0.17932007 0.6109617 -0.3446571 -1.1661693 -0.5406573 0.12740344 0.5507503 0.5391189 -1.028428 +GGAAC 0.23235957 1.3455501 0.47962412 0.09100885 -0.86940515 -0.08664587 -0.33709702 -0.4587287 -0.75560194 -1.2102689 -0.1388213 -0.32604587 +CTAGA 0.6004692 0.8497198 0.3887057 -0.606441 0.35883725 0.49561775 -1.3670297 -0.2383276 -0.6430538 -0.5797062 -0.03029264 0.6000595 +GAAGT 0.331992 -0.048994876 -0.33672082 -0.09710217 -0.13411754 -0.13361558 -0.35399267 -0.9151429 -0.931016 -1.4252411 0.83464503 -0.22535358 +TACTT 1.329546 1.1460252 -0.2410232 0.19111335 0.44240952 -1.3226653 -0.55769086 0.3105972 -0.44876134 -0.35124224 0.0654789 0.7350187 +GACAT 0.9413604 1.0569234 -0.21245529 0.5106927 -0.9006634 0.06940461 0.075530544 -0.016389359 -0.98926127 -0.08604604 0.09993394 0.079455905 +GCTGG -0.2380096 1.6615855 -0.48000973 0.5535417 0.18451929 0.42815787 -0.4370456 -0.17014503 0.032525294 -0.65730286 1.2478273 -0.33792594 +GATTG 0.5197554 1.0312691 -1.1033494 0.71579784 -0.24797167 0.22906926 -0.30858707 -0.734638 -0.53262615 -0.66850716 0.6275708 0.71017426 +GACTG -0.17940326 1.4786273 0.125352 0.80397755 -0.38942933 -0.24721599 -0.8837451 -0.1099411 -1.0245045 -0.9393263 0.34801915 0.043666482 +AATCC 1.255351 0.24460948 -0.19020745 -0.36196488 -0.6567828 0.08810122 -1.3057507 -1.1140983 0.13227649 0.2892389 -0.26193464 -0.4427526 +ATTAC 1.7604103 0.96581525 -0.4594608 0.22642152 -0.28672564 -0.64091647 -0.45473778 0.30940336 -0.35447156 -0.031464092 -0.40078065 -0.07948801 +CTTGA -0.13127421 1.0446227 -0.75114316 -0.04604834 0.098876275 -0.4269791 -0.83388853 -0.6841503 -0.9669856 -0.35134056 0.16529831 0.83767664 +GTTTA 1.2026143 0.2196086 -0.90192956 0.08291187 0.16067979 -0.7342832 -0.15094173 0.035553496 -0.31905934 -1.243255 0.8029113 0.14518024 +GTTGA 0.17440042 0.25923246 -1.1000036 0.48679936 -0.31544888 -0.43137455 -0.6287547 -0.9261518 -1.0232023 -0.82012427 0.7409859 0.51737183 +TCATG 1.1004391 0.43246117 -0.5267683 0.6114798 -0.95252967 0.03282536 -0.26381734 -0.28715694 0.07297733 0.40935335 0.9912298 -0.37943092 +ACTGA 0.09646394 1.1255174 0.16244566 0.34184718 -0.19398814 -0.4599695 -0.9811604 -0.24498731 -1.309223 -0.4130638 -0.44397813 0.42659953 +TAGTT 1.3687484 -0.0366128 -0.8749807 -0.21250513 0.48730686 -0.54589844 -0.32450923 -0.09403662 -0.35920048 -0.9885621 1.2114744 0.17698084 +GGTTT 0.54899853 0.6315499 -1.0145013 -0.13853881 -0.37413412 -0.6749793 0.15931548 -0.14639634 -0.07971465 -0.8951158 1.5771011 0.17323968 +ACCTG -0.08086759 1.410081 0.0067612804 0.69053215 -0.15896954 -0.38446456 -1.0540663 -0.17758825 -0.30953854 -0.039118078 -0.35264394 -0.5335355 +GCACA 0.82178664 1.3848895 0.590946 0.2443307 0.04174393 -0.14698389 0.27617252 -0.45998156 -1.0528284 -0.12551738 0.18432325 -1.2952812 +CAGCC 0.22052799 1.249977 -0.0072195167 -0.7856506 0.10580338 0.22857729 -0.99372834 -1.0324014 -0.3831496 0.6383733 0.39946607 -1.4870616 +TGTGC 0.17992425 0.8280057 -1.0026656 1.1499656 0.510966 -0.695945 -0.56155676 -0.45264038 -0.44368562 -0.08470964 0.9493561 -1.0337292 +AGCTG -0.085773684 1.0787679 -0.27737987 0.111999065 0.9657488 0.40562662 -0.70516336 -0.6644639 -0.7356009 -0.5756611 0.7033616 -0.29089123 +GAGAC -0.1686766 1.487643 0.23700275 0.037025232 -0.68341553 0.1888224 -0.5037173 -0.5300083 -1.5501564 -0.4273168 0.102592416 0.4015088 +CAAGT 0.557306 -0.15904424 0.1816814 -0.31114522 -0.083649315 -0.7065871 -0.4723145 -0.86751765 -0.70338196 -0.6011083 0.66569394 -1.1696103 +GATGG 0.3602557 0.93987924 -0.5542544 0.7968476 -0.96380395 0.8296425 -0.5904528 -0.29999238 -0.5086105 -1.0923603 0.83010864 -0.005497147 +AACCT 0.33985308 1.0256175 0.06788065 -0.089432925 0.061161697 -0.7198248 -1.0144447 -0.5256677 -0.16170879 -0.43390098 -0.8709779 -0.2600561 +TGGCT 0.03128249 1.6207157 -0.6208239 0.19172145 0.3923026 -0.114585765 -0.42606616 0.04364949 0.062830836 -0.18689077 1.1456438 0.02886627 +ACGG 0.18529129 1.306953 0.2587556 0.1963886 -0.85522205 0.10793757 -0.20987743 -0.40262526 -0.54836386 -0.8764054 0.19688144 -0.44147503 +ATACT 1.5156685 0.8761333 0.33375373 0.2856637 0.042618185 -0.4996607 -0.97168094 0.45113948 -0.49940744 -0.2946212 -0.2855359 0.33760238 +ATTGG 0.69060826 0.92437935 -1.1009576 0.40041533 -0.5796173 0.2394367 -0.19071585 -0.396906 -0.22413051 -0.7627538 0.6641828 0.45814943 +TGTTA 1.1234862 0.24683325 -0.9798173 0.6235735 0.13523772 -1.1260731 -0.517781 0.34554872 -0.48574477 -1.029426 0.5489794 -0.18109758 +AGTCA 0.784922 -0.11817065 0.24517609 -0.5815962 -0.4913889 -0.37356597 -0.3177132 -0.2945337 -0.798988 -0.57504696 1.184101 -0.8425581 +AGCTT 0.42596215 1.0449228 -0.4082661 -0.90937316 1.1342212 -0.15651728 -0.22474258 -0.7706167 -0.48698315 -0.48770297 0.68163556 0.2742909 +CCTCT 0.2911748 1.4813447 -0.21745405 -0.7528023 0.07056816 -0.7701429 -1.729934 -0.3571026 0.4531883 0.6995919 0.5300859 -0.07401537 +GCCTC -0.13509038 1.5172014 -0.0127825355 -0.5589621 -0.029131964 0.10211971 -1.1250982 -1.0112047 0.2261779 0.49182102 0.7840121 -0.7397272 +CCAAT 1.3127815 0.5179099 -0.30477577 -0.102049425 -0.61815035 -0.10217853 -0.8024207 -1.0792574 0.2877619 0.26397765 -0.40200737 -0.6683957 +ACCTT 0.60492086 1.2958134 -0.39273736 -0.20558095 0.11379147 -1.1170659 -0.7057098 -0.34917188 -0.10312926 0.14475313 -0.47249815 0.16047737 +CTCTC 0.48907974 1.2871101 0.15746595 -1.0049698 -0.07128657 -0.9028915 -1.6339151 -0.3240088 0.13947697 0.7381944 0.960289 0.09024455 +GTGAT 0.33200642 0.23084188 -1.0296141 0.90958714 -0.5020053 0.15053079 -0.8926974 -0.47816598 -0.42547777 -0.4403161 0.9319559 0.07187915 +TATGA 1.1301923 0.5122459 -0.7963256 0.82614976 -0.43120193 0.3054784 -1.0967618 -0.097782254 -0.5937761 -0.6726042 -0.16207622 0.74028 +CATGA 0.5616861 0.7005652 -0.66093284 0.38984317 -0.848273 0.3162206 -0.70179707 -0.38598016 -0.9333257 0.19863285 -0.36736253 -0.46952686 +CCATG 0.5502114 0.98061264 -0.59639853 0.8465643 -0.80794615 0.035292577 -0.5840048 -0.45947313 0.20529264 0.2993094 -0.06514283 -1.1389648 +GGTGA -0.25878507 0.770114 -0.6506785 0.8466747 -0.8556515 0.16272494 -0.54782885 -0.6103684 -0.870741 -1.1066345 0.7759665 -0.2117469 +TATGG 1.0281186 0.8168291 -0.5452965 0.8478451 -0.36196676 0.47421226 -0.597704 0.42283687 0.29154545 -0.98316985 0.6561253 0.015731568 +ATCAC 1.1122671 0.85562223 0.39488634 -0.4842248 -1.0372654 -0.14566703 -0.54523534 0.17153592 -0.66478914 0.34111026 0.1073985 -0.4368502 +TAGAG 0.72171587 0.4744905 -0.04541398 -0.32349172 0.52732027 0.6923847 -0.6788435 -0.30053166 -1.0318696 -1.1532693 0.8289641 0.4476644 +TGGGG -0.28548455 1.3521669 -0.562276 0.5442745 -0.74690974 -0.0016222878 -0.37525624 -0.15317981 0.0016831693 -1.0735207 1.4327325 -0.28647134 +AGCAT 1.348521 0.8635166 -0.3857291 -0.253376 0.45506135 0.63820744 0.20447032 -0.47812882 -0.34535918 -0.3205593 0.1649596 -0.5516914 +GCAGA 0.33994997 1.0149102 0.458073 -0.26397482 0.17558362 0.8516001 -0.21127915 -1.1627277 -0.9570034 -0.46602196 0.5204228 -0.62737226 +GTCCA 0.39289254 0.47193375 -0.53155303 -0.16273865 -0.92428464 -0.7373342 -0.7033164 -0.6667918 0.054212697 0.119163744 0.8300356 -0.93944836 +CTGGT -0.0455717 1.1055893 -0.41854307 0.46609387 -0.23812371 -0.6394428 -0.6710783 0.27651092 0.17026973 -0.39593124 1.3419626 -0.30123326 +TGCTC 0.15210886 1.1815488 -0.35718876 0.07539445 0.49625435 -0.29081574 -0.92675316 -0.30868235 -0.03391251 0.5294195 1.00883 -0.36419 +GTTTG 0.28013456 0.54058796 -1.1830077 0.50574213 0.06317211 -0.76379645 -0.10943841 -0.48029065 -0.59945136 -0.80133337 1.2837324 0.07269219 +AACCA 0.91096556 0.8504056 0.35044473 -0.046387106 -0.60421133 -0.35678798 -0.7592801 -0.6834471 -0.46615553 -0.43702522 -1.0038351 -1.0211993 +GCTCC -0.103095606 1.4542023 -0.32678264 -0.23284999 0.28194448 -0.089943975 -1.067349 -0.85770434 0.18043885 0.5956944 0.6996899 -0.6047975 +CAATA 1.930593 0.17048241 0.18724932 0.082133844 -0.24383314 0.25524363 -0.6703894 -0.27202833 -0.61788553 -0.28263193 -0.21778971 -0.4850724 +ATGAT 1.095567 0.35674974 -0.9652158 0.8832198 -0.8029441 0.6914969 -1.1200701 -0.5717518 -0.2850226 -0.44609421 -0.089639336 0.24750258 +AGGCT -0.31379774 1.5329311 -0.18864512 -0.42112178 0.48226136 0.47401485 -0.6017855 -0.39059204 -0.41499624 -0.830958 1.0770396 -0.17931737 +GGACA 0.6073283 1.3492162 0.4826223 0.35594863 -0.9348059 0.053065334 0.16797909 -0.22293545 -1.076041 -0.64000314 0.24388699 -0.12758 +CCTTG -0.014361036 1.2266104 -1.2275804 0.1516442 0.18300012 -0.9990995 -0.7056327 -0.8850729 0.074902594 0.077157676 0.37144527 0.0811055 +ATGAG 0.42191768 0.4036555 -0.78646684 0.51229984 -0.39340782 0.8111779 -0.7399518 -0.7195104 -0.9538754 -0.84642375 0.00567776 -0.037579622 +AGGTG -0.09437727 0.5487175 -0.0705147 0.39656878 -0.43046477 0.26084116 -0.36975253 -0.3264918 -0.7421717 -1.2872123 1.2081046 -0.80782795 +GTATT 1.5594176 0.06717801 -1.0818496 0.64446384 -0.058520876 -0.47153452 -0.6997075 0.02408935 0.07095336 -0.8287631 0.83181894 0.28063732 +ATGTC 0.85088205 0.06661913 -0.36560765 0.7053526 -0.8467311 -0.6081685 -0.9901531 -0.070422255 -0.07407156 0.1398676 0.89823073 -0.58767116 +CGGA 0.05703751 1.2146215 0.04085902 -0.09499962 -0.854254 0.34050995 -0.39339784 -0.6367814 -0.4731197 -0.86067176 0.26582128 -0.25718024 +GGCAT 0.8966822 1.1801772 -0.5029313 0.44976932 -0.40165505 0.8176912 0.10948611 -0.16240008 -0.024666676 -0.23694031 0.68386704 -0.76688075 +GAGCT -0.24285679 1.2950015 -0.42821208 -0.37976602 0.5557009 0.39378127 -0.7092927 -0.7471955 -0.77283114 -0.30081543 0.89660054 0.30951613 +TGAGT 0.08324384 0.013483098 -0.9505223 0.1340219 0.12458975 -0.17117625 -0.89668494 -0.62485427 -1.0437473 -0.6417818 1.0608506 0.045087047 +GTAGA 0.78058016 0.180251 -0.15845929 0.23276906 0.14975548 0.40940216 -0.8389185 -0.10945679 -0.9005826 -1.1545341 0.73195386 0.22441514 +GGCCT -0.30045047 1.3995166 -0.24625556 -0.16445613 0.11974302 0.36873132 -0.68986624 -0.53907907 0.2329864 -0.17140572 0.8361426 -0.7035272 +CTGTA 0.85458374 0.46873963 0.10992993 0.898908 0.47991014 -0.6996617 -1.2806519 0.5725557 -0.1462755 -0.44886598 0.6157336 -0.32720786 +GTTCA 0.79659647 -0.009613584 -0.34254298 -0.41889513 -0.5661679 -0.87657005 -0.08416093 -0.3725998 -0.44690868 -0.10358899 1.3521311 -0.6367158 +TTTAC 1.6456082 1.25533 -0.56065077 -0.07184725 0.11406428 -1.30832 -0.22546332 0.31829762 -0.46702605 -0.18745084 -0.2211009 0.42055175 +TAAAC 1.5176841 0.49111983 0.38919196 -0.1203957 -0.14871988 -0.94564843 -0.58987874 -0.033056036 -0.61532557 -1.1273712 -0.56101054 -0.05973318 +GCTCA 0.4230391 0.98477745 0.38829097 -0.49210015 0.04299493 -0.25725713 -0.39257374 -0.31611025 -0.20311743 0.39174712 1.1676377 -0.59020984 +CGTT 0.44219923 0.7133215 -0.8377558 -0.16663986 -0.15201764 -0.85011154 -0.3899386 -0.3954297 -0.024198012 0.029624846 0.7798064 -0.23022753 +TCATA 1.8878627 0.22029224 0.3099202 -0.13617405 -0.274891 -0.018073462 -0.501083 0.060859114 -0.10863135 0.16373073 0.8586741 -0.14649415 +GAGCA 0.48725295 0.89244443 -0.2253235 -0.16287892 0.28345883 0.7328658 0.04328052 -1.0502193 -1.2572163 -0.44691223 0.4453431 -0.620538 +TGTCC 0.13146321 0.54356444 -0.82404685 0.4951854 -0.5691331 -0.87802935 -1.1824913 -0.5394287 0.2062331 0.30153295 0.886642 -0.9523887 +TAAGA 1.0495285 0.272821 0.26487064 -0.31960213 0.009955512 0.14722328 -0.7353909 -0.56244385 -0.76559234 -1.3670316 0.042511217 0.54367846 +CAGCT 0.41045618 1.4447622 0.30892006 -0.7303267 0.86084145 0.05482675 -0.658464 -0.48674905 -0.60241026 0.46751067 0.64866555 -0.66202396 +TCTTA 1.3492461 0.586843 -0.35220268 -0.47320855 0.25331572 -0.85083514 -0.77141505 -0.15619764 0.059379227 -0.21041718 0.5522309 0.681639 +TGATA 1.1974444 0.23968394 -0.5366327 0.8092387 -0.024795733 0.49526975 -1.0691248 -0.2328481 -0.68074137 -0.5320446 0.12174652 0.4890999 +TGGTT 0.5236475 0.67387 -1.1888762 0.3459536 -0.32884985 -0.78004134 -0.30407757 0.16592802 0.07967444 -0.84839803 1.4420733 0.1358912 +CAACT 0.78889453 0.9008196 0.5757095 -0.47209382 -0.020967595 -1.2203963 -0.5499972 -0.36138445 -0.94099414 -0.042487998 -0.21939264 -0.070784606 +ACCCA 0.6279558 1.1275895 0.5490139 0.04459636 -0.77447695 -0.1315695 -0.8593295 -0.8606097 -0.25596863 0.025792183 -0.774542 -1.2843014 +GTCTC 0.035409328 0.41218153 0.026558785 -0.35112706 -0.6342288 -0.81729853 -1.2768056 -0.2949114 0.12013409 0.05196215 1.5409724 -0.41506323 +TGGGT 0.10694949 1.0517396 -0.8429408 0.6715429 -0.5935085 -0.29690915 -0.29410172 0.017127456 0.23113337 -0.8676655 1.6038787 -0.24703743 +CAAGG 0.39254513 0.5162588 0.5759889 -0.8289278 -0.8184501 0.100732066 -0.09871219 -0.82481956 -0.39176536 -0.9204885 0.76626045 -0.8763031 +TTGGT 0.36838925 0.764162 -1.2139239 0.69795305 -0.31815153 -0.7128086 -0.053196564 -0.34043074 -0.0091636805 -0.84521824 1.5294936 0.13151428 +ACTAA 1.1724536 0.6587617 0.870079 -0.10748974 0.2460599 -0.69202274 -1.0259901 -0.32227948 -0.523709 -1.1091003 -0.18799452 0.35569543 +GTGTA 0.85971475 0.063324995 -0.44915655 1.1420586 0.11393744 -0.54654443 -0.73791635 0.031984445 -0.37629685 -1.2331845 1.0605285 -0.5449316 +CGTG -0.2551834 1.018133 -0.19037604 0.5686976 -0.30384833 -0.23694026 -0.5116139 -0.42090148 -0.21659467 -0.3109011 0.84389824 -0.95370525 +TTAGT 1.2283889 0.19682515 -0.6872241 -0.2764821 0.61004514 -0.7203254 -0.4455399 -0.032995064 -0.26688707 -1.1553878 0.87656814 0.008609806 +CATGG 0.65506047 1.0215029 -0.4686675 0.5179556 -1.237117 0.39211023 -0.16567126 0.24144706 -0.06562348 -0.25584438 0.5254417 -0.76891595 +CCATC 1.210096 0.93803 -0.021454649 -0.5334623 -0.986999 -0.2845913 -1.2568833 -0.55093807 0.5104247 0.80951846 0.19217114 -0.6209805 +CAGGG -0.1488811 1.2434913 0.28933895 -0.28064805 -0.91067284 0.41070136 -0.25954977 -0.50300896 -0.50718915 -0.4912338 0.96781135 -1.0716324 +GACAA 0.77096504 0.7942481 0.6334685 -0.021398203 -0.69340825 -0.21491835 -0.12316529 -0.6527637 -1.2916154 -0.8041875 -0.27349746 -0.24568109 +CTTGT 0.42950565 0.73788166 -1.0797572 0.4678789 0.35830727 -1.3706247 -0.8339575 -0.31870976 -0.30899557 -0.10307483 1.0371361 0.11898169 +AGTCC 0.32246885 0.42096233 -0.37572405 -0.5567311 -0.40452707 -0.6275349 -1.0439953 -0.7709779 -0.034076378 0.028708855 0.7735725 -0.83401567 +AGCAC 0.48771235 1.4277257 0.510856 -0.41475832 0.4896538 -0.41180623 -0.06581106 -0.42908087 -1.042984 -0.21531445 0.083397284 -1.232282 +ACAGT 0.84568524 0.3612696 0.42648563 0.06468559 -0.10766734 -1.0156934 0.26574883 -0.23006971 -1.0148668 -0.6511946 0.6958855 -0.8430855 +TCAAG 0.81493604 0.15603483 0.5220052 -1.0631585 -0.4443608 -0.31553608 -0.21152847 -1.148685 -0.092717476 -0.32194677 1.1327405 -0.23960547 +ATTGC 1.2417425 0.8821525 -1.0764713 0.51798826 0.4712769 -0.14831257 -0.1861491 -0.6517207 -0.2861702 0.16037272 0.18716826 -0.3376593 +CCCAT 1.200854 0.8962678 -0.4669953 0.18541645 -0.7053549 0.009741667 -1.0498164 -0.6262464 0.49551436 0.79987514 -0.18343893 -0.82545125 +AAGCT 0.515603 0.7686346 0.13513795 -0.9021071 1.0036206 0.06890696 -0.42532057 -1.0698293 -0.36816546 -0.58312124 0.3375493 -0.07275829 +GATGT 0.514355 0.16145992 -0.8288134 1.0972137 -0.5707527 -0.2638337 -0.8341079 -0.2493667 -0.6744425 -0.45351285 0.91235906 -0.021546915 +ACAGG 0.51594496 1.4424986 0.8167132 -0.21508735 -0.6932034 0.1272349 0.25780827 -0.061055426 -0.9238094 -0.7749969 0.6503342 -0.7286656 +TACAG 1.2022384 0.87553847 0.42661858 -0.012840337 0.23585936 0.041069537 0.12909226 0.27706522 -0.8967989 -0.53437656 0.4212826 -0.30316487 +CATGC 1.0460812 1.0480535 -0.5290194 0.55330503 0.13943212 0.15536273 -0.30674282 -0.21302025 -0.30299303 0.5576105 0.17000435 -1.4645047 +GCTTC 0.36845812 1.1321566 -0.38986057 -0.682433 0.53212833 -0.27216178 -0.46593556 -0.7653993 0.08546966 0.34237787 1.0353436 -0.03735323 +TGACT 0.075065285 1.1418389 -0.18444496 0.48714277 -0.2700073 -0.7947362 -0.9663815 -0.14482556 -0.9328756 -0.11746603 0.09779839 0.7653173 +CTTAT 1.3863224 0.9577286 -0.92766386 -0.018143369 0.3046615 -0.57744724 -1.0494671 0.32945582 0.23158514 -0.016690824 -0.020257901 0.3896021 +CCAAG 0.39074433 0.6656568 0.3233613 -0.68504024 -0.3166134 -0.0046973606 -0.5689861 -1.3802332 0.018495163 -0.31492892 -0.01014507 -0.9758222 +TCAGC 0.747902 0.9154473 0.22257341 -0.9975088 0.34178242 -0.12736739 -0.35347986 -0.9707351 -0.27066436 0.62056965 1.1366888 -0.8123586 +AAGAC 0.60730976 0.8919423 0.6985943 -0.5468244 -0.58695304 -0.20179206 -0.30032393 -0.80348 -1.1384209 -0.85231113 -0.2997535 0.073317856 +AGGTT 0.3197863 0.46438742 -0.6018793 -0.5161659 -0.17710738 -0.36426702 0.12080705 -0.35012048 -0.41827664 -1.0605634 1.2832863 -0.15367977 +TCAGT 0.76892793 -0.11167998 -0.10223914 -0.3520193 -0.1853491 -0.68967754 -0.23626344 -0.6586166 -0.49231052 -0.08221836 1.5505216 -0.6865688 +GCATG 0.71110415 0.9881403 -0.41147968 1.0392067 -0.066041246 0.5236313 0.09622461 -0.6786931 -0.29956922 -0.26940906 0.37109625 -1.1384642 +CCAGC 0.32617244 1.435228 0.2834 -0.54220927 0.12825698 0.08526331 -0.8577039 -1.099742 -0.18220332 0.43499202 0.01158791 -1.3406823 +TTAGA 1.1451036 0.5622809 -0.62674594 -0.5555754 0.1594047 0.14012653 -0.504366 -0.4031698 -0.5912647 -0.96080095 0.23597433 0.9727068 +AGTTA 1.0894564 0.11535618 -0.34427947 -0.30756974 0.3926393 -0.57379156 -0.2809083 0.0032352186 -0.69547325 -1.4398603 0.5594748 -0.17683965 +CTGAC -0.22695848 1.6856798 0.01669909 0.36653662 -0.21515821 -0.4839688 -1.1605092 -0.24742147 -1.004711 0.25112018 -0.070375405 0.1767018 +TCTTG 0.18725784 0.8665615 -0.805913 0.094281055 -0.07878817 -0.73027563 -0.7146784 -0.5601779 -0.11900694 0.0058174804 1.4587325 0.8027214 +TCACC 0.8525877 1.2441266 0.30651772 -0.32427555 -0.57618344 -0.94611394 -0.5632943 -0.32182902 -0.079874344 0.83719826 0.15085676 -0.7927539 +AATAC 1.7605313 0.42786047 0.46139014 0.23160212 -0.23197784 -0.2365856 -0.7807954 -0.15092582 -0.5685252 -0.69387376 -0.61431414 -0.17467035 +ACTTG 0.23415814 1.2411537 -0.36012766 0.2726494 0.14269622 -1.0313213 -0.20856453 -0.34103772 -0.90183866 -0.3208305 0.14121534 0.5237408 +GAACT -0.004295855 1.0920225 0.20010486 -0.11400833 -0.107929885 -0.68023795 -0.6968934 -0.4164376 -0.8926506 -0.94158477 -0.21682736 0.57173187 +CTGTC 0.14627369 0.761976 -0.2190724 0.26068437 -0.29777148 -1.2230979 -1.4087255 -0.09850268 0.044668164 0.4841054 1.1142446 -0.47997487 +CAAGA 0.8620233 0.5329279 0.4160904 -0.86847013 -0.5310257 0.23035881 -0.44442323 -1.0712179 -1.1161851 -0.38866356 -0.10416927 0.021885002 +ACAAG 0.8628674 0.7847106 0.9236624 -0.4676253 -0.44139016 -0.27958038 0.17824289 -0.76467603 -1.0356101 -0.96330696 0.19843572 -0.4629519 +CCCG -0.259517 1.4052782 -0.24648634 0.04449479 -0.61280054 0.0036596332 -1.1108471 -0.8298882 0.287992 0.0019826626 0.18059626 -0.7938227 +TTAAG 1.1501915 0.31877577 -0.423705 -0.45826757 0.10591993 -0.3123943 -0.10930209 -0.56891435 -0.23053333 -1.4066564 0.42102534 0.531383 +CCAGT 0.4430192 0.26086172 -0.2729211 -0.33215058 -0.16104564 -0.78392094 -0.67656785 -0.7716502 0.025671802 0.074210115 0.79016006 -1.2584575 +ACCAG 0.36567253 0.9377324 0.63781583 -0.20501333 -0.39826047 0.24824905 -0.6902335 -0.68687046 -0.6528307 -0.19962628 -0.16791138 -1.125182 +AGGAC 0.029857691 1.3059906 0.5441517 -0.49351162 -0.5028078 0.0010593664 -0.5540193 -0.28820926 -1.0262014 -1.0193294 0.11804266 -0.00479241 +TCTAG 0.7552607 0.3821275 0.18428811 -0.46477696 0.51751924 0.09522794 -1.3143235 -0.1652744 0.12912801 -0.3826723 1.1164027 0.40246758 +ATGGG 0.41574872 0.9811077 -0.44578734 0.6170927 -1.0832876 0.65283144 -0.26110718 -0.08207802 0.043312263 -1.0458729 0.60262173 -0.22446992 +TGGTA 0.88867867 0.44651517 -0.3617882 0.89180535 -0.29670778 -0.014676312 -0.6575154 0.4630253 0.058680702 -1.1956983 0.9267519 -0.43988895 +CCCTC 0.27225548 1.5321279 -0.021881713 -0.6625535 -0.23780504 -0.5198094 -1.4168175 -0.8610862 0.36251703 0.9112663 0.31483692 -0.6613476 +TTGGG 0.088966995 1.2420055 -0.9590636 0.36207694 -0.49807695 -0.33161116 0.07204592 -0.39188427 -0.09375104 -1.0539058 1.4009951 0.6249439 +GACTT 0.091231115 1.2854663 -0.29560816 -0.2946431 -0.16659819 -0.81730986 -0.49890336 -0.38773614 -0.846795 -0.5245444 0.14243573 0.9647631 +GCTGA -0.3208553 1.2860752 -0.4872036 0.31481373 0.5119532 0.5877049 -0.8752467 -0.8546046 -0.8838182 -0.48953965 0.46415436 0.12262995 +GGCAG 0.10207749 1.2733818 0.2315884 -0.20138836 -0.07543272 0.861221 -0.12679346 -0.7097286 -0.72743684 -0.6682487 1.0548283 -1.2912159 +AGAAC 0.4822737 0.988312 0.49776447 -0.5052515 -0.39571142 -0.027383825 -0.5847535 -0.60552996 -1.3452996 -1.03976 -0.52885157 -0.04200107 +AGCCA 0.33678916 0.879827 0.07316221 -0.40973058 0.015443971 0.4397745 -0.5954619 -1.0680591 -0.62137544 -0.3251563 -0.2635843 -1.364618 +GCACT 0.27689373 1.5136787 0.52294374 0.056731846 0.5888984 -0.7681107 -0.14840363 -0.3721146 -0.70071155 0.040286303 0.33624533 -0.56801045 +ATTCG 1.0119692 0.83222914 -0.8248129 -0.38502145 -0.61601865 -0.102456346 -0.82097197 -0.583291 0.014839322 0.25142407 0.54683757 -0.0117687965 +GTCTT 0.29826775 0.5464536 -0.7627127 -0.21526724 0.055135015 -1.2202212 -0.8595033 -0.21188729 0.08519313 -0.39297336 1.2709563 0.28046116 +GCCG -0.34557676 1.3921294 -0.19296613 -0.00028376098 0.1372041 0.43904483 -0.6585725 -0.8130834 -0.091650605 -0.27136254 0.5827383 -0.80641556 +CGGG -0.33527958 1.4465785 0.021949748 0.17950602 -0.76042855 0.09827935 -0.38406652 -0.40582463 -0.12644845 -0.6563689 0.9145145 -0.5778835 +CAGGT 0.23097561 0.54896545 0.07553606 -0.13212039 -0.5095941 0.119329646 -0.19629467 -0.15600266 -0.6118264 -0.37539372 1.2941649 -0.94411284 +ATAGT 1.5227683 -0.30214602 -0.33226487 0.0575217 0.23080088 0.09276158 -0.6937789 0.022476813 -0.42454898 -1.1389431 0.85453904 -0.49234173 +CTTAA 1.1048656 0.5199914 -0.19181502 -0.6020526 0.3551255 -0.88924664 -0.834146 -0.308811 -0.11605209 -0.59799623 -0.19788834 0.3362022 +TGCAC 0.433138 1.3905854 -0.25815982 0.3473538 0.45756274 -0.759339 -0.12417454 -0.07594912 -0.7617423 0.2042352 0.13072054 -0.94614446 +GTCCT -0.011136446 0.67315066 -0.57046235 -0.060210902 -0.19741665 -0.9384871 -1.2514433 -0.31059015 0.41307354 0.002234904 0.9904239 -0.43778923 +CGAT 0.8634682 0.8724041 -0.6649443 0.032573164 -0.6430706 0.2898024 -0.8013413 -0.5568837 -0.030171456 0.26845515 0.44040844 0.19986649 +CCGT -0.0012693655 0.8454634 -0.47948998 0.0886927 -0.4571175 -0.54778016 -0.730613 -0.48764583 0.19831549 0.10053192 0.57572913 -0.77133375 +CCCAA 0.76517445 0.6813169 0.28263322 -0.32515776 -0.5383715 -0.28248855 -0.9704292 -1.3774196 0.0634797 0.013067656 -0.5836289 -1.1736556 +AGTTC 0.50551 0.0479165 -0.44412655 -0.92998976 0.1954693 -0.8139159 -0.52106935 -0.48444292 -0.4302476 -0.41125748 1.2429243 -0.23714781 +ATCAG 1.039251 0.14120242 0.18847159 -0.89000994 -0.683734 0.43834206 -0.7330819 -0.33961186 -0.47524154 0.10876526 0.6936841 -0.585328 +ACGT 0.27084628 0.7359625 -0.026179178 0.2761383 -0.21417597 -0.73470414 -0.26557904 -0.016876772 -0.54754066 -0.313659 0.4913689 -0.6253494 +CTGAT 0.3514412 0.9062453 -0.69564855 0.6534614 -0.15397891 0.22470102 -1.2952156 -0.17564562 -0.42373008 0.15851499 0.26024404 0.64307266 +ATTAG 1.4044164 0.4536857 -0.6883068 -0.4995509 0.23202059 0.20838723 -0.56646335 -0.18091977 -0.2974602 -0.88110846 0.033176746 0.33395103 +CCAGA 0.24724598 0.968696 0.41072586 -0.48265338 -0.6660076 0.63211226 -0.8644832 -1.1921856 -0.60935557 -0.024567496 -0.30295175 -0.5627679 +AGCTC 0.13993275 1.2777003 0.22620025 -0.9748012 0.6345129 0.08701982 -0.8661617 -0.6407232 -0.40262598 0.10224997 0.8459727 -0.30405948 +GAGGT -0.19059773 0.6339808 -0.2121667 0.13130112 -0.46184483 0.41249225 -0.3536036 -0.52224135 -0.7808141 -1.105181 1.5229164 -0.21467777 +GATTA 1.3153265 0.94596374 -0.79155165 0.16549881 -0.3845194 0.3463171 -0.3413649 0.17404549 -0.24693911 -0.91749936 0.083196506 0.84343004 +TGGCC -0.25808626 1.426287 -0.64984536 0.45041993 -0.19912323 0.07822794 -0.56344616 -0.5053025 0.23992082 -0.13950959 0.56722647 -1.0369506 +GTGCA 0.3848449 0.593445 -0.42866248 0.7796178 0.27168882 -0.21225126 0.03913161 -0.72295094 -0.6341336 -0.37760228 0.81757486 -1.3620061 +CATAG 1.3051755 0.63886684 0.09877615 -0.10921028 0.006015271 0.64849836 -0.45403937 0.30537874 -0.5753889 -0.29342476 0.28558406 -0.503675 +CTCTA 1.0197308 0.85957277 0.47938246 -0.5480128 0.26510775 -0.606911 -1.7162659 0.10700797 0.40334946 -0.02796179 0.33518526 0.27451336 +CTTGC 0.28095132 1.5932178 -0.8799959 0.09463584 1.0677549 -0.5915637 -0.5350323 -0.54843235 -0.22148004 0.3587067 0.55092514 -0.21114415 +ACTTA 1.1887581 1.1681681 0.08627455 -0.40259773 0.20344825 -1.1112248 -0.4687844 0.17138372 -0.57676154 -0.594774 -0.3932987 0.53931093 +GGTGT 0.17338613 0.599389 -0.63169575 1.0064139 -0.41138026 -0.54652166 -0.4298997 0.00553635 -0.15351628 -1.1236951 1.5892438 -0.57396674 +ATCGA 0.7264612 0.691374 -0.13735305 -0.17022687 -0.95824635 0.46741462 -1.0487702 -0.8076112 -0.31641605 -0.6690019 0.20165773 0.01845667 +ATCCT 1.0224355 0.58997095 -0.3417601 -0.31735444 -0.47913492 -0.095802926 -1.522791 -0.2743891 0.4933742 0.55126613 0.09071263 -0.22367781 +AGTTG 0.20961723 0.11861158 -0.8070073 0.17731848 0.13498072 -0.36639684 -0.17344382 -0.81759065 -0.97357595 -1.1649158 0.8994489 -0.18382071 +CTACA 1.2068415 1.0758083 0.88422805 -0.15999977 0.2926093 -0.40552345 -0.67637867 0.21325715 -0.578113 0.05225753 -0.050074827 -0.20765327 +GATGA 0.36578867 0.7003587 -0.5697224 0.5896572 -0.7691693 0.709203 -0.7478577 -0.64746594 -1.0232075 -0.72184044 0.06949676 0.288877 +GCAGG 0.0904123 1.4490805 0.33062324 -0.054427642 -0.05683126 0.70357966 -0.06759362 -0.76542175 -0.61240715 -0.75564826 1.1124629 -1.0958898 +TAGAT 1.4090406 0.6098204 -0.2091336 0.14086121 -0.047389124 0.70527667 -0.89107627 -0.163719 -0.25599852 -0.56839484 0.34155685 0.76211715 +ATCTA 1.5310011 0.29142675 0.3533592 -0.31861383 -0.09512923 0.01052864 -1.4257537 -0.005308587 0.21459824 -0.46531698 0.16756499 0.2574811 +GCAGC 0.23582414 1.4651568 0.3122406 -0.075425096 0.836637 0.3136588 -0.26473776 -0.9850837 -0.5812336 -0.15381482 0.82398206 -1.4137743 +GTGCT -0.06474871 1.053645 -0.6078355 0.59620506 0.74146205 -0.37360442 -0.6138261 -0.39790437 -0.18258683 -0.20463368 1.2418492 -0.51771575 +CAATC 1.1078414 0.34542444 0.16030735 -0.41356945 -0.59899116 -0.10363279 -0.92785287 -0.78184134 -0.2743727 0.41129458 -0.01020779 -0.5876527 +AATCG 0.79235923 0.6814608 -0.13053942 -0.112003826 -0.9975898 0.5247902 -0.92985976 -0.85264593 -0.38524255 -0.7333629 0.21797599 -0.021629522 +TTCGA 0.7471323 0.9446283 -0.75272363 -0.34413412 -0.67637545 -0.017813781 -0.8415907 -0.70152074 -0.021417093 0.19500855 0.52814996 0.28644642 +CTAAT 1.5654229 0.25718915 -0.017181499 0.15626314 0.32208672 -0.32330263 -1.2040616 -0.28348073 0.07006132 -0.25266066 -0.03813146 0.27944654 +AGGGG -0.16118349 1.1771349 0.116823405 -0.15245785 -0.8098445 0.5638983 -0.34313345 -0.5118467 -0.2892596 -1.3830293 1.1353229 -0.6247179 +GGGTG -0.298141 1.0911775 -0.37279138 0.7127361 -0.60095227 0.07974744 -0.36791676 -0.48337066 -0.31689152 -1.1162227 1.5285946 -0.7278838 +CCATA 1.4908531 0.74960834 -0.025545755 0.09025356 -0.45388722 0.11137967 -0.7591361 -0.043338865 0.28924474 0.040808413 -0.2731521 -0.5572369 +CACCT 0.49274552 1.3987699 0.07830053 -0.19269782 -0.13091433 -0.8267986 -0.849739 -0.05149674 -0.12327752 0.37716496 -0.27952623 -0.72093636 +CTGGC -0.16534439 1.7588527 -0.21152748 0.19289653 0.29782817 0.030920448 -0.59092396 -0.17909402 0.03813977 0.028894398 0.92728996 -0.8017502 +GGAGC -0.20715156 1.2467287 -0.06219519 -0.22820793 0.021948019 0.78082055 -0.35169604 -0.8631779 -0.58179873 -0.57180405 0.8374797 -0.5659262 +GATAA 1.421452 0.25647753 -0.12047638 0.24924485 -0.3479983 0.5769543 -0.8448332 -0.4555017 -0.6445783 -0.9371831 -0.13017094 0.5349052 +CGCT 0.014221956 1.4984833 -0.046234634 -0.08776132 0.38956904 -0.21724516 -0.6816284 -0.396685 0.13353829 0.124541126 0.5804674 -0.41271257 +ATCCC 0.8505516 0.6028216 -0.3999422 -0.12346587 -0.8526958 0.34718037 -1.326944 -0.74978346 0.47528213 0.44019216 -0.19039413 -0.5854109 +AGAGC 0.20461604 0.9438253 0.21363509 -0.67065483 0.48138452 0.72295207 -0.5892715 -1.1781596 -1.1834644 -0.5902691 0.3648412 -0.46194044 +ATAAC 1.7367398 0.54696506 0.35589042 0.19305682 -0.17733589 -0.44069266 -0.7520407 0.0024172005 -0.50158244 -0.5683132 -0.6960185 -0.15680361 +GAGGG -0.22986111 1.3946362 0.0472814 0.053380482 -0.81928414 0.92923945 -0.43583384 -0.6654713 -0.873842 -1.3056519 1.1262885 -0.2252822 +GAGTC 0.14288542 0.3157398 -0.33635354 -0.40830922 -0.60943145 -0.18059804 -0.8467204 -0.620412 -0.5459694 -0.22223325 1.1587785 -0.2905068 +ACACC 0.75349563 1.6062125 0.67093354 0.040073097 -0.5730439 -0.75292224 -0.45027402 -0.26182687 -0.58223313 0.06842913 -0.6170626 -1.1036338 +ATGGC 0.59847385 1.0537436 -0.33840838 0.5704115 -0.42701864 0.6771121 -0.16423257 -0.38916922 0.09319892 -0.64605296 0.28864595 -0.71907794 +GGCG -0.2344636 1.4418913 0.012932832 0.08417533 -0.3299458 0.48725992 -0.26521292 -0.61225295 -0.1981443 -0.6987138 0.87889475 -0.7509278 +TAATC 1.644377 -0.03298121 0.007609672 -0.25027722 -0.33543146 -0.106264025 -1.3178824 -0.27508315 0.10505948 -0.14282225 0.092009045 -0.0024671087 +ACATC 1.2602979 0.91658413 0.49516788 -0.32664728 -0.9727521 -0.37226033 -0.45009083 -0.10793538 -0.46733266 0.34247622 -0.013555876 -0.26866835 +AGACT 0.09379032 1.1401083 0.4707998 -0.5699296 -0.08364964 -0.32204872 -0.75626546 -0.3250285 -1.1945307 -0.54832107 0.18168125 0.6536106 +AGTCT 0.15558964 0.075228766 0.053130873 -0.5499535 -0.06302731 -0.6959484 -0.92781353 -0.29180154 -0.4152538 -0.51862 1.2112628 -0.025153112 +GGGGA -0.19003034 1.3351995 0.04101988 0.1478906 -0.97743374 0.5673929 -0.35217386 -0.3815498 -0.40998015 -1.3604022 0.9326733 -0.15475883 +GAAGC 0.3091174 0.8724057 0.069960274 -0.41418365 0.31166497 0.613149 -0.22390778 -1.2840761 -0.6799512 -0.82500494 0.09357243 -0.4056703 +ACCAC 0.6128345 1.382385 0.5413921 0.093257755 -0.555318 -0.81079954 -0.56449616 -0.19002959 -0.671223 0.12382909 -0.46469888 -0.958424 +GGCAA 0.44407925 0.8748417 0.19627509 0.03532897 -0.24271911 0.38890678 0.112447664 -0.7043527 -0.47609112 -0.86732495 0.27103573 -0.9571841 +TAGCA 1.3530036 0.62935364 -0.073520415 -0.19515897 0.85878515 0.36944714 -0.111468 -0.3562152 -0.5493585 -0.51128274 0.2618863 -0.48945957 +GTGGC -0.20000915 1.1554238 -0.32046863 0.63652927 -0.030036148 -0.056810565 -0.12960614 -0.32882333 -0.22640346 -0.6180124 1.372043 -1.1200856 +TAACT 1.0564991 0.8081277 0.37054595 0.011753449 0.3338622 -1.0990192 -0.9248736 0.03526804 -0.57623655 -0.66225845 -0.16375016 0.54512215 +ACCCC 0.44632334 1.407275 0.30217946 -0.08843376 -0.8829275 -0.49914572 -1.2595743 -0.8820333 -0.17181224 0.36443612 -0.7964474 -0.96793157 +CTCGA 0.10372765 1.1077579 0.1547086 -0.27422974 -0.7682358 0.03757879 -1.1296264 -0.60986364 -0.45627987 -0.3951737 0.27886984 0.25621372 +GAGCC -0.37504533 1.2736893 -0.34529957 -0.1864051 0.07944638 0.6576764 -0.8768371 -1.1072296 -0.510086 -0.16829582 0.2416841 -0.78677094 +TCCG 0.12436705 0.92445046 -0.3808872 -0.22295739 -0.46285272 -0.19325249 -0.7978112 -0.7643822 0.28803787 0.27079892 0.8111994 -0.36532438 +TACAC 1.5420243 1.2207577 0.38762355 0.25289458 -0.25686932 -0.92851686 -0.11345405 0.488027 -0.64117527 -0.093444295 -0.30760068 -0.4235215 +CTATG 0.599184 0.6744815 -0.45479593 0.73249257 0.21684903 -0.040665083 -1.1558384 0.2374938 0.19440815 -0.24720699 0.4125245 -0.09550672 +TAGTA 1.6581376 0.18142769 -0.17078546 0.08947142 0.56823003 -0.2583563 -0.6046143 0.14360671 -0.34391576 -1.3245219 0.67735076 0.024880048 +ATAGG 0.91444343 0.70211256 -0.013480036 0.18568902 -0.22994642 1.006915 -0.53092974 0.22745046 -0.36244628 -1.067665 0.7254547 -0.22762078 +AGCCC 0.068026766 1.0712054 0.035702486 -0.65250045 0.051378246 0.36567786 -0.9689598 -1.1270381 -0.08135751 0.04839227 0.055212844 -1.2147064 +CTTGG -0.17421392 1.3679484 -0.76815987 0.073568165 -0.08958586 -0.3528104 -0.4263333 -0.23098123 -0.025852336 -0.4449139 0.9778781 0.3575196 +TCTAC 1.2850552 0.8977882 0.5336265 -0.11180443 -0.06576953 -0.94957197 -0.9781058 0.2659614 -0.06404883 0.33570644 0.3709436 0.23694181 +ACGA 0.3349619 0.98312527 0.2860061 -0.13610831 -0.67071265 -0.097537294 -0.46719387 -0.69406223 -0.73753035 -0.6855303 -0.2783291 -0.18123075 +GCTGC -0.005983199 1.5959498 -0.3623582 0.348577 0.9084133 0.21612753 -0.6518029 -0.5687292 -0.23077811 0.073738985 1.0083102 -0.752008 +AAGGT 0.52363294 0.20907399 0.11804694 -0.14090519 -0.32975823 -0.11109303 -0.0037076024 -0.50672185 -0.32659674 -1.498145 1.0800396 -0.38701868 +CCCTG -0.21715453 1.5318971 -0.3750778 0.3505278 -0.08767489 -0.18414979 -1.2990606 -0.5939235 -0.005730245 0.30669156 0.048755087 -0.68111116 +CCGA -0.07770984 1.1539869 -0.000156084 -0.12516303 -0.41642922 0.3135564 -0.84991604 -0.7833844 -0.32478634 -0.063190535 -0.01267816 -0.4583694 +AGTGC 0.089626245 0.3885467 -0.34690407 0.1808104 0.6028048 -0.14610313 -0.37504697 -0.76409155 -0.64712286 -0.6804024 0.7473301 -1.0499339 +ACTAT 1.4059191 0.9191722 0.15067528 0.30382064 0.07107535 -0.46450743 -0.98721147 0.37616888 -0.27442417 -0.32551324 -0.24158445 0.48753604 +TCAAC 1.2205484 0.71433127 0.5869406 -0.5772588 -0.5676349 -0.83468956 -0.21600956 -0.49273494 -0.46399903 0.24178977 0.07981519 -0.2270925 +ACCCT 0.40877524 1.5053725 0.103460655 0.07044767 -0.20688058 -0.6007551 -1.2791929 -0.47729754 0.11353108 0.31572914 -0.48428544 -0.49051765 +GGTCT 0.10984922 0.7098698 0.18661691 -0.1366457 -0.5351389 -0.36767057 -0.90786606 0.093174234 0.16721292 -0.5566994 1.711002 0.030764332 +CTACT 0.7987762 1.0644457 0.5064113 -0.24946074 0.58441955 -0.91326314 -1.1950141 0.22972736 -0.17305413 -0.0849384 0.3253713 0.24529926 +GCCAA 0.5287098 0.5172558 -0.10116828 -0.049146093 -0.12276854 0.13499519 -0.32567546 -1.3895311 -0.032812063 -0.32627803 -0.12069141 -0.9740556 +ACCAA 1.0262254 0.7356225 0.5632357 -0.21143046 -0.6367947 -0.4751445 -0.551125 -1.0028509 -0.52672344 -0.3112923 -0.77697223 -0.9320329 +AGTAT 1.3538368 -0.08069521 -0.3337231 0.19192283 0.15397586 -0.098397635 -0.74151176 0.21287005 -0.23288769 -1.2546997 0.6895016 -0.15591304 +CCCAC 0.4981824 1.5415591 0.2739034 -0.049775347 -0.6790089 -0.5833747 -1.0025859 -0.66098493 -0.22015123 0.562111 -0.4675176 -1.2892811 +ACAGC 0.8639304 1.4675395 0.7141905 -0.31643286 0.31840193 -0.020128023 0.018262113 -0.63153213 -0.880371 -0.073676735 0.09536547 -1.141376 +TATAC 1.9624784 0.9134135 0.14724004 0.63833255 -0.09025959 -0.33618858 -0.6918782 0.57598585 -0.24539329 -0.21244302 -0.27807975 -0.019215362 +TTGGC 0.18536314 1.4861412 -0.98707646 0.3324468 0.11536022 -0.093141824 0.1109069 -0.48229396 0.08090438 -0.18029763 0.78242564 0.029228693 +AGGAT 0.49151024 0.66944075 -0.26877606 0.13852058 -0.7509066 1.0478148 -0.6427803 -0.31815335 -0.35302168 -1.0810676 0.42535308 0.04148679 +TCCCC 0.4604084 1.2092034 -0.45548594 -0.23082487 -0.38045228 -0.43396655 -1.2114557 -1.0126456 0.5655743 0.82176644 0.15436602 -0.547581 +GTTCC 0.37523282 0.44211888 -0.9842223 -0.19130936 -0.29538277 -0.63365674 -0.6888987 -0.753893 0.26913157 0.02188415 0.9597374 -0.44833657 +CGAC -0.0074263844 1.5204982 0.230097 -0.10887362 -0.43902707 -0.31954893 -0.7689926 -0.62379247 -0.4287875 0.24250405 0.007875744 -0.2017111 +GGCCA -0.026680015 1.3783168 -0.06754083 0.056678817 -0.43758383 0.5885741 -0.39584157 -0.7174604 -0.056118935 -0.25205624 0.40754414 -1.2875693 +GGGGT -0.123939656 1.0761688 -0.41238794 0.3499486 -0.7467352 -0.025157347 -0.2210391 -0.35247824 0.014380901 -1.0396389 1.6714444 -0.54173553 +GCAAG 0.45425713 0.7636349 0.36910796 -0.061204366 0.38941208 0.3131791 0.024215527 -1.1242552 -0.4738547 -0.7326539 0.56902915 -0.9775218 +CGTC 0.10890633 0.7409292 0.0036520953 -0.27123788 -0.31864876 -0.7080785 -0.9079207 -0.38895097 -0.031844635 0.23105152 0.89135283 -0.70366615 +GCTGT -0.0072993715 0.85238695 -0.50370485 0.73057866 0.58255494 -0.57965 -0.8001062 -0.14190197 -0.3188499 -0.24334267 1.1558361 -0.5941918 +GCTCT 0.09160461 1.3229922 -0.20474282 -0.24839343 0.58134854 -0.41634154 -1.088251 -0.40312767 0.0435962 0.1969756 1.265606 0.13530533 +AACCC 0.43416086 1.0772815 0.19054481 -0.08349883 -0.5560947 -0.25773942 -1.0110054 -1.1533719 -0.24581936 -0.39517093 -0.987819 -0.9893688 +ATAAG 1.4606724 0.19579685 0.24408282 0.022723114 0.102199525 0.61045843 -0.64071935 -0.31504446 -0.5137388 -1.3623972 0.14784914 -0.16068439 +CCGG -0.30685028 1.361589 -0.150146 -0.029188693 -0.5529232 0.23213607 -0.55128545 -0.58683574 0.103647985 -0.37047216 0.6023062 -0.840137 +TGGGC -0.04172911 1.3077861 -0.18535809 0.5290518 -0.2647475 0.54068667 -0.39709142 -0.18843423 0.0148095125 -0.50938165 0.98714805 -0.823856 +ATGCC 0.7445835 0.739543 -0.6113699 0.5569134 0.1167886 0.38156745 -0.8606512 -0.711247 0.33416483 0.11319817 0.0038289202 -1.1933057 +TTGTC 0.6432358 0.4503326 -0.88429886 0.36922973 -0.38942707 -1.2225304 -0.58263147 -0.48909476 0.0040118853 0.253887 1.1349787 0.053147603 +GTCAG 0.10705204 0.16161716 -0.14229481 -0.3604077 -0.6062843 -0.19103956 -0.49915156 -0.46042237 -0.58202296 -0.4059697 1.6446174 -0.9331619 +ACAAC 0.8926264 1.2412384 0.830104 -0.10572147 -0.33643252 -0.81253755 -0.18476233 -0.4805318 -0.77547884 -0.59529984 -0.57787967 -0.4234995 +TACCA 1.2203175 0.9412226 0.3537929 0.029795049 -0.102336906 -0.1319818 -0.6737379 -0.011670166 -0.14294268 -0.15467545 -0.5738469 -0.6743431 +GTCAT 1.0915176 0.054098517 -0.5035911 0.13703045 -0.77774745 -0.40493214 -0.5397688 0.0950592 -0.032871436 -0.05169636 1.0279428 -0.5911173 +TAAGT 1.081031 -0.17143255 -0.12289124 0.14749055 0.43682745 -0.57413846 -0.5968246 -0.3014116 -0.47178975 -1.5085776 0.8438116 -0.16856149 +CACCC 0.5611821 1.4830383 0.2196094 -0.31291246 -0.5910944 -0.63455033 -1.0897559 -0.5244248 -0.13630639 0.57846427 -0.37276146 -1.2177209 +GTCTG -0.21662262 0.43405733 -0.45005268 0.2885763 -0.1536338 -0.53386575 -1.1450086 -0.14495316 -0.15229592 -0.45908266 1.4699429 -0.35303003 +AAGTC 0.58188194 -0.11749769 0.108278036 -0.6321231 -0.40255123 -0.6637344 -0.56562924 -0.7863762 -0.21470626 -0.5733349 0.7870021 -0.6207221 +GCCAC 0.2050505 1.4541379 0.25328994 0.048900925 -0.07425218 -0.26424885 -0.5077419 -0.67662936 -0.301963 0.27766377 -0.052694656 -1.2116725 +GTTAA 1.204319 -0.18035458 -0.6341766 0.1807485 -0.029530495 -0.8235352 -0.4113126 -0.30473393 -0.42876604 -1.3966215 0.43709698 -0.08612424 +TAGCT 0.828417 0.9486031 -0.11067531 -0.25490597 1.1079369 0.1360837 -0.68257797 -0.1667186 -0.20046471 -0.524166 0.77017754 0.2064621 +ACCG -0.07299719 1.3227754 0.25167388 0.10636204 -0.56364024 -0.23995733 -0.614227 -0.51638776 -0.28336862 -0.23781174 -0.058331955 -0.72695535 +TACTA 1.5407181 0.84660363 0.52092755 -0.01711318 0.4752108 -0.7507066 -1.1442053 0.23813312 -0.18419184 -0.7143122 -0.25372592 0.4133759 +CAGTC 0.4183819 0.3258256 -0.028005604 -0.58865905 -0.4422809 -0.6023556 -0.7520107 -0.45604652 -0.47678697 0.28199807 1.0050298 -1.0072405 +GCCTT 0.16334517 1.2377164 -0.6929024 -0.25763455 0.5465445 -0.39949623 -0.63171303 -0.81779134 0.32122558 0.14682254 0.40048277 -0.2698225 +AAGGC 0.23044406 0.9503489 0.3975638 -0.58130836 0.009468803 0.49050733 -0.19379272 -0.8430048 -0.13390322 -0.98007244 0.5035532 -0.7156058 +TCCTA 1.0916436 0.6969931 -0.096066535 -0.086852275 0.28249243 -0.27519482 -1.4880769 -0.36697072 0.5121366 0.31165376 0.23291674 0.16848332 +GTGTC 0.16507173 0.18517974 -0.43711653 0.6051016 -0.44103765 -0.9402644 -0.87866503 -0.25864756 -0.1719164 -0.35430717 1.4976791 -0.70747226 +AAGCC 0.47486708 0.64031434 0.1167559 -0.69605255 0.093902476 0.3662747 -0.65889496 -1.4048458 -0.099900715 -0.6143755 -0.2437747 -0.97184867 +GACAC 0.38038787 1.4054192 0.58216655 0.100063294 -0.7529577 -0.3452986 -0.21876249 -0.3299497 -1.3837788 -0.3683384 -0.19589615 -0.2562375 +CGCC -0.0485349 1.6449134 -0.18716681 -0.061739232 -0.22426435 0.024063027 -1.0490621 -0.75050724 0.28296578 0.1605824 0.22289166 -1.0467185 +GCCCT -0.028354164 1.2768271 -0.4817156 0.07155084 0.4237239 -0.030361328 -1.2551308 -0.7995584 0.21538511 0.19969216 0.22387703 -0.61955595 +GGATG 0.3014383 0.8688636 -0.5715125 0.8585422 -0.92473936 0.82377946 -0.59654015 -0.38157806 -0.25912464 -0.87781185 0.72790885 -0.25428957 +CATCC 0.9325586 0.90772563 -0.09674655 -0.36022958 -0.61311907 -0.11689896 -0.99164075 -0.42842716 0.09121001 0.87743056 0.10205641 -0.7364281 +AGTAG 0.6262561 0.25920677 0.08642157 -0.23624988 0.4854796 0.21290717 -0.59936666 -0.20190458 -0.7829481 -1.4770739 0.8841306 -0.3427196 +GGCTC -0.19466662 1.5327092 0.00376087 -0.35623944 -0.12431334 0.048540574 -0.64984035 -0.31761256 0.05255485 0.07143077 1.393209 -0.56112254 +GGGCA 0.027693452 1.4224867 0.14315903 0.14287354 -0.30304232 0.4692062 -0.037140172 -0.41969922 -0.41296476 -0.6517182 0.9311197 -1.1728361 +GCCCA 0.16328847 1.1107891 0.061558135 -0.24808525 -0.13350697 0.35244584 -0.68889385 -1.2827337 -0.107574336 -0.022706345 0.04253031 -1.3327144 +TTATC 1.7047836 0.35772845 -0.5989312 -0.3459637 -0.31433666 -0.4903068 -1.0308017 0.0152452085 0.30331358 0.03590751 0.51618725 0.45196187 +GGGTT 0.052780803 0.8840552 -0.81240696 0.04220024 -0.5672047 -0.31059027 0.029762147 -0.389792 -0.03640556 -0.9115155 1.6220033 -0.05770382 +ACCTC 0.35978878 1.1593417 0.4462326 -0.36365148 -0.3264702 -0.6818883 -1.0530664 -0.5047478 -0.2036084 0.5014379 -0.04793917 -0.35601622 +GGATA 0.9068693 0.7484064 -0.042372808 0.494965 -0.47729933 1.0140858 -0.6017563 0.042630196 -0.2602131 -0.93864936 0.6034561 0.21371776 +TGACC -0.049588624 1.1638634 -0.29519498 0.55632854 -0.6341194 -0.43548882 -0.9639317 -0.64210296 -0.48282468 0.28786322 -0.27110174 -0.2322434 +CCGC -0.07808222 1.6738191 -0.13633019 -0.04922902 -0.017251285 -0.04675466 -0.9836953 -0.77691436 0.25552857 0.13829161 0.100569986 -0.97721124 +TATCC 1.2998455 0.6361404 -0.3197342 -0.06881786 -0.40348566 -0.033294387 -1.2350937 -0.18601266 0.37958908 0.44576555 -0.01875685 -0.007415549 +TGGTC 0.11257515 0.6735497 -0.49445754 0.30903244 -0.7101759 -0.38000935 -0.6129044 -0.083655804 0.18504696 -0.30274597 1.4157331 -0.32421827 +GTGAC -0.08051686 0.8901295 -0.11653274 0.891211 -0.62274677 -0.46169242 -0.3930255 -0.35952586 -1.1403022 -0.3933373 0.3225262 -0.3250791 +TTAAC 1.4471015 0.7615364 -0.15907788 -0.1770942 0.0020235104 -1.2955215 -0.30465987 -0.09617049 -0.37808162 -0.60453933 -0.40942577 0.19339018 +AGCG -0.01755416 0.9020694 0.12521373 -0.13792185 0.10344333 0.22373223 -0.35680375 -0.564985 -0.40430298 -0.4595718 0.7331522 -0.6905586 +AGCTA 0.74925345 0.9996437 0.4649804 -0.34222567 0.9589926 0.39582682 -0.9372914 -0.34638652 -0.23274882 -0.6511488 0.05896432 -0.24806914 +GACCC -0.09193551 1.3947517 0.10322261 0.035489965 -0.7522894 0.0001963746 -1.1486372 -0.80116224 -0.3079145 0.07479232 -0.50435793 -0.6303175 +AGACC 0.094190516 1.097919 0.28317574 -0.17712864 -0.54881835 0.25855148 -0.90403134 -0.7188533 -0.7265606 -0.31004575 -0.42471117 -0.37931934 +TAGTG 0.57332236 0.1612666 -0.29541633 0.52291316 0.39196587 -0.031553697 -0.5975086 -0.11900505 -0.33765867 -0.9986476 1.0336821 -0.35276443 +GATAG 1.0596638 0.6774604 0.1248992 -0.037783403 0.036631707 1.0515059 -0.71563804 -0.19084741 -0.94927573 -0.99439085 0.3953312 0.21631832 +CTAAG 0.6110996 0.3871562 0.42999637 -0.38516578 0.52378815 -0.2170165 -0.82369816 -0.34076962 -0.15961112 -0.9514809 0.54594016 0.043803737 +CAGAC 0.4587007 1.184988 0.6418123 -0.42818084 -0.5488766 -0.11463006 -0.4359213 -0.4500412 -1.3581908 0.00659837 0.019929687 -0.44206905 +GACCA 0.3497215 1.0059797 0.2573368 0.11699781 -0.7684174 0.07675703 -0.68273056 -0.50314075 -0.7151099 -0.20436221 -0.4363278 -0.7357486 +GCTTG -0.050678845 1.2246763 -0.8595788 0.37932202 0.6366167 -0.34868002 -0.33609447 -0.6427412 -0.3165539 -0.26824895 0.75966936 0.1980333 +TAGAC 0.78078175 0.95821124 0.51295775 -0.041602973 0.012944814 0.10618093 -0.6799855 -0.028004484 -0.8064813 -0.43276218 -0.057538535 0.40457478 +GTTGG 0.17305139 0.6040117 -0.89368737 0.5612642 -0.30322847 -0.48142332 -0.05219999 -0.28146046 -0.34919465 -1.0634797 1.5460944 -0.20403028 +GAACC -0.00075487525 1.1465942 -0.108629614 -0.026437663 -0.6189592 -0.11876433 -0.67755777 -0.73640555 -0.42696565 -0.64210105 -0.6804921 -0.3554779 +TAGGA 0.76668733 0.80999565 0.05314614 0.076609015 -0.39062366 0.7093836 -0.37134346 -0.079247914 -0.5037156 -1.3385649 0.5584425 0.31498125 +AGATC 0.52333015 0.4408071 0.087428294 -0.56497806 -0.64766085 0.70211846 -1.0234784 -0.6196361 -0.65366143 0.083818555 0.53237385 0.3709466 +TTGAC 0.3047844 1.0691491 -0.6027609 0.36755648 -0.3462503 -0.7340763 -0.33052912 -0.49940425 -0.9030058 -0.058119744 0.04830478 0.5851565 +ACTAG 0.6005812 0.84774965 0.714485 -0.20438099 0.41619036 -0.16380844 -0.9179676 -0.08588793 -0.52576524 -0.9387794 -0.03237161 0.09389347 +TCGG -0.017995961 1.1122898 0.037957273 -0.031945903 -0.4368562 0.21094581 -0.5481701 -0.32231334 0.05106483 -0.28841633 0.83364904 -0.21125124 +GCGA -0.15935577 1.2430933 -0.06672146 0.08986671 -0.074721955 0.24497528 -0.48186734 -0.6144564 -0.48067772 -0.24504359 0.3145674 -0.27928138 +GATCA 0.72290474 0.57215405 0.05768126 -0.3265059 -1.0568181 0.49673477 -0.5176877 -0.22633395 -0.75711006 0.089993395 0.57697403 -0.008811455 +CATAC 1.5252254 0.9929271 0.31925637 0.1265686 -0.30983394 -0.36537224 -0.48751926 0.41793373 -0.60569245 0.16744772 -0.19113134 -0.38994318 +GCCAG -0.037569944 0.9696795 0.21324725 -0.101031974 -0.03985797 0.38742554 -0.6003545 -1.1267594 -0.4752358 -0.22159918 0.5046078 -1.3942538 +GGCTT 0.16004454 1.4174359 -0.6683008 -0.25758398 0.4887068 -0.17173281 -0.15774591 -0.25164145 0.02765966 -0.35547715 1.0833213 0.23320049 +TACCT 1.1491829 1.1500132 -0.1778239 0.115824364 0.23457912 -0.74473345 -1.0741912 0.15199183 0.1864686 0.06947958 -0.5161009 0.03584499 +TACTG 0.5230958 1.091774 0.028523961 0.72306 0.30689687 -0.49656227 -0.81289196 0.47738168 -0.43900496 -0.47700992 0.16750993 0.029803695 +GTTAT 1.4737948 0.20147477 -0.86712235 0.34453338 0.012010005 -0.42409864 -0.6690808 0.4075097 -0.1279294 -0.7657268 0.7542473 0.10792502 +GCATA 1.4119425 0.7399882 0.064190015 0.48321202 0.3226025 0.70472205 -0.14934422 -0.17044014 -0.27733642 -0.281607 0.2629541 -0.654385 +AGGTA 0.7454411 0.29055026 0.18893561 0.02349732 0.11367841 0.2025168 -0.5805486 0.065898605 -0.3354493 -1.3724803 0.8507788 -0.57712877 +TGTAC 0.9731478 0.6839304 -0.072233625 1.0339955 0.087211534 -0.93881667 -0.56900257 0.5471337 -0.48354167 -0.6037836 0.3169485 -0.47371918 +GTATA 1.6326604 0.028103443 -0.31614694 0.74858373 -0.025756339 0.067165025 -0.83601993 0.3503407 -0.24216895 -0.9804579 0.6373332 -0.18195051 +CAACC 0.64633447 1.01613 0.49301264 -0.38691944 -0.53444076 -0.496169 -0.7623113 -0.7858153 -0.36155695 0.116802864 -0.61740655 -1.0266271 +GGGAT 0.43379578 0.905991 -0.4039244 0.42071992 -0.7939489 0.7641882 -0.38552955 -0.175132 -0.042859994 -0.79022247 0.73334104 0.09182612 +TTAGG 0.74241036 0.6568012 -0.5420015 -0.2638838 0.11602373 0.03610576 -0.1634482 0.13980842 -0.12513404 -1.2089242 0.9226085 0.47475776 +TCGT 0.36685878 0.5533999 -0.44275227 -0.012192241 -0.20758307 -0.6604694 -0.6800992 -0.23144001 0.07048609 0.058428284 1.0389785 -0.2684218 +TTAGC 1.0137914 0.723161 -0.55045605 -0.3277571 1.113802 -0.06567937 -0.2984643 -0.38948986 -0.15596718 -0.53220767 0.38143435 -0.0028562467 +CTATA 1.6036808 0.57745826 0.060173266 0.17538299 0.41024122 -0.17705365 -1.3335745 0.3670905 -0.07503592 -0.31123078 -0.10055797 0.2144059 +TAAGG 0.9024076 0.40405068 0.20044126 -0.06846089 -0.21970436 0.30018657 -0.4005713 -0.2233661 -0.09846756 -1.4732316 0.6168089 0.061918624 +GTCTA 0.7052221 0.30192992 0.13170661 0.11299436 0.09589244 -0.6371577 -1.2871336 0.12337646 0.24922979 -0.45632285 1.0407357 0.17325146 +GATCC 0.2736147 0.7515687 -0.371567 -0.026429148 -0.84602404 0.56007546 -1.1015024 -0.63936335 -0.05093739 0.2401961 0.24470542 0.027328357 +TGCTA 0.795132 0.84672165 -0.4088798 0.4448813 0.98440295 -0.06821492 -0.7621501 -0.054707363 0.019590028 -0.2514133 0.4699743 0.05332473 +GTACA 1.0893847 0.57911605 0.3908358 0.6841933 -0.20453067 -0.46319497 -0.07398234 0.4540846 -0.7949419 -0.7011317 0.5037566 -0.73211116 +GACCT -0.18075305 1.2320225 -0.09744 0.06806446 -0.2365223 -0.24391949 -1.0092943 -0.34743965 -0.3434643 -0.056536146 -0.089071 -0.1137206 +GCGT -0.0107808905 0.8090131 -0.1981749 0.22069913 0.08964951 -0.09695939 -0.44341952 -0.34162408 -0.19293623 -0.2923369 0.9646127 -0.7852134 +TTGCC 0.3115155 1.0778795 -1.1394994 0.4038368 0.28443518 -0.5132256 -0.4718551 -0.7446896 0.15928006 0.32744062 0.3045478 -0.5011342 +GGTTC 0.042388268 0.6419607 -0.45998523 -0.36513773 -0.37693703 -0.4482344 -0.33622727 -0.3004795 0.13042949 -0.30198434 1.5322413 -0.39490074 +TATAG 1.5104394 0.37826735 -0.39894247 0.2811946 0.30585644 0.5187624 -0.7846697 0.17887777 -0.39209813 -1.0463817 0.539785 0.3763119 +CAGTA 1.0103363 0.0593147 0.235396 -0.006932683 0.20653273 -0.26413137 -0.45537066 0.09487792 -0.80320036 -0.59040236 0.57391 -0.959893 +GGGCT -0.30369297 1.7302653 -0.06730487 -0.13938743 -0.064259425 0.35690647 -0.48954347 -0.24610476 0.046956357 -0.5030135 1.2927015 -0.26822713 +CGGC -0.126144 1.5836447 0.044724014 -0.029963845 -0.062223807 0.2792101 -0.49070007 -0.48621303 5.235053e-05 -0.14569168 0.68002725 -0.85222995 +GGATC 0.3360864 0.7073001 -0.16186014 0.042459518 -0.9949873 0.64005435 -0.84005576 -0.24728891 0.00944041 -0.21175665 0.96866184 0.11037537 +GTGGT 0.20876144 0.60571957 -0.6849223 1.0439944 -0.36587894 -0.375071 -0.5245712 -0.014860748 -0.22652978 -1.073331 1.4148846 -0.6799149 +CCCCC 0.29554686 1.4243042 -0.18875147 -0.23867454 -0.40436432 -0.35802963 -1.2598313 -1.0487484 0.21983716 0.513619 -0.30920413 -1.0329083 +CTTAG 0.5422871 0.8614334 -0.34062386 -0.62251645 0.69854814 -0.30740064 -0.63390154 -0.029375052 -0.21172446 -0.49381343 0.36306018 0.28371772 +AGGGT 0.012537196 0.7787194 -0.14954856 0.053841293 -0.5285405 0.16926226 -0.1306176 -0.3760168 -0.2956458 -1.3703395 1.236844 -0.56399584 +GTCAC 0.32031226 0.61828434 0.07678686 0.296306 -0.75742793 -1.0246444 -0.42463887 0.11960116 -0.56998706 0.069565564 0.89397883 -0.97620815 +ATACC 1.2104425 0.8457985 0.092767365 0.25603625 -0.3004846 -0.038490117 -1.0876067 -0.031615727 -0.0850742 0.028025 -0.6693496 -0.49478018 +GCCAT 0.80970335 0.9009317 -0.6187137 0.42663646 -0.17593372 0.33552837 -0.58284354 -0.5557119 0.20014068 0.36088845 0.0412828 -0.8564476 +GCAAC 0.50753176 1.2949493 0.5380759 0.013630348 0.11408601 -0.50141144 -0.07256571 -0.6602177 -0.5327874 -0.29667455 -0.233528 -0.84040225 +ATGAC 0.6877864 0.9150968 -0.10356648 0.6087179 -0.7407066 -0.15263502 -0.707011 -0.20039748 -0.77510667 -0.16076775 -0.48412144 0.06310425 +ACGC 0.10658698 1.3853655 0.29253373 -0.08370545 -0.15186654 -0.102098845 -0.4130914 -0.4603193 -0.4602491 0.10145648 0.05906898 -0.86292124 +GCGG -0.15926938 1.4144114 -0.11508377 0.26375282 -0.19540368 0.4017582 -0.2829009 -0.5828886 -0.04882316 -0.6155763 0.87525004 -0.8304515 +CTATC 1.1728209 0.6829988 0.061996844 -0.30643675 -0.02350476 -0.27875572 -1.5570831 0.06019606 0.32345188 0.37508157 0.3341054 0.13987973 +GATCT 0.53882456 0.60645676 -0.18560556 -0.11558351 -0.5375962 0.21411037 -1.190984 -0.23334455 -0.15927036 0.15921405 0.8050997 0.7935916 +AGGGC -0.15908584 1.3653283 -0.029583704 -0.26408496 -0.088418104 0.5539255 -0.2606464 -0.4978372 -0.3532069 -0.6623605 0.9024997 -0.76730305 +CCTTA 0.9106829 1.0469525 -0.42690963 -0.47276822 0.34376246 -0.5196062 -1.0216571 0.018313168 0.37775835 -0.13529786 -0.27521333 0.023090728 +GTAGT 0.70055014 0.058956835 -0.43398523 0.3980934 0.3202466 -0.24524544 -0.59416914 -0.0014417336 -0.340357 -1.0593649 1.2239442 -0.44729194 +CCAAC 0.68432474 1.2437824 0.42024827 -0.34937787 -0.4699539 -0.6129155 -0.644875 -0.6835193 -0.10090638 0.0196896 -0.6019389 -0.9613783 +TGCCC 0.07308678 1.4629638 -0.75557715 0.3605979 0.18550445 -0.12255193 -1.0442524 -0.7887745 0.30906403 0.44618112 0.3210463 -0.93296874 +GCTAT 1.062625 0.90431404 -0.32659298 0.38969636 0.8150458 0.18155874 -0.79293066 0.106753044 0.23751 -0.3048386 0.50659585 0.096073106 +CCTAA 1.044769 0.4658077 0.11660557 -0.28136632 0.19598055 -0.36502978 -1.2965003 -0.5503447 0.44579354 -0.33203506 -0.3812996 -0.23060541 +CCCCT 0.1328326 1.3898025 -0.4008697 -0.21694955 -0.05260761 -0.31544352 -1.3370742 -0.8331707 0.4180191 0.53330964 0.081769936 -0.6488096 +GGGAC -0.26700622 1.5678757 0.3553567 0.21839234 -0.7607629 0.11210967 -0.36199582 -0.17110486 -0.5663749 -0.7797549 0.58198637 -0.1906355 +TAGTC 0.88224185 0.083070666 0.004973998 -0.27364916 0.081388995 -0.35359293 -0.8094836 -0.039738607 0.032462306 -0.358591 0.8671217 -0.429923 +GAGTA 0.688793 0.17863481 -0.03805829 0.2137351 -0.0021773784 0.29599735 -0.5671651 -0.14909476 -0.86477405 -1.3806328 0.7927012 -0.16221167 +GACTA 0.59851295 0.86894983 0.49340037 -0.07945895 -0.08218628 -0.09656 -0.85855246 -0.09266873 -0.60486895 -0.89992577 0.027942112 0.44080594 +GTGCC -0.06942545 0.91012317 -0.6545918 0.62892455 0.14691332 -0.32151088 -0.8153911 -0.5994958 0.00925058 -0.048892286 0.6764282 -1.1404271 +GTATG 0.9041428 0.2191152 -0.6870188 0.92175996 -0.13189727 0.0988189 -0.72085965 0.1337692 -0.1339869 -0.9431929 0.7330653 -0.3533807 +CAAGC 0.68630916 0.8933349 0.44926926 -0.7181856 0.18178608 0.09565693 -0.32909334 -0.92789096 -0.64250416 -0.1260813 0.026927512 -1.0123113 +CTAGT 0.54850835 0.36699128 -0.149904 -0.1835484 0.6414562 -0.4091823 -0.82971954 -0.0042815297 -0.028893316 -0.56949383 0.8821833 -0.30366117 +TACTC 0.91211635 0.97876203 0.37608254 -0.40078217 0.14828981 -0.79330593 -1.0118281 0.18864653 -0.13881285 0.15930927 0.31373286 0.1561977 +GATAC 0.9993482 0.9050319 0.31201398 0.2518285 -0.37794828 0.40494415 -0.72897816 0.015189533 -0.62359864 -0.3404072 -0.2046735 0.27512857 +GTTGT 0.57277596 0.27706763 -1.0170538 0.76822203 0.13766016 -0.90319055 -0.3455022 -0.23852465 -0.37517968 -0.7651193 1.2477342 -0.29323342 +CCTAG 0.27555892 0.8768625 0.07259271 -0.29053208 0.40104833 0.38001993 -1.2493439 -0.2628893 0.14184657 -0.35694712 0.29166305 -0.49663538 +CGCA 0.4226558 0.98886424 0.028267534 0.033143446 -0.07735699 0.16916624 -0.088264726 -0.5042351 -0.51062304 -0.041464046 0.32657278 -0.8707887 +ACTCG 0.14126953 1.274143 0.23248075 -0.0805559 -0.6389474 -0.08942545 -0.96509314 -0.55573016 -0.5160393 -0.4102234 0.33908534 0.09209346 +TGCG -0.012672903 1.0527102 -0.46942315 0.53187585 0.17460826 -0.010615041 -0.41167203 -0.2670032 -0.2665143 -0.10593525 0.7629214 -0.60885334 +CCTAT 0.83870184 0.8673139 -0.39297694 0.20160368 0.23876074 -0.070089296 -1.1819733 0.005129939 0.42539927 -0.026401674 -0.04254433 -0.11703354 +GGGGG -0.18769817 1.4319478 -0.16943385 0.19230716 -0.7022285 0.3399529 -0.2879877 -0.47305346 -0.31425312 -1.2127771 1.408763 -0.5269025 +CACTA 1.1046301 0.83387834 0.5545777 -0.181824 0.08145753 -0.57002705 -0.79730004 0.20190895 -0.32891983 -0.09809885 -0.22803031 -0.28883356 +GACG -0.09879821 1.2258575 0.13751464 0.07650093 -0.43936506 0.034739804 -0.35858637 -0.40546048 -0.48579827 -0.4717495 0.37893912 -0.31774876 +GGTAA 0.86002856 0.19946593 0.04346441 0.41886786 -0.25404304 0.023066333 -0.3444819 -0.036309227 -0.23466222 -1.6535656 0.6917023 -0.44255978 +TATGC 1.1942612 0.67821234 -0.49930274 0.7196028 0.36980996 0.29792324 -0.62967694 -0.02003228 -0.04272096 -0.08032036 0.14171334 -0.551898 +GGTAG 0.33528697 0.64049727 -0.15126447 0.25304875 0.089625224 0.40634578 -0.49523476 0.02719057 -0.20520607 -1.3670335 1.2248696 -0.3039766 +GCTAA 0.8747223 0.6071575 0.36026362 -0.13378254 0.71586204 0.009817984 -0.72548795 -0.43122315 -0.031241704 -0.70641476 0.095437594 -0.025912287 +GCATC 0.74238086 0.86060077 0.045527138 0.028275663 -0.24786489 0.3324946 -0.56566644 -0.4186409 -0.0077580283 0.472313 0.6381975 -0.5658862 +GTCAA 0.65650535 -0.11177046 0.06327056 -0.4301487 -0.72643954 -0.7093696 -0.4023398 -0.66157913 -0.27568167 -0.49188703 0.778148 -0.740305 +GGTCA 0.29040134 0.5038381 -0.009586123 -0.30126482 -0.8048952 -0.28404135 -0.156866 -0.21199717 -0.35762838 -0.43843743 1.4596684 -0.7190286 +GCCTA 0.40388265 0.8845152 0.03062896 0.041711815 0.5668292 0.17424737 -1.0206547 -0.31276163 0.303273 -0.21957958 0.18685706 -0.44238868 +GTTAC 1.0004714 0.6610868 -0.3624956 0.34985057 0.13386373 -1.0587076 -0.3491087 0.40967315 -0.4056331 -0.52892905 0.39531365 -0.13496214 +GTAAC 1.0594449 0.3166426 0.26741233 0.2336892 0.18651508 -0.7060383 -0.526823 0.00029400951 -0.689256 -1.0175596 0.09079004 -0.49355605 +GATGC 0.3139091 0.9211395 -0.51648444 0.5026795 0.17578709 0.76311374 -0.67599344 -0.5436309 -0.346864 -0.09541831 0.42449754 -0.3942588 +TAGGC 0.49575895 0.84558487 0.1523449 -0.002480785 0.27537984 0.48273098 -0.3993223 -0.11062768 -0.15809356 -0.5576769 0.6039759 -0.40018317 +ACCTA 0.8730156 0.93749815 0.45589718 -0.022409229 0.20966893 -0.29758248 -1.0752423 -0.17559339 -0.046631895 -0.28836727 -0.52391493 -0.23800917 +GCGC 0.010462266 1.2649106 -0.18195863 0.0058193156 0.18131633 0.057032634 -0.41918617 -0.5455449 -0.041870065 -0.045178726 0.51565176 -0.7955666 +TGATC 0.5461614 0.46033296 -0.6076023 0.25802925 -0.57816535 0.09194742 -1.0603722 -0.42026398 -0.1590783 0.28896925 0.5254722 0.26560667 +TAGGT 0.8364981 0.39783958 -0.29151857 0.25479117 -0.16399257 0.13040832 -0.3399885 0.07020979 -0.027711779 -0.89513874 1.121472 -0.05433838 +CTTAC 1.020431 1.2440525 -0.018119983 -0.20965043 0.24343082 -1.0849755 -0.7459682 0.31072766 -0.31094524 0.024444634 -0.15889953 0.09096418 +CGATT 0.9096232 0.8161738 -0.74969244 -0.21732874 -0.48333392 -0.19643825 -0.7209543 -0.6954329 -0.019081818 0.15880427 0.5161336 0.26039 +TCGAT 0.83803916 0.8529641 -0.6149795 -0.1501121 -0.4897315 -0.06505232 -0.74185944 -0.5625836 0.026591545 0.3489718 0.52746886 0.18023238 +GTAGG 0.3492093 0.540323 0.046436973 0.22536714 -0.114146724 0.34765425 -0.47869563 -0.04726515 -0.26547214 -1.3526853 1.1200832 -0.40186113 +TAAGC 1.0092486 0.64590496 0.17440352 -0.43003494 0.7208475 0.27527085 -0.5066821 -0.5589759 -0.13557482 -0.66351295 0.13595738 -0.2782534 +GGCAC 0.13649122 1.5387238 0.2929834 0.14949024 -0.119971775 -0.1359269 0.049915593 -0.1266411 -0.5122098 -0.33186966 0.48393703 -0.9842688 +AGGTC 0.103427455 0.57090455 0.1422968 -0.40290684 -0.48308283 -0.013001164 -0.5319906 -0.18748747 -0.14151335 -0.5859242 1.0958449 -0.3648886 +GGCTA 0.41942042 1.2330965 0.23831064 0.27050632 0.42231438 0.26101577 -0.60698414 0.08398811 0.09421146 -0.5472593 0.61808753 -0.1398289 +GGGGC -0.21518677 1.5396835 -0.089356005 0.20513645 -0.36656952 0.37834612 -0.27675748 -0.42298606 -0.12509863 -0.69507015 1.2028924 -0.70620584 +ACTAC 0.93739516 1.2211154 0.7589893 0.060118504 0.11567583 -0.73566425 -0.8133043 0.13017078 -0.4627641 -0.27772215 -0.29892078 0.03512381 +GTAAG 0.7632816 0.054472554 0.019333228 0.19881605 0.026451163 -0.07484319 -0.52819604 -0.329649 -0.39311022 -1.3805922 0.74431896 -0.21155557 +GCTTA 0.8135513 0.9897191 -0.4919023 0.05987956 0.69268364 -0.27734596 -0.40536883 -0.0013101192 0.023574349 -0.55959135 0.31462994 0.11281406 +GGTAT 1.0542983 0.34773642 -0.55510956 0.61307114 -0.32322702 0.12887001 -0.65130544 0.3876249 0.18803369 -0.91921306 0.89264834 -0.1223802 +ATAGC 1.1444645 0.59545815 -0.046008594 -0.13436462 0.46205357 0.7380048 -0.7010482 -0.26965436 -0.3457817 -0.45940125 0.1609967 -0.40295702 +GTAGC 0.40091372 0.64926404 -0.14082272 0.20675808 0.755285 0.24402873 -0.6571141 -0.19813399 -0.19836232 -0.66532296 0.8399946 -0.64876735 +GTCCC 0.07912737 0.7593852 -0.3521624 0.08330962 -0.55534446 -0.404417 -1.1266679 -0.63873 0.4146455 0.1494382 0.47900382 -0.8942763 +CTAAC 0.903847 0.9416458 0.49439293 -0.20123416 0.24844322 -0.83844787 -0.80580133 -0.07235298 -0.33576015 -0.32449397 -0.3406293 -0.14985351 +TAGGG 0.39416102 0.83917886 0.13233957 0.121874996 -0.25044516 0.333117 -0.23117958 -0.08167339 -0.06900123 -1.2110654 1.0913628 -0.104350984 +CTACC 0.8895147 1.0507983 0.16781528 -0.072286166 0.2020098 -0.54355884 -1.2823001 -0.08800897 0.19189833 0.25297835 -0.27615383 -0.42351472 +CTAGG 0.268271 0.82693243 0.21443646 -0.23371132 0.20179968 0.22375643 -0.7532944 0.031980325 -0.03728907 -0.6968872 0.6941918 -0.09750411 +GGACC -0.12837471 1.2670959 0.16231407 0.18611425 -0.7370306 0.20160025 -0.68161815 -0.4170165 -0.33860898 -0.2773663 0.09357287 -0.57560855 +GGGCC -0.28869885 1.6353495 0.0042024357 0.03114386 -0.34493384 0.4298926 -0.54926366 -0.61728394 0.014496594 -0.35485128 0.73261434 -1.0583565 +TCGC 0.2425724 1.0364976 -0.17978688 -0.10297659 0.0955845 -0.03084469 -0.58368284 -0.43711758 0.01797484 0.18684238 0.5748702 -0.40440744 +GTTGC 0.2777823 0.68758035 -0.9061888 0.43470287 0.5188644 -0.38955984 -0.24483106 -0.47899765 -0.32130647 -0.22325218 1.0781399 -0.56310993 +AAACG 0.3958219 0.7520728 0.33364844 -0.097253196 -0.6094791 -0.11681387 -0.4141505 -0.6961431 -0.49217546 -1.0141466 -0.079227366 -0.3113303 +CCTAC 0.7336398 1.2706084 0.22620039 -0.036059078 0.20118381 -0.41277266 -1.0830414 -0.032105763 0.1857615 0.25107086 -0.21354519 -0.55790156 +GCACC 0.2127362 1.4101659 0.27689874 0.039141428 -0.06726149 -0.21030302 -0.5554322 -0.5157973 -0.24116057 0.11871859 0.008127748 -1.2169647 +GGGTC -0.19484481 0.9244795 -0.33765393 0.034272905 -0.6904056 -0.25362238 -0.5262447 -0.21893258 0.065350786 -0.4135242 1.457102 -0.44585302 +ACGGA 0.18290626 0.9453782 0.06570417 -0.03581645 -0.59119606 0.15133518 -0.39122 -0.50729525 -0.5639499 -0.7665928 0.1600489 -0.31685495 +CGGT 0.029611824 0.88539726 -0.3241606 0.28048104 -0.20139116 -0.14277051 -0.36715835 -0.19597407 -0.07111741 -0.38502073 0.9067678 -0.5909115 +TTACC 0.99831784 0.95563644 -0.34927905 0.016154565 0.024085363 -0.81413496 -0.75689745 0.0050527616 0.07417733 0.1032945 -0.3007445 -0.18637918 +GGTTG -0.0030703887 0.7058906 -0.78569245 0.40453032 -0.082687296 -0.18577273 -0.16143431 -0.39933744 -0.39169014 -0.8721938 1.3862647 -0.21747315 +CGCG -0.120090656 1.3865792 -0.08439416 0.15706204 -0.24704123 0.10401774 -0.5353447 -0.4300834 -0.0681986 -0.22460154 0.5576241 -0.77816707 +GGCCC -0.13910337 1.4135159 -0.19157393 0.07747773 -0.34699586 0.20415749 -0.8477058 -0.6746729 0.13517056 0.020584041 0.37656748 -0.9700937 +GGTGC -0.08289015 1.0664756 -0.34585586 0.53938824 -0.09038213 0.18830398 -0.30876604 -0.4020152 -0.15267539 -0.6008058 1.0538938 -0.96602225 +TAGCC 0.53546745 0.9706745 -0.18043388 -0.033118274 0.43301982 0.35236275 -0.8162604 -0.31909412 0.22735819 -0.13285698 0.08778694 -0.525195 +TCACG 0.34389415 1.0393319 0.2545091 -0.015324567 -0.36667475 -0.40828273 -0.38687018 -0.21183632 -0.37003124 0.22372028 0.7107754 -0.460729 +GTTAG 0.68983805 0.2383224 -0.5850049 0.0031137448 0.3682163 -0.30294836 -0.41285428 -0.16493636 -0.35337368 -1.0621717 0.8424043 -0.15534177 +CGGAA 0.29870617 0.7846592 0.0030030352 0.022423137 -0.6753961 0.121672936 -0.44537824 -0.7414787 -0.3137332 -0.87806666 0.15002513 -0.3076389 +AACGG 0.22361958 0.9606868 0.14354092 -0.011868511 -0.58863336 0.035243217 -0.38661316 -0.49562758 -0.48849598 -0.8407934 0.14190938 -0.2728082 +GCCCC -0.07988319 1.4706142 -0.13567832 0.0981281 -0.12902912 0.14198856 -1.1482011 -0.89511436 0.20581287 0.26696938 0.039426014 -1.1492351 +TCGAG 0.3865939 0.56679434 -0.305758 -0.41503063 -0.35128888 0.029460358 -0.6950563 -0.6450556 -0.41596362 -0.011658062 0.6295272 -0.10367529 +GGTCC -0.13363557 0.89798045 -0.4962171 0.08491897 -0.4715889 -0.34817523 -0.7153877 -0.4261458 0.24635293 -0.078486994 1.0241759 -0.54853 +GAACG 0.23438318 0.9190483 0.113985054 -0.043009084 -0.52500814 0.12033372 -0.36506715 -0.62425566 -0.5667687 -0.8491545 0.058611367 -0.2238268 +TAACC 1.1800476 0.72401994 0.2242581 -0.0008925176 -0.12501371 -0.423831 -0.87369263 -0.29835293 -0.010837563 -0.37526488 -0.774206 -0.3825703 +AGTAC 0.7809462 0.41181067 0.3122642 0.09209472 0.08586088 -0.4480971 -0.45754 0.115727924 -0.5317402 -0.79732645 0.26190773 -0.4908088 +CCCTA 0.74029356 1.039398 0.115360446 -0.12543422 0.24212858 -0.19493152 -1.1272544 -0.45428276 0.41063473 0.072475314 -0.30766463 -0.36266732 +GGGTA 0.46724948 0.64342993 -0.06773329 0.5239515 -0.38431093 0.22773074 -0.37852672 0.13574834 -0.117708035 -1.2401901 1.0411265 -0.38250983 +GTATC 0.89438266 0.20322788 -0.25105873 0.38710168 -0.3343605 -0.06393068 -0.9564586 0.18418884 -0.039474197 -0.20454799 0.69621 -0.20962209 +TACCC 0.94486344 0.9778786 0.1022267 0.25655627 -0.20910086 -0.3207854 -1.0784467 -0.16881382 0.1650614 0.09554679 -0.47902063 -0.52857596 +CGAAA 0.4555249 0.6057529 0.19324036 -0.31369078 -0.52708703 0.043598954 -0.5486095 -0.8183925 -0.33264893 -0.69895816 -0.0325264 -0.27916285 +CTAGC 0.5617446 0.91849065 0.14254306 -0.4093497 0.8419071 0.050564967 -0.8731751 -0.28892788 -0.07613762 -0.16051143 0.28774607 -0.37023592 +GGTTA 0.7320432 0.52807057 -0.5182836 0.1083341 -0.0636372 -0.29818135 -0.26304707 0.2159096 -0.13552903 -0.9849167 0.81559795 0.036998257 +GTACT 0.6476837 0.65500927 0.0037627253 0.38930228 0.06455123 -0.73051697 -0.6773097 0.23497528 -0.2526001 -0.4037939 0.42557046 -0.16762798 +TACG 0.70711166 0.6748418 0.057123005 0.32454854 -0.15203322 -0.18872395 -0.4056012 -0.052015096 -0.2738119 -0.35933274 0.15750603 -0.1225925 +GTCG 0.1263909 0.68832546 -0.232377 0.0066187843 -0.38336962 -0.020210454 -0.59409446 -0.41655245 -0.16390976 -0.39964825 0.7731964 -0.3885041 +CACGT 0.3373553 0.92227125 0.028282693 0.16448343 -0.17718033 -0.5849063 -0.3453658 -0.12329522 -0.44927275 -0.031341325 0.43529242 -0.7862032 +CCCCG 0.014376082 1.3506174 -0.24586335 -0.113504544 -0.36791134 -0.12710623 -1.0346653 -0.78671205 0.12380496 0.29574937 0.11814047 -0.876499 +CGAGT 0.31946838 0.47634476 -0.28887472 -0.20834161 -0.29406124 -0.098066196 -0.7237202 -0.5640505 -0.32634372 -0.2618302 0.7515906 -0.3403398 +CGTA 0.635896 0.55877453 0.049541026 0.17386417 -0.08757052 -0.25842065 -0.5114364 0.040117025 -0.2163675 -0.5118825 0.24135524 -0.35689288 +GCTAC 0.72983766 1.139734 0.34260884 -0.01940298 0.45939794 -0.1649376 -0.71605223 -0.123232685 -0.24699791 -0.09514385 0.08162722 -0.27194595 +TCCGT 0.33023885 0.735041 -0.37553966 -0.0962422 -0.21830805 -0.5185871 -0.6325672 -0.5334274 0.08535049 0.16034009 0.6377196 -0.3808112 +GCTAG 0.3607732 0.9009324 0.032503817 -0.16116239 0.7567992 0.5386529 -0.73204964 -0.41500083 -0.266768 -0.6842694 0.7194804 -0.07263182 +TTCCG 0.37577206 0.8603126 -0.5525608 -0.23194875 -0.28938982 -0.47054625 -0.52593714 -0.55722624 0.25594327 0.14700356 0.59401995 -0.16867529 +CGGAG -0.1373993 1.0940216 0.0070511973 -0.08523675 -0.35202405 0.3095308 -0.4115586 -0.4365343 -0.5345023 -0.6821851 0.57974 -0.4291341 +AACGA 0.42595246 0.821637 0.13072217 -0.13852292 -0.5543397 0.03916752 -0.46365884 -0.67426413 -0.5699321 -0.720171 -0.1641897 -0.12771483 +CGTGG -0.14864653 1.058841 -0.07043324 0.38537234 -0.44234386 -0.0466462 -0.42641512 -0.34684512 -0.15111491 -0.5712359 0.6495179 -0.62338895 +GTACC 0.46174946 0.63353187 0.083760224 0.33307815 -0.08336044 -0.27666742 -0.72000414 -0.10502889 -0.14709102 -0.39086983 0.12374936 -0.6673554 +TTTCG 0.6198789 0.6346989 -0.5337181 -0.24692623 -0.049988925 -0.49605104 -0.45480752 -0.4719735 -0.03766597 -0.056261737 0.45910206 0.12946115 +CCTCG -0.041256085 1.0857356 -0.11668938 -0.24982208 -0.16969094 -0.0091830455 -0.930327 -0.54349786 0.090237826 0.05471672 0.484103 -0.35743734 +CGTGA -0.032423154 0.8735947 -0.10772515 0.2590844 -0.193632 -0.012646083 -0.50475264 -0.5088075 -0.67470264 -0.32901886 0.38408068 -0.49149013 +ACGAA 0.51536804 0.6894799 0.21687579 -0.17528895 -0.5293523 -0.061065976 -0.45576623 -0.5477137 -0.58297014 -0.7497299 -0.1698339 -0.17472154 +CACGC 0.33315697 1.2195797 0.25934708 -0.15452844 -0.22647227 -0.16912764 -0.3512271 -0.4063607 -0.44940063 0.118369654 0.18792798 -0.82031924 +ACGTG 0.16481796 0.8449647 -0.033617854 0.36595476 -0.3088359 -0.47028273 -0.35828966 -0.19440387 -0.4761169 -0.24152154 0.5165422 -0.63000524 +CCCGT 0.06858488 0.9838131 -0.1810561 0.026783023 -0.3706832 -0.40776893 -0.87631845 -0.5969647 0.09518663 0.118415356 0.27935567 -0.5521294 +CGACC 0.042838596 1.2989011 0.080026425 -0.044826053 -0.34259373 -0.1668623 -0.8014356 -0.5162238 -0.24458271 0.016520182 -0.1438639 -0.4946042 +TTCGT 0.45412654 0.6544824 -0.62848216 -0.018539153 -0.10840092 -0.49177173 -0.4339255 -0.32670817 0.10142654 -0.10111593 0.7712162 -0.14623554 +CCGCC 0.018972483 1.3780836 -0.32642412 -0.0431301 -0.1352477 -0.07632287 -1.0273969 -0.7748952 0.1853338 0.32917163 0.1745035 -0.8856859 +CCCGC 0.061807852 1.4061787 -0.13783173 -0.149324 -0.088577874 -0.13799568 -1.0390173 -0.7187859 0.13029319 0.25916958 -0.012385637 -0.87298054 +CACCG 0.15609962 1.0712967 0.09772952 -0.04818901 -0.37364432 -0.3778208 -0.5453529 -0.37553564 -0.2174592 0.079879545 0.09808895 -0.79277253 +GGCCG -0.040489353 1.2491442 0.03480641 -0.07658491 -0.20465744 0.3229482 -0.5601397 -0.46556935 -0.15807392 -0.28984475 0.6575869 -0.787523 +GGTAC 0.50564134 0.74790776 0.07338901 0.39372984 -0.19888854 -0.18211791 -0.31426242 0.15375829 -0.2178253 -0.6877786 0.4819161 -0.5262714 +CCGGG -0.13350612 1.1414152 -0.10474122 0.022025382 -0.43410656 0.14374541 -0.46772492 -0.41485056 -0.036702096 -0.31660935 0.7560584 -0.5968777 +CGTTT 0.54711825 0.5508986 -0.5924657 -0.09196382 -0.024298072 -0.64595735 -0.3219838 -0.33936355 -0.074929774 -0.09985882 0.6861567 -0.091385454 +CGTCT 0.16362675 0.7074467 -0.11767736 -0.064221464 -0.13946462 -0.5267539 -0.8594021 -0.17798606 -0.02143938 0.034014877 0.90664184 -0.20548335 +CGCCT 0.055848237 1.2762213 -0.25799772 0.007746617 0.044011503 -0.16119425 -0.95411366 -0.5308283 0.14469543 0.18583004 0.33269307 -0.6046503 +CCGTT 0.3053842 0.67976475 -0.47555074 -0.11633311 -0.21982223 -0.43374872 -0.5725757 -0.4177218 0.0029574365 0.08821878 0.50090957 -0.2876794 +ACACG 0.58636636 1.0654742 0.41719672 0.0033713346 -0.37962306 -0.34764984 -0.18192933 -0.25372148 -0.6027799 -0.21550839 0.035698485 -0.5154584 +CCACG 0.2441814 1.1148714 0.15287602 -0.07271372 -0.37987742 -0.22841434 -0.4537721 -0.47467718 -0.2959191 0.010314675 0.042175263 -0.77041274 +CCGTC 0.21518588 0.74167836 -0.06881476 -0.16926211 -0.33250144 -0.6005379 -0.9140563 -0.4496895 0.0758 0.21882269 0.46098354 -0.57652766 +CAGCG 0.13189968 0.96258724 0.09969733 -0.036250114 0.046435677 0.11257123 -0.35144937 -0.5216344 -0.49029085 -0.13785347 0.6213111 -0.98705137 +CCGTG -0.05177202 0.9347971 -0.2087438 0.27417642 -0.35257444 -0.16892804 -0.5844108 -0.4740783 -0.19662453 -0.19722039 0.38522968 -0.61712193 +CGACT 0.060640365 1.1401888 -0.0023345028 -0.14074846 -0.041595656 -0.4317638 -0.59160376 -0.40383643 -0.36873162 -0.003384242 0.31311384 -0.12671882 +CTTCG 0.1973574 0.97718215 -0.19823882 -0.33151534 -0.033202983 -0.33930135 -0.6133354 -0.41305032 0.0022998014 0.040362816 0.34501976 -0.23917285 +CGAGA 0.20383494 0.77596694 -0.0054294732 -0.22495387 -0.32641953 0.27012682 -0.628658 -0.455786 -0.56759375 -0.34076074 0.22081366 0.08264476 +GCCGA -0.044032577 0.9995096 0.0124618225 -0.106700756 -0.07000842 0.29587725 -0.59574854 -0.7351063 -0.3671478 -0.30073154 0.25501308 -0.49992886 +CACGA 0.34420615 0.9214382 0.13636395 -0.01343422 -0.35627455 -0.13100708 -0.3246873 -0.36396486 -0.51082 -0.25904712 0.053667657 -0.38502625 +CCGAG -0.0051012365 0.82185477 -0.13803658 -0.11576451 -0.26817214 0.19107679 -0.61950296 -0.5523114 -0.34158793 -0.2405367 0.31009609 -0.42095828 +CGCTT 0.20556194 0.92236215 -0.35461804 -0.059036873 0.16027084 -0.27386996 -0.4652444 -0.38698974 -0.087366514 -0.12760162 0.51239914 -0.19382423 +CGGAT 0.40038797 0.65802985 -0.24045418 0.1615206 -0.4667777 0.23186609 -0.45450786 -0.3149557 -0.25439453 -0.40290973 0.3465264 -0.1290558 +CTCGC 0.12452709 1.1493832 -0.16493039 -0.21865842 0.122600645 -0.17201379 -0.7402998 -0.3850866 -0.056309767 0.0714811 0.6638289 -0.33247522 +AACCG 0.2813032 0.78739667 0.13209927 0.0139407655 -0.39816296 -0.104789644 -0.48833647 -0.4235797 -0.36755174 -0.52996564 -0.052777372 -0.38421643 +ACGTT 0.606152 0.58161974 -0.2911759 0.044442385 -0.07353156 -0.58887434 -0.26867867 -0.23510212 -0.2584672 -0.09631422 0.39124614 -0.13161907 +AGGCG 0.022291156 0.9676935 0.032521702 -0.02200825 -0.18133506 0.35288936 -0.31593588 -0.5714349 -0.4102006 -0.5486041 0.628946 -0.5625311 +TCCGG -0.032258138 0.85045785 -0.26770294 -0.060346786 -0.31571478 -0.04841915 -0.5022827 -0.5056682 0.049635977 -0.19037895 0.6575917 -0.38051358 +TCGTT 0.5432423 0.5596354 -0.46551695 -0.124478325 -0.10398578 -0.5442628 -0.46990144 -0.26481906 -0.015938397 -0.027982064 0.6628418 -0.10277831 +GCGTG 0.088798665 0.8660394 -0.1874286 0.25562292 -0.2120065 -0.02127522 -0.3921871 -0.33234707 -0.17957436 -0.37137875 0.7539165 -0.6267647 +TGCCG 0.025175987 0.979118 -0.39462847 0.24395199 0.10180099 0.022722175 -0.692077 -0.42645305 -0.025582673 -0.024309503 0.52800924 -0.58905035 +TCCCG 0.15340838 0.98157984 -0.20643288 -0.0959264 -0.29811224 -0.13126844 -0.8436611 -0.5494426 0.06431761 0.26529375 0.3498021 -0.4104523 +TCTCG 0.23316774 0.6589273 -0.056514207 -0.036050986 -0.26358494 -0.31340078 -0.71715707 -0.22879988 -0.05060255 -0.055365972 0.84431255 -0.16091277 +CACGG 0.2126744 0.93860686 0.10896535 -0.06215719 -0.35412458 0.0114734825 -0.31523788 -0.32794368 -0.34393296 -0.21453886 0.33426952 -0.5956706 +GGCGG -0.026014384 1.1156331 -0.06572813 0.12236935 -0.27312475 0.268023 -0.32809404 -0.36413956 -0.2526344 -0.5612712 0.7461963 -0.5087149 +CGGTG -0.05028357 0.78881586 -0.22986647 0.34315017 -0.29078186 0.01914059 -0.36601123 -0.38149112 -0.23068875 -0.5414536 0.6937751 -0.5172968 +CGATG 0.24903543 0.7272612 -0.24123709 0.24514686 -0.10978275 0.18115534 -0.59905833 -0.4211162 -0.19089003 -0.15185219 0.46256933 -0.35260922 +TGGCG 0.06299468 0.9399174 -0.25751993 0.18616572 -0.10142693 0.04656436 -0.38264295 -0.26336697 -0.07006967 -0.40009046 0.56538767 -0.53424025 +CTCGG 0.018524596 1.0099626 0.011681416 -0.12320066 -0.20445408 -0.043755144 -0.6849725 -0.3155888 -0.03228631 -0.1180813 0.5839399 -0.28081933 +CGTTC 0.448029 0.6844741 -0.37618366 -0.093540795 -0.18466975 -0.4470496 -0.53690934 -0.37760657 -0.0061186124 0.07720519 0.56057847 -0.31224057 +CTCCG 0.028171236 1.0347267 -0.18243457 -0.16367553 -0.13246548 -0.20824261 -0.84614384 -0.4002352 -0.0062933313 0.086240165 0.42232272 -0.52841496 +AGCCG 0.074332155 0.8748116 -0.08198523 -0.10674079 0.09022351 0.2013368 -0.552081 -0.6119521 -0.39088714 -0.38266823 0.2787729 -0.44934428 +CATCG 0.54429287 0.7046652 -0.12148638 -0.06527802 -0.38418815 -0.013386342 -0.52981067 -0.20938271 -0.18669473 -0.0750157 0.34982812 -0.32710144 +GAGCG 0.08110694 0.78317916 -0.10200406 -0.02474319 -0.024655733 0.16868192 -0.36189485 -0.46402997 -0.45920557 -0.41413864 0.483668 -0.38382933 +GCGGC 0.16549282 1.0626673 -0.112632975 -0.0057942276 -0.04414117 0.155506 -0.3895667 -0.41166514 -0.1748738 -0.30720952 0.621844 -0.58748245 +TCGGC 0.15673086 1.019082 -0.119395606 -0.104625024 -0.04220427 -0.18619911 -0.43754944 -0.2879515 0.033853114 -0.06430356 0.561717 -0.36506104 +GTCGA 0.30371934 0.53609353 -0.15105544 -0.031463433 -0.27495018 -0.059931464 -0.6550593 -0.40198252 -0.33966246 -0.4102161 0.5206031 -0.2548953 +ACGGG 0.13317536 0.9686997 0.08316987 0.097059436 -0.4374119 0.018175658 -0.3280332 -0.29569215 -0.30850324 -0.5730483 0.42220992 -0.30338633 +CGCCA 0.2647727 0.94446146 -0.04170438 -0.0963534 -0.13621318 -0.05748257 -0.5596468 -0.5045443 -0.13591102 0.05623335 0.089967385 -0.75284624 +GCCGC 0.08112689 1.1364957 -0.14580292 0.08718877 -0.07448032 0.009445723 -0.64247614 -0.56353486 0.025773196 -0.061065834 0.42725757 -0.6971759 +ACCCG 0.08563804 1.069709 0.12180409 0.053323217 -0.37693548 -0.11296901 -0.68194354 -0.5007249 -0.1661935 -0.11844068 0.023490142 -0.49063113 +GCCGG -0.020447604 1.0525007 -0.10419079 0.16005896 -0.104139954 0.28878427 -0.4912312 -0.5006747 -0.18340765 -0.41968954 0.5960862 -0.7333703 +TCGCT 0.23207307 0.9998801 -0.21900098 -0.17715853 0.20768 -0.15203513 -0.704917 -0.34133732 -0.10857873 0.14309539 0.6013529 -0.24367069 +CGGGT 0.070832856 0.8476877 -0.15073459 0.18300258 -0.40972775 -0.0944926 -0.3540987 -0.3148417 -0.10219133 -0.4035038 0.73855036 -0.4455036 +ACCGT 0.3349076 0.746642 0.095407225 0.06901544 -0.44905415 -0.30475783 -0.49989584 -0.41574016 -0.2056432 -0.26988414 0.091617 -0.41287977 +AACGT 0.5463262 0.5356371 0.06432811 0.03671212 -0.23826052 -0.32018733 -0.30141556 -0.32403368 -0.38031968 -0.5525782 0.14305846 -0.3075986 +AAGCG 0.49241754 0.539886 0.14642116 -0.28250858 -0.079450496 0.08388537 -0.3329806 -0.57183206 -0.39967757 -0.52892584 0.26624292 -0.40264586 +CGCTC 0.20875874 0.8846037 -0.041765086 -0.14780647 -0.056937132 -0.19208878 -0.668631 -0.409638 -0.082002945 0.16206568 0.44430965 -0.37193704 +CGGCT 0.068316385 1.0323838 -0.17681234 -0.03608433 0.13989481 -0.09684374 -0.5427913 -0.30365098 -0.09839382 -0.1707881 0.76314074 -0.2867611 +CGTCA 0.5394731 0.5958743 -0.04959215 -0.28168473 -0.26321256 -0.487015 -0.4275629 -0.24959028 -0.18623465 0.06162203 0.6006903 -0.461376 +GCACG 0.2601336 0.97384304 0.16154654 0.094759434 -0.047452405 -0.009118985 -0.26436505 -0.4129918 -0.24886212 -0.30266845 0.42002168 -0.69807637 +CGCAG 0.18566166 0.96866894 0.14747174 -0.15242171 -0.10284263 0.056938794 -0.3296681 -0.4588753 -0.4707015 -0.17391647 0.46687493 -0.7166762 +AGTCG 0.15679176 0.59604186 -0.2087122 -0.008600584 -0.22388025 0.021707127 -0.5900691 -0.4567897 -0.32969794 -0.40344176 0.61123115 -0.35352415 +ACGCA 0.40447414 0.9905463 0.14841375 -0.10697902 -0.10570014 -0.10178333 -0.25340867 -0.42787373 -0.46999356 -0.14729556 0.08901095 -0.5920003 +CCCGG 0.05732372 1.1197591 -0.054789342 -0.008063937 -0.28268957 -0.0082494 -0.6750221 -0.43720296 0.028038746 0.011087519 0.3221896 -0.6542588 +GGCGA 0.10511653 0.9931611 0.01000314 0.06546841 -0.20156503 0.19385827 -0.37754625 -0.3630037 -0.25363976 -0.5000149 0.47895667 -0.2822508 +AGCGA 0.21827598 0.82624364 0.14116041 -0.12054323 -0.034500137 0.21577263 -0.444621 -0.5683244 -0.4776074 -0.35011968 0.25110066 -0.37725353 +CGGGG -0.073963456 1.0221995 -0.04317793 0.113398 -0.46270517 0.07866081 -0.3480572 -0.32680383 -0.19019292 -0.5429846 0.86724377 -0.39492542 +GGACG 0.14773478 0.85694474 -0.08350854 0.029112164 -0.43353558 0.050916277 -0.37839678 -0.33234277 -0.33728972 -0.36464116 0.42268136 -0.28690627 +TACGT 0.6753242 0.669721 -0.16665006 0.11082638 -0.0053961272 -0.34882435 -0.38826755 -0.08668681 -0.1911168 -0.29012004 0.22988917 -0.0931949 +TGACG 0.15629853 0.7664235 -0.18569393 0.1291729 -0.13616978 -0.21568698 -0.49022418 -0.37883502 -0.45945805 -0.26352575 0.2810209 -0.14458509 +CGAAC 0.38936126 0.7935817 0.15473367 -0.14010105 -0.3290525 -0.07667936 -0.41746548 -0.42138124 -0.47516793 -0.4078021 -0.0005625532 -0.20869043 +CGCAA 0.5223472 0.68226975 0.05541759 -0.13222112 -0.121944316 -0.14055564 -0.31550333 -0.5101437 -0.40516117 -0.22881773 0.048645563 -0.40689412 +GCGAT 0.4429539 0.5872452 -0.29137826 0.086909205 -0.15571423 0.07624704 -0.4709515 -0.4170799 -0.15890327 -0.1842168 0.31348893 -0.1172476 +TCGGG 0.08288179 0.9467887 -0.050511733 0.042354982 -0.28034514 -0.11944063 -0.50797 -0.27164596 -0.09948131 -0.228317 0.57433236 -0.24662517 +GGGCG -0.018260093 1.0498264 -0.10190584 0.17955782 -0.32469374 0.18600264 -0.30062807 -0.32687593 -0.17335737 -0.547337 0.78863573 -0.46312252 +ACCGA 0.29308507 0.80611765 0.028111339 -0.08115275 -0.3014391 -0.04032278 -0.5068411 -0.38599887 -0.3104199 -0.17299554 0.0670109 -0.35931703 +CCGCT 0.15525098 1.0687134 -0.14335552 -0.09849627 0.0070860796 -0.19325039 -0.6301602 -0.4244882 -0.028407032 -0.0045036147 0.27705705 -0.3806543 +CGGCC 0.10914166 1.0586387 -0.043676544 -0.016738161 -0.14480402 0.06477393 -0.54297304 -0.5067939 -0.05944706 -0.102873966 0.3713446 -0.6193352 +ACGTC 0.41436657 0.7041882 0.09889471 -0.13425857 -0.2610669 -0.49875614 -0.5343984 -0.21622585 -0.26248777 -0.10538623 0.43302637 -0.312192 +CCGAC 0.13932155 1.0048783 0.048698083 -0.05609531 -0.17984414 -0.16014272 -0.57891184 -0.3862107 -0.38104156 -0.084527746 0.088994876 -0.37760875 +ACCGC 0.13305096 1.0101945 0.04903097 -0.006075476 -0.13682087 -0.13485672 -0.5229622 -0.47247142 -0.16973896 -0.08531435 0.15985274 -0.5285603 +TCGTG 0.34411624 0.54877496 -0.2977916 0.16828768 -0.191524 -0.29254842 -0.5371258 -0.23331304 -0.09430722 -0.23576649 0.5719078 -0.27192482 +CGCAT 0.5999498 0.77115536 -0.3143071 0.14604495 -0.1267632 0.044745207 -0.20069544 -0.2821828 -0.13888013 -0.115316436 0.31549165 -0.44413847 +CTGCG 0.08983716 0.93369853 -0.17050038 0.11091761 0.1002238 -0.04551997 -0.64504606 -0.2920264 -0.16621426 -0.008796761 0.5698402 -0.48528722 +CGTCC 0.245341 0.76727617 -0.13357434 -0.044261087 -0.1989708 -0.40355113 -0.7563455 -0.4162556 0.052910525 0.08867081 0.46989238 -0.4285916 +GACGC 0.16410963 0.89442104 0.01159712 -0.011121146 -0.11937431 -0.05915108 -0.5035645 -0.4384444 -0.37111035 -0.12623958 0.29154614 -0.32345334 +CCGGA 0.058332212 0.8205382 -0.08229992 -0.10736659 -0.29781425 0.08876952 -0.5016987 -0.4282701 -0.22117661 -0.3539172 0.4084282 -0.32255137 +ATGCG 0.45746547 0.74587435 -0.2256686 0.20796381 -0.092729814 0.08140811 -0.3820175 -0.31876132 -0.15457374 -0.08827566 0.34446383 -0.43786836 +CGGGA 0.08454841 0.8865799 -0.06589037 0.07850295 -0.38353822 0.15499815 -0.38978544 -0.3915865 -0.29288107 -0.48632568 0.47004598 -0.22273763 +CGTGT 0.3587733 0.46255377 -0.21774971 0.33817008 -0.16342899 -0.47342494 -0.49634284 -0.20944923 -0.19120044 -0.30104682 0.56720686 -0.40124983 +ATCGG 0.4467741 0.53540653 -0.16378327 -0.051679328 -0.36054567 0.039056014 -0.44980177 -0.42431006 -0.1993221 -0.3981636 0.31392547 -0.13726616 +ACGTA 0.6846776 0.49651885 -0.011937649 0.095999256 -0.11928328 -0.25794634 -0.30146536 -0.15980381 -0.3410469 -0.49190113 0.18619311 -0.27106255 +AGACG 0.22637933 0.7886758 0.1557996 -0.059300177 -0.30837974 0.08826691 -0.34307343 -0.5280819 -0.5864912 -0.5125418 0.21805234 -0.14169978 +CGCTG 0.109269924 0.9421461 -0.11329338 0.11489977 0.09660793 0.03220303 -0.5476214 -0.36653262 -0.2620294 -0.15373728 0.4796221 -0.3443093 +CCGGC 0.07933518 1.1805159 -0.079249665 -0.08080104 -0.08533795 0.12096164 -0.4680168 -0.44940993 -0.0718533 -0.16378786 0.4880184 -0.6786108 +TCGCA 0.5093587 0.6123009 -0.06971234 -0.09415064 -0.06867955 -0.19658494 -0.37077153 -0.39136773 -0.22067744 -0.064741805 0.30727315 -0.32578817 +GCGCT 0.19598453 0.8524831 -0.14504342 -0.10225751 0.1107174 -0.035285678 -0.5135058 -0.3575492 -0.11120678 -0.13877839 0.48264188 -0.30264732 +TTCGG 0.33206633 0.7303355 -0.17783985 -0.17069048 -0.07733851 -0.30974936 -0.41775942 -0.33728114 -0.10499682 -0.16685705 0.50878644 -0.08704413 +AGCGC 0.24861671 0.7414726 -0.07987641 -0.053376317 0.130119 0.03927874 -0.41833106 -0.42271227 -0.20387319 -0.16402462 0.37013257 -0.52100134 +CGGCA 0.10773149 1.0356367 -0.037482366 -0.0496787 -0.05597208 0.12035737 -0.29910773 -0.34117004 -0.24103513 -0.20015611 0.51986897 -0.62199533 +CGTTG 0.23462825 0.6605234 -0.43078783 0.1783267 -0.07525331 -0.2776261 -0.32175398 -0.29069313 -0.20889689 -0.23851578 0.61807424 -0.15646519 +CCCGA 0.18517055 0.88543355 -0.088993445 0.0033474122 -0.24918851 0.11138379 -0.5706982 -0.5803055 -0.18326545 -0.13177122 0.093946815 -0.5087368 +TGTCG 0.3761877 0.5532033 -0.27454764 0.19720365 -0.17453016 -0.18760514 -0.57527536 -0.22734003 -0.18829924 -0.11891668 0.53284115 -0.24462125 +TCGAC 0.3711839 0.7802682 -0.03918522 -0.14113367 -0.21169063 -0.21919377 -0.51950467 -0.4370633 -0.2636366 0.034404453 0.2709706 -0.093297124 +CTCGT 0.30431286 0.585404 -0.11715559 -0.07886747 -0.103572644 -0.39326406 -0.61566556 -0.22465421 -0.12122476 -0.09473499 0.57269204 -0.27341387 +GCGAC 0.14229193 1.0802723 0.1531052 -0.003998651 -0.20075537 0.0008587567 -0.39934126 -0.37640613 -0.3962842 -0.20410754 0.32123917 -0.45658627 +ACGCT 0.2319897 0.98992676 0.016464422 -0.14697692 -0.099128105 -0.2745319 -0.49229258 -0.2673706 -0.31380245 0.05837459 0.37858307 -0.29031524 +ATCCG 0.44494155 0.67614853 -0.10988943 -0.15395594 -0.27178848 0.043136753 -0.5869654 -0.3413954 -0.057009637 -0.1021543 0.25962588 -0.27620903 +CGACA 0.38484517 0.76094204 0.16085283 -0.0025760487 -0.35698828 0.0014002178 -0.3628739 -0.34353507 -0.527777 -0.19167756 0.14295493 -0.2978486 +TGCGT 0.21629044 0.7146638 -0.23769908 0.10185099 0.026251195 -0.21726725 -0.49941668 -0.32253537 -0.2165744 -0.15614322 0.56764 -0.28481457 +CGTGC 0.20479777 0.8613295 -0.16811214 0.2207831 -0.012063874 -0.1525157 -0.4155969 -0.44804084 -0.1931988 -0.12205479 0.39258555 -0.66104126 +GCGGG -0.04823706 0.9842379 -0.10491692 0.11619564 -0.27953494 0.18199612 -0.3814843 -0.2933867 -0.115257084 -0.46269035 0.72302574 -0.5097751 +AGCGT 0.15187113 0.73284864 -0.12586361 0.007758793 -0.04450549 -0.16071768 -0.37323147 -0.38293424 -0.24903108 -0.29966897 0.60845613 -0.38774422 +CGTAT 0.6083593 0.5235605 -0.20541327 0.16399145 -0.07764127 -0.16315909 -0.51112586 -0.09627383 -0.123724155 -0.3619616 0.31379408 -0.20572792 +TCGGA 0.46181735 0.5365669 -0.11535127 -0.03139903 -0.3393817 0.105218165 -0.37339577 -0.41098672 -0.26798457 -0.40558428 0.29119235 -0.04510529 +TATCG 0.79220784 0.44438502 -0.09167931 0.0729161 -0.27797008 0.116199926 -0.5510992 -0.2438942 -0.112019174 -0.20014828 0.24741149 -0.045837533 +CCGAA 0.27334872 0.74018943 0.034107443 -0.09422981 -0.25402284 0.034587122 -0.5452814 -0.5163824 -0.32428738 -0.31704715 -0.009481952 -0.2692661 +GGCGT 0.084015355 0.82535577 -0.17682935 0.17369352 -0.12838666 0.048257068 -0.42439532 -0.34584004 -0.2502394 -0.29917267 0.64999974 -0.52971715 +CGAGG 0.07445335 0.84174186 -0.011793132 -0.0437459 -0.25198576 0.24996443 -0.43201926 -0.4470675 -0.33320057 -0.4061689 0.49648973 -0.34117237 +GCGCC 0.14006405 1.0315671 -0.059328478 -0.0018973728 -0.025963226 0.022032565 -0.52540576 -0.3933072 -0.045575157 -0.066453174 0.37417355 -0.5893297 +CGATA 0.54900914 0.54733175 -0.083066635 0.034003604 -0.18090108 0.13502015 -0.6184928 -0.16840051 -0.17098527 -0.14693159 0.20487243 -0.19315375 +ACCGG 0.15598232 0.8146331 -0.03728028 0.10408826 -0.30045483 -0.14121594 -0.4596298 -0.24731596 -0.23900372 -0.30396727 0.341781 -0.3377965 +CCGCG 0.11688634 0.974119 -0.09076175 0.024494119 -0.20931353 0.06094443 -0.51616555 -0.45724478 -0.1273008 -0.122643806 0.31302565 -0.60455054 +GCGAG 0.16464302 0.82806003 -0.060083356 -0.017757775 -0.014770796 0.114898525 -0.38488182 -0.41381434 -0.38594106 -0.34393492 0.38177162 -0.3008699 +ACGAC 0.31116658 0.9145611 0.10102729 -0.06469523 -0.2698209 -0.18236129 -0.47740173 -0.41485402 -0.3227766 -0.13396305 -0.0032004975 -0.2482087 +CGGCG 0.100718684 1.0105212 -0.0855946 0.10327357 -0.14634424 0.07621853 -0.38806435 -0.42261612 -0.12645002 -0.2693268 0.5318827 -0.42067865 +TAACG 0.613125 0.5400826 -0.02371912 0.08715879 -0.099589884 -0.19379026 -0.42217523 -0.15838777 -0.2858103 -0.5221862 0.15985225 -0.1631768 +CGGGC 0.10170622 1.0121357 -0.07068866 0.027501546 -0.10305804 0.11881538 -0.37572128 -0.3607727 -0.09107131 -0.2798078 0.6077527 -0.5142637 +CGCAC 0.41436076 0.9568743 0.15819527 -0.064467005 -0.100332305 -0.158394 -0.35261324 -0.32014903 -0.48232248 -0.015611821 0.1217589 -0.6324137 +GCTCG 0.12517852 0.84780216 -0.23020923 -0.0353109 0.08771136 -0.037550196 -0.5720468 -0.41469234 -0.23415218 -0.11718344 0.54925096 -0.29201427 +GCGTC 0.17625225 0.6657144 -0.15120286 -0.072867826 0.025284978 -0.22642486 -0.57686454 -0.2947524 -0.15801342 -0.1051245 0.653611 -0.4199482 +ATCGC 0.43218347 0.6422721 -0.046424735 -0.04559662 -0.192756 0.027957693 -0.57845557 -0.32167086 -0.09142548 -0.10308609 0.1762581 -0.2922503 +GCGAA 0.33499467 0.6662943 0.013396255 -0.07021264 -0.27180877 0.016593374 -0.3657789 -0.5190558 -0.33433896 -0.47746506 0.17464049 -0.23625587 +GACCG 0.12792362 0.862144 -0.10531382 0.09396836 -0.3121511 -0.043924764 -0.53111696 -0.34411362 -0.29495507 -0.2739333 0.2522165 -0.29553157 +ACGAG 0.2915579 0.61644155 0.0048402217 -0.053132642 -0.26765126 0.0074125966 -0.364736 -0.3904858 -0.45622498 -0.40392306 0.25129396 -0.17838643 +CCGCA 0.31315684 0.82554334 -0.050849233 -0.031445656 0.0017542602 -0.17227675 -0.381118 -0.40083867 -0.16714802 -0.06363461 0.25089982 -0.4876539 +ACGCC 0.27453902 0.9139614 -0.016418748 -0.049507987 -0.15475693 -0.10146861 -0.5280589 -0.37561938 -0.19311939 -0.059757773 0.19697833 -0.4060603 +CGAGC 0.23068199 0.81605464 -0.06472693 -0.13281535 -0.0036362347 0.121106476 -0.41411778 -0.48517027 -0.2684823 -0.10923135 0.31204268 -0.4314366 +CAACG 0.36734527 0.6864232 0.041082133 -0.08519132 -0.27082437 -0.14103675 -0.3853875 -0.41783404 -0.3458899 -0.23466533 0.13891613 -0.38991943 +CGTAA 0.6836104 0.39523068 -0.013389111 0.056046534 -0.076968476 -0.21756278 -0.43474323 -0.2774518 -0.23523888 -0.49481168 0.12444234 -0.21250312 +AGCGG 0.19166788 0.78303254 -0.03507164 -0.06324467 -0.12878418 0.027831553 -0.2994505 -0.36980578 -0.24742045 -0.35149744 0.43435952 -0.4476704 +TCGTC 0.28386825 0.65909785 -0.09484646 -0.11887253 -0.18031196 -0.36258647 -0.54475033 -0.30889645 -0.10018685 -0.006862956 0.61959344 -0.24842538 +CGAAG 0.22365893 0.5950588 0.06547372 -0.108499706 -0.21663356 0.0187646 -0.39006355 -0.46485373 -0.30491143 -0.48699167 0.34170282 -0.18695825 +TTGCG 0.45167094 0.6492631 -0.36905378 0.09879375 0.06162119 -0.31361 -0.31473917 -0.3289279 -0.22668692 -0.18907176 0.4295083 -0.13273326 +GACGG 0.18057455 0.8173748 0.006022948 0.029915813 -0.24005051 0.026680797 -0.35786912 -0.3356878 -0.38868833 -0.2997923 0.3773136 -0.31019574 +GCGTT 0.32445717 0.5673216 -0.291701 0.09784706 -0.061876766 -0.25136995 -0.37568378 -0.24524167 -0.21866772 -0.2698837 0.5454843 -0.191145 +GCGCA 0.4186589 0.70068896 -0.11601825 0.05617681 -0.05405617 0.09276731 -0.3539247 -0.38782504 -0.202887 -0.11552621 0.30841398 -0.46118358 +TGCGC 0.21938926 0.8030465 -0.2183658 0.062684186 0.056324925 -0.041100625 -0.40951997 -0.3727544 -0.20352507 -0.06690564 0.40167195 -0.45822665 +GCGGT 0.2727746 0.65443945 -0.13604201 0.068026625 -0.115408786 -0.0112635875 -0.3421461 -0.23556177 -0.25856158 -0.41944763 0.5442317 -0.32709333 +ATCGT 0.5914071 0.47815233 -0.16179761 0.005383702 -0.17392214 -0.16480339 -0.5571206 -0.20787238 -0.07364665 -0.19544326 0.29299197 -0.118795715 +GCGGA 0.14491186 0.7208372 -0.085424416 0.040284455 -0.17437355 0.20152724 -0.382568 -0.39912948 -0.21737434 -0.35155508 0.4286759 -0.28568628 +ACGAT 0.5085424 0.5255273 -0.18123145 0.09874366 -0.21431613 -0.012868109 -0.48926365 -0.34556204 -0.24926116 -0.19837412 0.14028098 -0.066710606 +TGCGA 0.24925464 0.7363432 -0.15194389 0.08777736 -0.015549034 -0.06590904 -0.4876559 -0.30893642 -0.23289742 -0.1619482 0.322327 -0.26929194 +AACGC 0.41052306 0.65147424 0.015659299 -0.044352055 -0.19198468 -0.07813023 -0.39212447 -0.34736386 -0.2799736 -0.31776097 0.12048461 -0.31891835 +GACGT 0.3833097 0.6166541 -0.042990636 0.0022263557 -0.20551336 -0.14040397 -0.38652924 -0.35503313 -0.4031566 -0.29883724 0.277574 -0.12958899 +GACGA 0.28305763 0.6054585 -0.0599279 -0.10785339 -0.24889399 0.13479638 -0.343243 -0.44819936 -0.43949208 -0.47915724 0.22896828 -0.035759747 +ACGGT 0.2835476 0.7306532 -0.0348893 0.085870236 -0.1390343 -0.18704613 -0.31888047 -0.23913445 -0.29178432 -0.2947359 0.38849375 -0.3271756 +GGCGC 0.19429758 0.82483315 -0.09930322 0.05602493 -0.09460882 -0.052020017 -0.4294462 -0.33539116 -0.12785006 -0.2659463 0.47064364 -0.3862575 +CGGTA 0.39491138 0.5789553 -0.036062364 0.08630009 -0.1037876 -0.0039342577 -0.45889524 -0.20442334 -0.24374259 -0.41960952 0.42967188 -0.27860045 +GTTCG 0.3137624 0.47111738 -0.24775985 -0.09091159 -0.14488807 -0.16228792 -0.4336282 -0.31579727 -0.20965792 -0.2703439 0.46405977 -0.17013302 +CTACG 0.48567435 0.5714033 0.0039960523 -0.035383895 -0.017031526 -0.23587415 -0.4865705 -0.22657835 -0.23552616 -0.25406092 0.3086071 -0.087677516 +CGCCC 0.21973588 0.855526 -0.11076913 0.0075104227 -0.14945759 -0.055730145 -0.7156115 -0.4752392 -0.055559743 -0.0023079952 0.19299366 -0.5407989 +CGCGC 0.20248468 0.90839136 -0.09026153 -0.06443657 -0.08591234 -0.06122271 -0.47523975 -0.4249522 -0.099241726 -0.102970555 0.2761888 -0.49064213 +ACGGC 0.19814552 0.9002955 -0.024458999 0.05218507 -0.22947024 -0.02038743 -0.4236225 -0.34585723 -0.2693316 -0.27418765 0.3642125 -0.3517428 +CGGAC 0.2589381 0.8000901 0.025889287 0.03230812 -0.29332614 -0.14255153 -0.37421387 -0.206734 -0.40247673 -0.25860998 0.14500576 -0.2088138 +CGTTA 0.6435564 0.46896133 -0.22117002 0.025884217 -0.07797562 -0.25124264 -0.39866513 -0.2061712 -0.20952106 -0.3623044 0.22605574 -0.08077692 +TACGG 0.40640238 0.66207904 -0.04985573 0.14395109 -0.1872122 -0.06859894 -0.34003702 -0.111290574 -0.10771497 -0.3091386 0.3535767 -0.21553649 +TTACG 0.5049254 0.59155047 -0.12635037 -0.0054484243 -0.09731682 -0.1903429 -0.39046034 -0.22669028 -0.19040841 -0.2879975 0.24021083 -0.16196124 +GGTCG 0.22276928 0.65036464 -0.1406106 0.14572383 -0.27537122 -0.010182865 -0.39117682 -0.27246222 -0.1574591 -0.3241613 0.6414483 -0.30998632 +CCGTA 0.43727857 0.62062097 -0.11909053 -0.02112093 -0.12686734 -0.17254208 -0.5399323 -0.23392683 -0.02614116 -0.10322481 0.24570265 -0.32866696 +GCCCG 0.17387235 0.89041126 -0.10857635 0.03603034 -0.07455798 -0.0494522 -0.49748975 -0.4292197 -0.13358715 -0.12738529 0.3579242 -0.46641946 +ATACG 0.67333764 0.61343783 -0.015081144 0.073765144 -0.17186274 -0.061398808 -0.29495838 -0.22843438 -0.24782392 -0.2974032 0.13895038 -0.23645681 +TGCGG 0.24816869 0.67898864 -0.17820807 0.115025386 -0.10699916 -0.0555269 -0.36901173 -0.3102684 -0.20495778 -0.32073215 0.46227655 -0.29117948 +CGTAG 0.31577316 0.5773228 -0.1110458 -0.0121434685 0.059343748 0.035527203 -0.46234366 -0.22058703 -0.21755667 -0.36697057 0.3759865 -0.26076585 +TCGCC 0.33663383 0.7092642 -0.05392878 -0.02040774 -0.19422963 -0.110859096 -0.55413634 -0.2658018 -0.09832843 -0.028200567 0.3029348 -0.32211083 +GATCG 0.24427843 0.6354222 -0.058864504 -0.04052692 -0.20716602 0.0942991 -0.4451534 -0.39367718 -0.2816737 -0.25888345 0.32086283 -0.14850117 +TTCGC 0.5042048 0.5594832 -0.18486407 -0.100241445 -0.11188205 -0.18471283 -0.47349462 -0.3175268 -0.08020178 -0.093106665 0.2313827 -0.18081765 +ACGCG 0.2737372 0.7799924 0.08429885 -0.043977585 -0.1840202 -0.17023458 -0.35446087 -0.30021858 -0.27154493 -0.19683813 0.28045344 -0.3802116 +CCGAT 0.47270718 0.57498366 -0.19015405 -0.03543979 -0.17859517 -0.12720495 -0.54837704 -0.33506656 -0.040143244 0.0002869348 0.2133257 -0.15197934 +GTCGG 0.2109715 0.61754423 -0.1352477 0.04234479 -0.13497059 -0.088509195 -0.39444152 -0.26800692 -0.23023893 -0.2934329 0.5256426 -0.34305066 +CCGGT 0.16465251 0.7231761 -0.16969211 0.123199746 -0.23505393 -0.06816793 -0.4045624 -0.3388314 -0.10245448 -0.26945153 0.5241111 -0.4125587 +CGCCG 0.15707815 0.825529 -0.06512038 -0.0062315087 -0.16612898 -0.101355165 -0.5323134 -0.3914411 -0.10652731 -0.12703282 0.252878 -0.47877654 +TACGA 0.52563304 0.63684595 -0.0034456279 0.06342301 -0.13070937 -0.048947427 -0.46240795 -0.22578107 -0.27735516 -0.29912913 0.11353661 -0.16748185 +TCCGA 0.34209198 0.55731356 -0.10424508 -0.06093521 -0.19275399 -0.09180255 -0.52428705 -0.35898665 -0.14862427 -0.1255333 0.2834762 -0.17062603 +GTGCG 0.22570156 0.54388237 -0.18745738 0.121104896 -0.07574034 -0.09228927 -0.38750088 -0.3621076 -0.1785592 -0.27696642 0.39058965 -0.3028654 +TCGGT 0.3625 0.5711019 -0.19553898 0.014553335 -0.18771197 -0.2470607 -0.3923491 -0.2718073 -0.1616296 -0.10967163 0.50603247 -0.14749175 +CGATC 0.37463164 0.58613735 -0.09239884 -0.1378136 -0.2622264 -0.05774198 -0.6135637 -0.3422522 -0.13730334 -0.04347661 0.35423905 -0.10254737 +GTCCG 0.34366176 0.50837976 -0.22669767 0.05159845 -0.18664432 -0.27536663 -0.405632 -0.31722862 -0.23357144 -0.2772044 0.4213718 -0.31675997 +TCGTA 0.56091386 0.44774878 -0.13560154 0.028763441 -0.049601696 -0.1648576 -0.44457248 -0.20864342 -0.13875033 -0.2517486 0.41172928 -0.085932665 +TCCGC 0.2936902 0.69361514 -0.15088624 -0.04593912 -0.07052694 -0.1934466 -0.52698624 -0.3583339 -0.057858437 -0.061933286 0.31237876 -0.2762147 +TAGCG 0.27723566 0.60799855 -0.07218342 0.033031933 -0.0046076393 -0.060085867 -0.4443989 -0.28831947 -0.17677468 -0.3099117 0.41209295 -0.28886044 +CGGTT 0.3204925 0.5983024 -0.2995915 0.0045160516 -0.08612622 -0.23993987 -0.29146367 -0.29537338 -0.19216464 -0.24394673 0.43876803 -0.15101181 +CGCGG 0.18840435 0.77837646 -0.055382174 0.0040839 -0.13955872 -0.06344208 -0.44111055 -0.33013055 -0.10997282 -0.1665869 0.3813939 -0.3531932 +GTCGT 0.2512613 0.50510037 -0.22800271 0.09895663 -0.14979947 -0.1899851 -0.4089756 -0.20026812 -0.11864176 -0.19765982 0.46055242 -0.19942743 +TCGCG 0.26875487 0.5936978 -0.101956025 0.0240186 -0.19610487 -0.105463706 -0.4569838 -0.28693357 -0.1324529 -0.10617747 0.34687015 -0.2804055 +GTCGC 0.27152252 0.60244715 -0.1505661 -0.0062822606 -0.09271514 -0.108846955 -0.47308534 -0.31182632 -0.20750397 -0.16676979 0.3477644 -0.25697994 +CGCGT 0.24275792 0.5369463 -0.15400235 0.07274942 -0.10562316 -0.11392815 -0.35456288 -0.2378091 -0.2291292 -0.17693806 0.39671206 -0.36473277 +TACGC 0.43450335 0.5352216 0.021081563 0.016770782 -0.10467155 -0.14872259 -0.32560515 -0.16691165 -0.16429608 -0.20848736 0.16648753 -0.22774969 +CGTAC 0.40615046 0.59267527 0.034077235 -0.0063927416 -0.10890854 -0.26863363 -0.37863404 -0.08460885 -0.24882472 -0.17786017 0.21354938 -0.29277527 +CGCGA 0.3059872 0.6037753 -0.061620787 -0.027523272 -0.15555193 -0.011013148 -0.4005894 -0.3071333 -0.28505582 -0.21411683 0.33610016 -0.2538459 +GTACG 0.43871516 0.37886068 -0.088519 0.07365365 -0.083434105 -0.1649298 -0.3634508 -0.24297598 -0.20741877 -0.30435285 0.30632606 -0.20905761 +GCCGT 0.2954574 0.5527247 -0.14502907 0.008469267 0.0031193409 -0.1108553 -0.32350197 -0.21660814 -0.18081915 -0.2162828 0.2823482 -0.27500796 +GCGTA 0.42557326 0.50005245 -0.025071995 0.002587751 -0.07374421 -0.13631892 -0.38124433 -0.21173291 -0.25819507 -0.2615294 0.2639797 -0.25223106 +CGGTC 0.2779801 0.56567186 -0.09557941 0.010159702 -0.17927946 -0.11389265 -0.4646568 -0.31228206 -0.099505365 -0.128638 0.35748193 -0.33450773 +CGCTA 0.30945092 0.63503236 -0.06296137 -0.025656067 0.029995138 -0.08547842 -0.408486 -0.1781955 -0.12015634 -0.18672344 0.19165578 -0.18148205 +TACCG 0.31511036 0.5569823 -0.036774326 0.06570257 -0.1010173 -0.1150532 -0.37943628 -0.25807694 -0.17973734 -0.18322282 0.20252092 -0.29309243 +GCGCG 0.19400129 0.5945594 -0.053965565 0.017920278 -0.06495427 -0.033026986 -0.31749913 -0.22656712 -0.19429347 -0.19204088 0.30635154 -0.30519772 +CGACG 0.13033171 0.5030788 -0.032329127 0.01818235 -0.10998572 0.016698118 -0.26357573 -0.17058271 -0.21161427 -0.17969412 0.28793362 -0.21529901 +CGTCG 0.23380579 0.35975367 -0.04398194 0.013210105 -0.06858995 -0.013591101 -0.24129055 -0.16111434 -0.09662623 -0.16158253 0.22476207 -0.14794464 From 6f4134eb07673a38c958b1f4dac1c7c5186a2fc3 Mon Sep 17 00:00:00 2001 From: LightenedLimited Date: Wed, 13 May 2020 14:15:41 +0200 Subject: [PATCH 2/5] Reorganizing for file perservation --- .gitignore | 1 + ...512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt | 854 ----------- ...512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt | 855 ----------- ...512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt | 854 ----------- ...512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt | 855 ----------- ...512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt | 860 ----------- ...512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v | 1345 ----------------- ...513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt | 783 ---------- ...513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt | 789 ---------- ...513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v | 1345 ----------------- 10 files changed, 1 insertion(+), 8540 deletions(-) delete mode 100644 tmp/dna2vec-20200512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt delete mode 100644 tmp/dna2vec-20200512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt delete mode 100644 tmp/dna2vec-20200512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt delete mode 100644 tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt delete mode 100644 tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt delete mode 100644 tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v delete mode 100644 tmp/dna2vec-20200513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt delete mode 100644 tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt delete mode 100644 tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v diff --git a/.gitignore b/.gitignore index b3c7575..9dad835 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ inputs/hg38/ results/ +tmp/ # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/tmp/dna2vec-20200512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt b/tmp/dna2vec-20200512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt deleted file mode 100644 index b4238a8..0000000 --- a/tmp/dna2vec-20200512-2035-k3to5-12d-4c-0Mbp-sliding-N5F.txt +++ /dev/null @@ -1,854 +0,0 @@ -[2020-05-12 20:35:45.963650] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml -[2020-05-12 20:35:45.964647] INFO: Generic: kmer fragmenter: sliding -[2020-05-12 20:35:45.964647] INFO: SeqGenerator: Number of epochs: 1 -[2020-05-12 20:35:45.964647] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 -[2020-05-12 20:35:45.964647] INFO: Learner: Context window half size: 4 -[2020-05-12 20:35:45.964647] INFO: Learner: Use skipgram: 1 -[2020-05-12 20:35:45.965645] INFO: Learner: gensim_iters: 1 -[2020-05-12 20:35:45.965645] INFO: Learner: vec_dim: 12 -[2020-05-12 20:35:45.965645] INFO: gensim.models.word2vec: collecting all words and their counts -[2020-05-12 20:35:45.992573] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:35:45.998558] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:45.999555] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:46.014516] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:35:46.015512] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:35:46.015512] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:35:46.020498] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -[2020-05-12 20:35:46.026482] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:35:46.026482] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:35:46.034461] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:35:46.037453] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:35:46.047427] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:35:46.056403] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:35:46.071362] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:35:46.072362] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:35:46.087321] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:35:46.096297] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:35:46.101283] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:35:46.109262] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:35:46.117239] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:35:46.125218] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:35:46.130205] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:35:46.137187] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:35:46.141175] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:35:46.142173] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:35:46.156135] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:35:46.164115] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:35:46.169101] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:35:46.170099] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:35:46.191043] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:35:46.196029] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:35:46.207000] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:35:46.207998] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:35:46.212983] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:35:46.220963] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:35:46.229939] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:35:46.235923] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:35:46.243902] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:35:46.250883] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:35:46.261853] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:35:46.266840] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:35:46.274819] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:35:46.283794] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:35:46.301748] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:35:46.317704] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:35:46.331667] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:35:46.337651] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:35:46.348620] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:35:46.353609] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:35:46.362585] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:35:46.368568] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:35:46.376546] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:35:46.381533] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:35:46.393501] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:35:46.393501] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:35:46.399486] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:35:46.406467] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:35:46.411452] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:35:46.412450] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:35:46.417437] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:35:46.421427] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:35:46.426413] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:35:46.441373] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:35:46.445362] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:35:46.445362] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:35:46.451346] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:35:46.455844] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:35:46.459832] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:35:46.460830] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:35:46.465816] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:35:46.476788] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:35:46.482773] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:35:46.490751] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:35:46.501721] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:35:46.505760] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:35:46.511694] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:35:46.517679] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:35:46.531641] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:35:46.532639] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:35:46.536627] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:35:46.536627] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:35:46.542611] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:35:46.546601] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:35:46.550590] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:35:46.550590] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:35:46.558569] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:35:46.561561] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:35:46.565550] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:35:46.573529] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:35:46.592478] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:35:46.592478] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:46.592478] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:46.594473] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:35:46.601455] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:35:46.601455] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:35:46.606440] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:35:46.606440] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:35:46.620403] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:35:46.621402] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:35:46.637358] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:35:46.643343] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:35:46.646334] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:35:46.647331] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:35:46.653315] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:35:46.656308] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:35:46.660296] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:35:46.660296] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:35:46.665283] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:35:46.670271] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:35:46.679246] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:35:46.686228] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:35:46.690217] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:35:46.691215] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:35:46.705177] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:35:46.711162] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:35:46.717144] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:35:46.717144] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:35:46.723128] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:35:46.725124] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:35:46.740084] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:35:46.746068] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:35:46.750056] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:35:46.751054] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:35:46.756040] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:35:46.761028] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:35:46.767012] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:35:46.774991] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:35:46.778979] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:35:46.778979] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:35:46.783965] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:35:46.788953] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:35:46.793939] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:35:46.801918] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:35:46.808899] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:35:46.815881] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:35:46.820867] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:35:46.820867] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:35:46.825854] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:35:46.830841] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:35:46.835827] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:35:46.836825] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:35:46.851785] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:35:46.857770] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:35:46.861758] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:35:46.861758] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:35:46.865747] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:35:46.870734] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:35:46.877715] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:35:46.885695] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:35:46.890680] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:35:46.891678] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:35:46.904643] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:35:46.904643] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:35:46.910627] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:35:46.919604] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:35:46.932568] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:35:46.932568] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:35:46.944536] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:35:46.945534] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:35:46.951518] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:35:46.956025] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:35:46.962997] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:35:46.968982] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:35:46.973967] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:35:46.974965] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:35:46.979951] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:35:46.989926] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:35:46.996907] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:35:47.003888] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:35:47.007876] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:35:47.008874] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:35:47.012863] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:35:47.017851] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:35:47.021839] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:35:47.021839] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:35:47.045777] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:35:47.045777] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:47.046773] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:47.046773] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:35:47.046773] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:35:47.047770] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:35:47.052757] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:35:47.059246] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:35:47.063234] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:35:47.063234] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:35:47.070215] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:35:47.073208] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:35:47.078193] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:35:47.078193] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:35:47.083180] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:35:47.088168] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:35:47.094152] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:35:47.100136] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:35:47.104124] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:35:47.105122] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:35:47.141026] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:35:47.141026] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:47.141026] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:47.142024] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:35:47.143021] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:35:47.150003] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:35:47.154988] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:35:47.154988] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:35:47.167465] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:35:47.167465] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:35:47.173449] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:35:47.184420] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:35:47.189406] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:35:47.189406] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:35:47.195390] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:35:47.198383] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:35:47.205364] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:35:47.212346] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:35:47.218329] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:35:47.226309] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:35:47.233289] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:35:47.240271] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:35:47.246255] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:35:47.253237] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:35:47.257728] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:35:47.257728] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:35:47.262715] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:35:47.267703] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:35:47.271691] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:35:47.271691] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:35:47.278673] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:35:47.281666] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:35:47.288647] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:35:47.295628] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:35:47.299616] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:35:47.299616] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:35:47.306598] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:35:47.309591] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:35:47.333526] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:35:47.336519] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:47.337515] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:47.337515] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:35:47.338512] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:35:47.338512] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:35:47.344497] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:35:47.351479] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:35:47.357462] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:35:47.364444] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:35:47.371425] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:35:47.378407] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:35:47.383392] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:35:47.383392] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:35:47.388379] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:35:47.393367] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:35:47.400347] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:35:47.405335] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:35:47.410320] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:35:47.411317] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:35:47.416304] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:35:47.421292] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:35:47.425280] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:35:47.425280] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:35:47.429270] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:35:47.435254] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:35:47.455201] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:35:47.460187] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:47.462183] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:47.463179] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:35:47.463179] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:35:47.463179] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:35:47.469163] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:35:47.476145] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:35:47.482129] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:35:47.490108] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:35:47.496092] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:35:47.504071] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:35:47.509056] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:35:47.509056] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:35:47.516038] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:35:47.518033] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:35:47.523019] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:35:47.524017] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:35:47.539973] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:35:47.541969] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:35:47.545958] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:35:47.551943] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:35:47.557926] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:35:47.558923] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:35:47.587846] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:35:47.587846] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:47.587846] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:47.588843] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:35:47.588843] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:35:47.589840] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:35:47.593830] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:35:47.599815] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:35:47.605797] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:35:47.605797] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:35:47.609787] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:35:47.621756] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:35:47.627739] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:35:47.634721] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:35:47.642700] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:35:47.649681] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:35:47.654667] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:35:47.655665] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:35:47.667632] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:35:47.670625] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:35:47.674613] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:35:47.674613] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:35:47.680597] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:35:47.684589] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:35:47.689573] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:35:47.690571] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:35:47.702539] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:35:47.702539] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:35:47.707526] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:35:47.712513] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:35:47.716501] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:35:47.716501] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:35:47.723483] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:35:47.726475] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:35:47.730464] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:35:47.730464] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:35:47.735451] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:35:47.740438] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:35:47.744427] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:35:47.744427] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:35:47.752405] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:35:47.756395] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:35:47.762379] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:35:47.768364] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:35:47.775344] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:35:47.780332] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:35:47.786315] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:35:47.793296] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:35:47.800277] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:35:47.801276] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:35:47.826208] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:35:47.828202] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:47.830199] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:47.831195] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:35:47.831195] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:35:47.831195] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:35:47.840171] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:35:47.845158] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:35:47.851143] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:35:47.860119] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:35:47.862112] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:35:47.863109] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:35:47.867099] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:35:47.879067] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:35:47.882059] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:35:47.882059] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:35:47.890037] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:35:47.893030] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:35:47.897018] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:35:47.897018] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:35:47.904998] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:35:47.907990] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:35:47.912976] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:35:47.919959] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:35:47.926939] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:35:47.934918] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:35:47.938907] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:35:47.939904] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:35:47.942897] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:35:47.948881] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:35:47.953867] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:35:47.953867] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:35:47.960849] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:35:47.962843] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:35:47.968828] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:35:47.975809] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:35:47.978800] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:35:47.979797] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:35:47.985782] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:35:47.989772] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:35:47.995755] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:35:48.002738] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:35:48.006726] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences -[2020-05-12 20:35:48.009718] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) -[2020-05-12 20:35:48.010717] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) -[2020-05-12 20:35:48.021685] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items -[2020-05-12 20:35:48.022683] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words -[2020-05-12 20:35:48.022683] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) -[2020-05-12 20:35:48.022683] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes -[2020-05-12 20:35:48.026672] INFO: gensim.models.word2vec: resetting layer weights -[2020-05-12 20:35:48.051606] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 -[2020-05-12 20:35:48.053601] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey -[2020-05-12 20:35:48.055595] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:35:48.055595] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:48.055595] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:48.057589] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:35:48.057589] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:35:48.058587] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:35:48.062576] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:35:48.067563] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:35:48.071552] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:35:48.071552] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:35:48.076539] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 -[2020-05-12 20:35:48.080529] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:35:48.082523] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:35:48.089504] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:35:48.094492] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:35:48.097482] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 -[2020-05-12 20:35:48.097482] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:35:48.100475] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:35:48.111445] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:35:48.111445] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:35:48.116432] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 -[2020-05-12 20:35:48.122417] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:35:48.124411] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:35:48.127403] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:35:48.136379] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:35:48.139370] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:35:48.139370] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:35:48.143361] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 -[2020-05-12 20:35:48.150342] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:35:48.152336] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:35:48.156326] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:35:48.179771] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:35:48.187749] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 -[2020-05-12 20:35:48.192737] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:35:48.197724] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:35:48.209690] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:35:48.210687] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:35:48.213680] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 -[2020-05-12 20:35:48.219664] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:35:48.220661] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:35:48.224650] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:35:48.233627] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:35:48.236618] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:35:48.236618] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:35:48.240608] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 -[2020-05-12 20:35:48.246594] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:35:48.248586] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:35:48.251578] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:35:48.252577] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:35:48.259557] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 -[2020-05-12 20:35:48.263547] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:35:48.264544] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:35:48.272522] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:35:48.278507] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:35:48.285487] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 -[2020-05-12 20:35:48.289478] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:35:48.291472] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:35:48.295462] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:35:48.305436] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:35:48.309425] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 -[2020-05-12 20:35:48.316406] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:35:48.318400] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:35:48.324384] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:35:48.330369] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:35:48.334357] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 -[2020-05-12 20:35:48.335354] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:35:48.337350] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:35:48.349317] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:35:48.349317] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:35:48.353306] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 -[2020-05-12 20:35:48.359292] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:35:48.361285] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:35:48.365275] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:35:48.371259] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:35:48.375248] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:35:48.375248] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:35:48.379238] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 -[2020-05-12 20:35:48.385222] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:35:48.387216] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:35:48.392204] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:35:48.400182] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:35:48.404170] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:35:48.404170] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:35:48.407164] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 -[2020-05-12 20:35:48.414144] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:35:48.416139] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:35:48.420128] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:35:48.428107] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:35:48.431098] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:35:48.432096] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:35:48.438079] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 -[2020-05-12 20:35:48.442070] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:35:48.444064] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:35:48.448054] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:35:48.455037] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:35:48.458026] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 -[2020-05-12 20:35:48.458026] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:35:48.460021] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:35:48.465008] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:35:48.470992] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:35:48.474981] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:35:48.484955] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:35:48.487946] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 -[2020-05-12 20:35:48.487946] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:35:48.491936] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:35:48.501909] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:35:48.502907] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:48.513877] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:48.515872] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:35:48.515872] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:35:48.515872] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:35:48.520859] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:35:48.524849] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:35:48.528837] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 -[2020-05-12 20:35:48.528837] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:35:48.530832] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:35:48.542799] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:35:48.542799] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:35:48.545792] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 -[2020-05-12 20:35:48.552774] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:35:48.553771] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:35:48.558757] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:35:48.566736] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:35:48.569727] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:35:48.569727] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:35:48.573717] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 -[2020-05-12 20:35:48.580700] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:35:48.582693] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:35:48.589674] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:35:48.598651] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:35:48.602640] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 -[2020-05-12 20:35:48.608624] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:35:48.610618] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:35:48.618597] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:35:48.623585] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:35:48.627573] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 -[2020-05-12 20:35:48.636550] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:35:48.638544] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:35:48.642533] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:35:48.650512] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:35:48.656496] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 -[2020-05-12 20:35:48.663478] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:35:48.665471] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:35:48.669967] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:35:48.676950] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:35:48.681934] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 -[2020-05-12 20:35:48.682932] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:35:48.684928] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:35:48.706867] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:35:48.712853] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:35:48.715843] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 -[2020-05-12 20:35:48.716840] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:35:48.718836] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:35:48.729806] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:35:48.729806] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:35:48.736787] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 -[2020-05-12 20:35:48.741776] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:35:48.742772] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:35:48.749753] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:35:48.753743] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:35:48.756734] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 -[2020-05-12 20:35:48.757731] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:35:48.759726] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:35:48.765710] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:35:48.769233] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:35:48.775218] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 -[2020-05-12 20:35:48.782199] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:35:48.784193] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:35:48.789180] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:35:48.796161] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:35:48.799153] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 -[2020-05-12 20:35:48.799153] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:35:48.801148] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:35:48.805137] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:35:48.810124] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:35:48.815111] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 -[2020-05-12 20:35:48.823090] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:35:48.825084] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:35:48.828075] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:35:48.828075] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:35:48.836055] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 -[2020-05-12 20:35:48.846029] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:35:48.848022] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:35:48.853009] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:35:48.858993] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:35:48.864980] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 -[2020-05-12 20:35:48.872464] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:35:48.874458] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:35:48.877450] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:35:48.877450] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:35:48.882436] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 -[2020-05-12 20:35:48.886426] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:35:48.888420] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:35:48.895402] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:35:48.899391] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:35:48.903380] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 -[2020-05-12 20:35:48.903380] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:35:48.906373] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:35:48.919338] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:35:48.927318] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:35:48.933301] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 -[2020-05-12 20:35:48.941280] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:35:48.944271] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:35:48.949258] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:35:48.958234] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:35:48.961226] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 -[2020-05-12 20:35:48.968712] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:35:48.970706] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:35:48.973698] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:35:48.973698] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:35:48.975693] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:35:48.983672] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:48.983672] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:48.984669] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:35:48.984669] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:35:48.984669] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:35:48.990652] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 -[2020-05-12 20:35:48.995642] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:35:48.997634] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:35:49.003619] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:35:49.012594] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:35:49.017580] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 -[2020-05-12 20:35:49.025559] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:35:49.026557] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:35:49.031544] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:35:49.039523] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:35:49.047500] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 -[2020-05-12 20:35:49.051491] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:35:49.053485] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:35:49.058471] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:35:49.066451] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:35:49.069442] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:35:49.069442] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:35:49.073432] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 -[2020-05-12 20:35:49.080413] INFO: gensim.models.word2vec: PROGRESS: at 50.00% examples, 264634 words/s, in_qsize 0, out_qsize 0 -[2020-05-12 20:35:49.083404] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:35:49.083404] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:49.083404] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:49.084402] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:35:49.085399] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:35:49.085399] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:35:49.091383] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:35:49.093379] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:35:49.098364] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 -[2020-05-12 20:35:49.099362] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:35:49.101357] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:35:49.114322] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:35:49.122302] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:35:49.126290] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 -[2020-05-12 20:35:49.126290] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:35:49.129282] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:35:49.139255] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:35:49.139255] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:35:49.145239] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 -[2020-05-12 20:35:49.150226] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:35:49.152220] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:35:49.158204] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:35:49.166184] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:35:49.173164] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 -[2020-05-12 20:35:49.178152] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:35:49.180146] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:35:49.186129] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:35:49.193111] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:35:49.197101] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 -[2020-05-12 20:35:49.197101] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:35:49.200093] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:35:49.211063] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:35:49.212060] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:35:49.223031] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:35:49.223031] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:35:49.230012] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 -[2020-05-12 20:35:49.233005] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:35:49.234999] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:35:49.241980] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:35:49.247965] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:35:49.249959] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 -[2020-05-12 20:35:49.250956] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:35:49.252951] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:35:49.270903] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:35:49.274893] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:35:49.276887] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:35:49.276887] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:49.276887] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:49.277884] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:35:49.277884] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:35:49.277884] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:35:49.283868] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 -[2020-05-12 20:35:49.288855] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:35:49.290850] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:35:49.294839] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:35:49.303816] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:35:49.308802] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 -[2020-05-12 20:35:49.316782] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:35:49.318775] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:35:49.323762] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:35:49.328748] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:35:49.335729] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 -[2020-05-12 20:35:49.336728] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:35:49.346701] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:35:49.352684] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:35:49.358670] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:35:49.361661] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 -[2020-05-12 20:35:49.362657] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:35:49.364652] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:35:49.378616] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:35:49.385597] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:35:49.390583] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 -[2020-05-12 20:35:49.391580] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:35:49.398564] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:35:49.416513] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:35:49.416513] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:35:49.419506] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:35:49.427485] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:49.427485] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:49.428482] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:35:49.428482] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:35:49.428482] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:35:49.432471] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 -[2020-05-12 20:35:49.432471] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:35:49.435464] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:35:49.457404] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:35:49.461395] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:35:49.465383] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 -[2020-05-12 20:35:49.469372] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:35:49.471367] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:35:49.475356] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:35:49.484332] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:35:49.487324] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 -[2020-05-12 20:35:49.487324] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:35:49.490317] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:35:49.504280] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:35:49.510264] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:35:49.515249] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 -[2020-05-12 20:35:49.516247] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:35:49.518242] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:35:49.528215] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:35:49.536194] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:35:49.542178] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 -[2020-05-12 20:35:49.546168] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:35:49.548161] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:35:49.550156] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:35:49.550156] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:49.550156] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:49.551154] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:35:49.552152] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:35:49.560130] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:35:49.563121] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:35:49.563121] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:35:49.567111] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 -[2020-05-12 20:35:49.573095] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:35:49.575090] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:35:49.579079] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:35:49.589053] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:35:49.591047] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:35:49.591047] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:35:49.597031] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 -[2020-05-12 20:35:49.601022] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:35:49.603015] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:35:49.608999] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:35:49.613987] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:35:49.619969] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 -[2020-05-12 20:35:49.620968] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:35:49.628947] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:35:49.631937] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:35:49.631937] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:35:49.634930] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:35:49.641911] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:35:49.646897] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 -[2020-05-12 20:35:49.647895] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:35:49.649890] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:35:49.667841] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:35:49.667841] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:35:49.671831] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 -[2020-05-12 20:35:49.684798] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:35:49.685794] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:35:49.689783] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:35:49.689783] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:35:49.695767] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 -[2020-05-12 20:35:49.702749] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:35:49.703745] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:35:49.708732] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:35:49.714717] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:35:49.717708] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 -[2020-05-12 20:35:49.717708] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:35:49.719704] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:35:49.729676] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:35:49.730674] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:35:49.735660] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 -[2020-05-12 20:35:49.742642] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:35:49.743639] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:35:49.749623] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:35:49.754610] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:35:49.758599] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 -[2020-05-12 20:35:49.758599] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:35:49.760594] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:35:49.772561] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:35:49.772561] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:35:49.778545] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 -[2020-05-12 20:35:49.789517] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:35:49.790514] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:35:49.792508] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:35:49.792508] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:35:49.792508] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:35:49.793505] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:35:49.793505] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:35:49.794504] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:35:49.809463] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:35:49.816445] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:35:49.820433] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 -[2020-05-12 20:35:49.820433] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:35:49.822428] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:35:49.831404] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:35:49.831404] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:35:49.834396] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:35:49.834396] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:35:49.835393] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:35:49.835393] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:35:49.841377] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 -[2020-05-12 20:35:49.845367] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:35:49.846364] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:35:49.850354] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:35:49.858333] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:35:49.863319] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 -[2020-05-12 20:35:49.871299] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:35:49.873292] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:35:49.875791] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:35:49.876789] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:35:49.881775] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 -[2020-05-12 20:35:49.895738] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:35:49.897733] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:35:49.902720] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:35:49.907707] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:35:49.908703] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:35:49.908703] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:35:49.912693] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 -[2020-05-12 20:35:49.920672] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:35:49.922666] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:35:49.928650] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:35:49.934635] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:35:49.938623] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 -[2020-05-12 20:35:49.938623] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:35:49.941616] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:35:49.954583] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:35:49.961563] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:35:49.966549] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 -[2020-05-12 20:35:49.966549] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:35:49.968544] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:35:49.979514] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:35:49.980511] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:35:49.983504] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 -[2020-05-12 20:35:49.996469] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs -[2020-05-12 20:35:49.999461] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs -[2020-05-12 20:35:49.999461] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:35:49.999461] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:35:50.000458] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads -[2020-05-12 20:35:50.000458] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads -[2020-05-12 20:35:50.000458] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads -[2020-05-12 20:35:50.020404] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:35:50.026390] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads -[2020-05-12 20:35:50.026390] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 2.0s, 263344 effective words/s diff --git a/tmp/dna2vec-20200512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt b/tmp/dna2vec-20200512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt deleted file mode 100644 index a95da28..0000000 --- a/tmp/dna2vec-20200512-2038-k3to5-12d-4c-0Mbp-sliding-nfX.txt +++ /dev/null @@ -1,855 +0,0 @@ -[2020-05-12 20:38:53.095469] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml -[2020-05-12 20:38:53.095469] INFO: Generic: kmer fragmenter: sliding -[2020-05-12 20:38:53.096467] INFO: SeqGenerator: Number of epochs: 1 -[2020-05-12 20:38:53.096467] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 -[2020-05-12 20:38:53.096467] INFO: Learner: Context window half size: 4 -[2020-05-12 20:38:53.096467] INFO: Learner: Use skipgram: 1 -[2020-05-12 20:38:53.096467] INFO: Learner: gensim_iters: 1 -[2020-05-12 20:38:53.096467] INFO: Learner: vec_dim: 12 -[2020-05-12 20:38:53.096467] INFO: gensim.models.word2vec: collecting all words and their counts -[2020-05-12 20:38:53.096467] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:38:53.097464] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:53.097464] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:53.109433] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:38:53.112424] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:38:53.113422] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:38:53.118409] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -[2020-05-12 20:38:53.120501] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:38:53.121401] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:38:53.128382] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:38:53.128382] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:38:53.142344] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:38:53.148328] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:38:53.156307] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:38:53.158302] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:38:53.168275] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:38:53.168275] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:38:53.173262] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:38:53.179246] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:38:53.184232] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:38:53.185230] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:38:53.194206] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:38:53.198196] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:38:53.209166] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:38:53.210163] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:38:53.215150] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:38:53.220137] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:38:53.225123] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:38:53.225123] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:38:53.232104] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:38:53.238088] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:38:53.244072] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:38:53.248062] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:38:53.254045] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:38:53.261028] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:38:53.267011] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:38:53.267011] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:38:53.274990] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:38:53.276984] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:38:53.279976] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:38:53.280974] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:38:53.284963] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:38:53.288953] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:38:53.294936] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:38:53.294936] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:38:53.302916] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:38:53.309897] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:38:53.323859] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:38:53.324856] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:38:53.334829] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:38:53.335827] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:38:53.339816] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:38:53.343806] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:38:53.349790] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:38:53.351786] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:38:53.356771] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:38:53.357799] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:38:53.368739] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:38:53.370733] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:38:53.375720] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:38:53.378712] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:38:53.389683] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:38:53.389683] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:38:53.393672] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:38:53.400657] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:38:53.404643] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:38:53.404643] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:38:53.409629] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:38:53.412622] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:38:53.418605] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:38:53.421598] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:38:53.425587] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:38:53.425587] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:38:53.429576] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:38:53.434564] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:38:53.439549] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:38:53.442542] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:38:53.448525] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:38:53.449524] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:38:53.462489] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:38:53.464484] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:38:53.468472] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:38:53.469470] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:38:53.478445] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:38:53.483433] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:38:53.487926] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:38:53.488923] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:38:53.493909] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:38:53.497899] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:38:53.501888] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:38:53.501888] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:53.501888] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:53.503883] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:38:53.504881] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:38:53.510865] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:38:53.522833] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:38:53.523830] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:38:53.530812] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:38:53.531809] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:38:53.542779] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:38:53.545772] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:38:53.549760] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:38:53.550758] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:38:53.555744] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:38:53.558736] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:38:53.564720] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:38:53.564720] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:38:53.570704] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:38:53.572699] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:38:53.579680] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:38:53.580743] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:38:53.591155] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:38:53.593150] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:38:53.600131] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:38:53.602127] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:38:53.607113] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:38:53.607113] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:38:53.611102] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:38:53.616089] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:38:53.622073] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:38:53.622073] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:38:53.626063] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:38:53.635038] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:38:53.640025] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:38:53.643017] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:38:53.649000] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:38:53.649000] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:38:53.652990] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:38:53.655982] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:38:53.660969] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:38:53.664959] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:38:53.671940] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:38:53.676926] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:38:53.684906] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:38:53.687408] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:38:53.691396] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:38:53.691396] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:38:53.703364] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:38:53.703364] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:38:53.714335] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:38:53.719322] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:38:53.725305] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:38:53.725305] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:38:53.730292] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:38:53.732287] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:38:53.738271] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:38:53.741263] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:38:53.747247] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:38:53.753231] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:38:53.757220] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:38:53.761211] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:38:53.767193] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:38:53.767193] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:38:53.773177] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:38:53.774177] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:38:53.780159] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:38:53.782154] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:38:53.786142] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:38:53.786657] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:38:53.791633] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:38:53.794625] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:38:53.804598] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:38:53.805596] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:38:53.810583] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:38:53.816566] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:38:53.820555] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:38:53.820555] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:38:53.826540] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:38:53.829532] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:38:53.833521] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:38:53.838508] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:38:53.842497] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:38:53.842497] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:38:53.846486] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:38:53.850476] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:38:53.854465] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:38:53.854465] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:53.854465] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:53.855462] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:38:53.855462] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:38:53.855462] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:38:53.861446] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:38:53.865436] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:38:53.869425] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:38:53.869425] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:38:53.875409] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:38:53.878401] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:38:53.883388] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:38:53.883388] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:38:53.888375] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:38:53.893361] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:38:53.898347] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:38:53.899345] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:38:53.902337] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:38:53.906328] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:38:53.911313] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:38:53.914307] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:53.914307] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:53.915303] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:38:53.916300] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:38:53.916300] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:38:53.922284] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:38:53.927271] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:38:53.932257] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:38:53.935250] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:38:53.939238] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:38:53.939238] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:38:53.945222] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:38:53.948215] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:38:53.952204] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:38:53.953201] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:38:53.960182] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:38:53.961180] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:38:53.966167] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:38:53.969159] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:38:53.976140] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:38:53.982124] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:38:53.987110] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:38:53.989105] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:38:53.994092] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:38:53.998082] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:38:54.002071] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:38:54.002071] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:38:54.006060] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:38:54.010049] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:38:54.016033] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:38:54.019025] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:38:54.027004] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:38:54.031991] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:38:54.036977] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:38:54.037974] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:38:54.045954] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:38:54.051937] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:38:54.054929] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:38:54.055926] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:54.055926] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:54.055926] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:38:54.056924] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:38:54.056924] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:38:54.062908] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:38:54.065900] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:38:54.071884] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:38:54.073880] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:38:54.080860] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:38:54.085846] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:38:54.090834] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:38:54.094824] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:38:54.099809] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:38:54.099809] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:38:54.104796] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:38:54.107820] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:38:54.114770] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:38:54.116763] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:38:54.121750] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:38:54.128732] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:38:54.135713] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:38:54.142695] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:38:54.146683] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:38:54.146683] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:38:54.149676] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:38:54.154662] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:54.155660] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:54.155660] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:38:54.156657] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:38:54.156657] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:38:54.161644] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:38:54.163639] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:38:54.178599] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:38:54.183585] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:38:54.191565] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:38:54.191565] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:38:54.202534] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:38:54.205526] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:38:54.212508] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:38:54.218492] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:38:54.230460] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:38:54.231457] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:38:54.238439] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:38:54.240465] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:38:54.246417] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:38:54.246417] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:38:54.258385] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:38:54.258385] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:38:54.260379] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:38:54.260379] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:54.261378] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:54.263372] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:38:54.268359] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:38:54.268359] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:38:54.273345] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:38:54.273345] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:38:54.277334] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:38:54.281324] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:38:54.285313] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:38:54.289303] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:38:54.293291] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:38:54.293291] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:38:54.303266] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:38:54.304262] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:38:54.315232] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:38:54.315232] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:38:54.320220] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:38:54.324210] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:38:54.328198] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:38:54.328198] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:38:54.332187] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:38:54.337175] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:38:54.342161] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:38:54.345154] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:38:54.349142] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:38:54.349142] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:38:54.355126] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:38:54.357121] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:38:54.361111] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:38:54.366098] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:38:54.373078] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:38:54.379062] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:38:54.383051] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:38:54.383051] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:38:54.389035] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:38:54.392028] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:38:54.398012] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:38:54.401004] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:38:54.405990] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:38:54.406988] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:38:54.413969] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:38:54.414967] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:38:54.422945] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:38:54.426934] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:38:54.433916] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:38:54.436908] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:38:54.443889] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:38:54.447879] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:38:54.448876] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:38:54.449873] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:54.455858] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:54.465830] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:38:54.466827] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:38:54.466827] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:38:54.472811] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:38:54.476802] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:38:54.487772] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:38:54.492759] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:38:54.494753] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:38:54.495750] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:38:54.500737] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:38:54.503729] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:38:54.505724] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:38:54.505724] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:38:54.518689] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:38:54.523675] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:38:54.530657] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:38:54.534648] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:38:54.541628] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:38:54.545617] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:38:54.550604] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:38:54.550604] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:38:54.557585] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:38:54.559580] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:38:54.563569] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:38:54.567559] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:38:54.570550] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:38:54.570550] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:38:54.575537] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:38:54.579526] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:38:54.584513] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:38:54.589501] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:38:54.595483] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:38:54.602465] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:38:54.607451] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:38:54.607451] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:38:54.616428] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:38:54.616428] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:38:54.620417] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:38:54.621414] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:38:54.624406] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences -[2020-05-12 20:38:54.631388] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) -[2020-05-12 20:38:54.635377] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) -[2020-05-12 20:38:54.646347] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items -[2020-05-12 20:38:54.652332] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words -[2020-05-12 20:38:54.652332] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) -[2020-05-12 20:38:54.653329] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes -[2020-05-12 20:38:54.655323] INFO: gensim.models.word2vec: resetting layer weights -[2020-05-12 20:38:54.667292] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 -[2020-05-12 20:38:54.667292] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey -[2020-05-12 20:38:54.669286] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:38:54.670301] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:54.677265] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:54.688236] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:38:54.688236] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:38:54.688236] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:38:54.693222] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:38:54.700709] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:38:54.705695] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:38:54.716666] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:38:54.721652] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 -[2020-05-12 20:38:54.726641] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:38:54.728634] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:38:54.735615] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:38:54.741600] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:38:54.745588] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 -[2020-05-12 20:38:54.745588] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:38:54.748580] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:38:54.758553] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:38:54.759551] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:38:54.764537] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 -[2020-05-12 20:38:54.769525] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:38:54.771519] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:38:54.775508] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:38:54.785481] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:38:54.789471] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:38:54.796453] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:38:54.799444] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 -[2020-05-12 20:38:54.800441] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:38:54.802436] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:38:54.808420] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:38:54.812501] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:38:54.817396] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 -[2020-05-12 20:38:54.823380] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:38:54.825375] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:38:54.836346] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:38:54.837343] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:38:54.850308] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 -[2020-05-12 20:38:54.850308] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:38:54.852303] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:38:54.863274] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:38:54.871252] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:38:54.883220] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:38:54.883220] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:38:54.887209] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 -[2020-05-12 20:38:54.892196] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:38:54.894191] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:38:54.900176] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:38:54.903167] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:38:54.909151] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 -[2020-05-12 20:38:54.913140] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:38:54.916132] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:38:54.922116] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:38:54.929099] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:38:54.935082] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 -[2020-05-12 20:38:54.946053] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:38:54.948047] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:38:54.956027] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:38:54.960016] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:38:54.965001] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 -[2020-05-12 20:38:54.969990] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:38:54.971983] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:38:54.980959] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:38:54.985945] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:38:54.991929] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 -[2020-05-12 20:38:54.996917] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:38:55.000906] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:38:55.006890] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:38:55.012874] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:38:55.017860] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 -[2020-05-12 20:38:55.026836] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:38:55.028831] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:38:55.034815] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:38:55.040800] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:38:55.043791] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:38:55.044789] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:38:55.050772] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 -[2020-05-12 20:38:55.056756] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:38:55.058751] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:38:55.065732] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:38:55.073800] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:38:55.077700] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:38:55.077700] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:38:55.082687] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 -[2020-05-12 20:38:55.089669] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:38:55.091663] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:38:55.097647] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:38:55.104629] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:38:55.109615] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:38:55.117594] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:38:55.125572] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 -[2020-05-12 20:38:55.129563] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:38:55.132554] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:38:55.139534] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:38:55.143525] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:38:55.151503] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 -[2020-05-12 20:38:55.157488] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:38:55.159482] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:38:55.165466] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:38:55.170453] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:38:55.174441] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:38:55.181423] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:38:55.186410] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 -[2020-05-12 20:38:55.192395] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:38:55.195903] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:38:55.200878] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:38:55.211850] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:55.211850] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:55.215840] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:38:55.224818] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:38:55.225813] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:38:55.233791] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:38:55.235785] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:38:55.243764] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 -[2020-05-12 20:38:55.250746] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:38:55.252739] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:38:55.260718] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:38:55.266703] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:38:55.273684] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 -[2020-05-12 20:38:55.281664] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:38:55.285652] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:38:55.292634] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:38:55.298127] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:38:55.304111] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:38:55.312091] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:38:55.324059] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 -[2020-05-12 20:38:55.324059] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:38:55.334033] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:38:55.339018] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:38:55.347994] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:38:55.351983] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 -[2020-05-12 20:38:55.357968] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:38:55.359962] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:38:55.364949] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:38:55.370933] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:38:55.375919] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 -[2020-05-12 20:38:55.379910] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:38:55.381903] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:38:55.384895] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:38:55.385893] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:38:55.403352] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 -[2020-05-12 20:38:55.407343] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:38:55.408339] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:38:55.412328] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:38:55.412328] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:38:55.416317] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 -[2020-05-12 20:38:55.421305] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:38:55.423298] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:38:55.429283] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:38:55.434270] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:38:55.440253] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 -[2020-05-12 20:38:55.442249] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:38:55.444243] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:38:55.447235] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:38:55.448232] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:38:55.459202] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 -[2020-05-12 20:38:55.459202] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:38:55.461198] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:38:55.466184] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:38:55.471171] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:38:55.476157] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 -[2020-05-12 20:38:55.476157] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:38:55.479149] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:38:55.488125] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:38:55.488125] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:38:55.496616] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 -[2020-05-12 20:38:55.497607] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:38:55.499601] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:38:55.503590] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:38:55.504588] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:38:55.513564] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 -[2020-05-12 20:38:55.514561] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:38:55.516556] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:38:55.520545] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:38:55.527527] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:38:55.532513] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 -[2020-05-12 20:38:55.538497] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:38:55.540495] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:38:55.543484] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:38:55.543484] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:38:55.549467] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 -[2020-05-12 20:38:55.558443] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:38:55.566423] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:38:55.571409] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:38:55.571409] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:38:55.578390] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 -[2020-05-12 20:38:55.582381] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:38:55.584375] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:38:55.588364] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:38:55.597340] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:38:55.603324] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 -[2020-05-12 20:38:55.608310] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:38:55.611303] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:38:55.615292] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:38:55.623272] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:38:55.627259] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 -[2020-05-12 20:38:55.627259] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:38:55.629255] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:38:55.639228] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:38:55.643218] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:38:55.649201] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 -[2020-05-12 20:38:55.649201] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:38:55.651196] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:38:55.663164] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:38:55.664162] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:38:55.666156] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 -[2020-05-12 20:38:55.671143] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:38:55.673137] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:38:55.676129] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:38:55.676129] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:38:55.679122] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:38:55.686103] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:55.686103] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:55.687100] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:38:55.687100] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:38:55.687100] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:38:55.693084] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 -[2020-05-12 20:38:55.699068] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:38:55.699068] INFO: gensim.models.word2vec: PROGRESS: at 45.98% examples, 244516 words/s, in_qsize 0, out_qsize 0 -[2020-05-12 20:38:55.701063] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:38:55.705051] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:38:55.705051] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:38:55.709041] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 -[2020-05-12 20:38:55.713033] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:38:55.714028] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:38:55.718017] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:38:55.719016] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:38:55.724001] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 -[2020-05-12 20:38:55.726995] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:38:55.727991] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:38:55.733975] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:38:55.739959] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:38:55.743947] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:38:55.743947] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:38:55.747937] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 -[2020-05-12 20:38:55.755916] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:38:55.760903] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:55.761901] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:55.762897] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:38:55.762897] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:38:55.762897] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:38:55.766886] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:38:55.767884] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:38:55.771873] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 -[2020-05-12 20:38:55.775863] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:38:55.776860] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:38:55.781846] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:38:55.790823] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:38:55.794811] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 -[2020-05-12 20:38:55.795810] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:38:55.802791] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:38:55.805782] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:38:55.806779] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:38:55.810769] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 -[2020-05-12 20:38:55.816753] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:38:55.818747] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:38:55.824732] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:38:55.835704] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:38:55.852657] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 -[2020-05-12 20:38:55.859639] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:38:55.860636] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:38:55.875596] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:38:55.881581] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:38:55.897537] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 -[2020-05-12 20:38:55.904519] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:38:55.907511] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:38:55.923468] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:38:55.931447] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:38:55.936433] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:38:55.945410] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:38:55.957377] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 -[2020-05-12 20:38:55.959372] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:38:55.962364] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:38:55.974333] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:38:55.974333] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:38:55.982310] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 -[2020-05-12 20:38:55.987298] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:38:55.991287] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:38:56.010236] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:38:56.014226] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:38:56.016220] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:38:56.017217] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:56.017217] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:56.018215] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:38:56.024198] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:38:56.032178] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:38:56.037163] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 -[2020-05-12 20:38:56.038161] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:38:56.040155] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:38:56.049132] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:38:56.056113] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:38:56.061100] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 -[2020-05-12 20:38:56.066086] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:38:56.069078] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:38:56.073091] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:38:56.079051] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:38:56.084038] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 -[2020-05-12 20:38:56.089025] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:38:56.091020] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:38:56.096006] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:38:56.104983] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:38:56.108972] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 -[2020-05-12 20:38:56.115954] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:38:56.117948] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:38:56.123932] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:38:56.130913] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:38:56.134902] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 -[2020-05-12 20:38:56.134902] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:38:56.136897] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:38:56.145873] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:38:56.145873] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:38:56.147867] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:38:56.148865] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:56.148865] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:56.148865] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:38:56.149863] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:38:56.156844] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:38:56.167814] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 -[2020-05-12 20:38:56.169809] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:38:56.176790] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:38:56.188758] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:38:56.189755] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:38:56.194742] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 -[2020-05-12 20:38:56.199729] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:38:56.201723] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:38:56.206710] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:38:56.214689] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:38:56.218678] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 -[2020-05-12 20:38:56.218678] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:38:56.221670] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:38:56.235633] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:38:56.239622] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:38:56.244609] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 -[2020-05-12 20:38:56.247602] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:38:56.249596] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:38:56.252587] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:38:56.252587] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:38:56.257574] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 -[2020-05-12 20:38:56.260566] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:38:56.262561] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:38:56.270540] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:38:56.270540] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:56.270540] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:56.272534] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:38:56.272534] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:38:56.272534] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:38:56.276524] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:38:56.281511] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:38:56.285499] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 -[2020-05-12 20:38:56.285499] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:38:56.287495] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:38:56.291483] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:38:56.295473] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:38:56.305446] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:38:56.315419] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:38:56.329382] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 -[2020-05-12 20:38:56.330380] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:38:56.332374] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:38:56.342347] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:38:56.347334] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:38:56.350326] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 -[2020-05-12 20:38:56.351324] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:38:56.353318] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:38:56.361297] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:38:56.366283] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:38:56.369275] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:38:56.369275] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:38:56.375259] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 -[2020-05-12 20:38:56.379249] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:38:56.381243] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:38:56.384235] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:38:56.385233] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:38:56.391217] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 -[2020-05-12 20:38:56.392214] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:38:56.395206] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:38:56.405684] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:38:56.406682] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:38:56.418649] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 -[2020-05-12 20:38:56.418649] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:38:56.420644] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:38:56.423636] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:38:56.428623] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:38:56.431614] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 -[2020-05-12 20:38:56.432612] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:38:56.433609] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:38:56.437598] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:38:56.442587] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:38:56.446574] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 -[2020-05-12 20:38:56.446574] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:38:56.447572] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:38:56.456548] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:38:56.458542] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:38:56.464527] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 -[2020-05-12 20:38:56.469514] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:38:56.471508] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:38:56.475497] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:38:56.475497] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:38:56.488462] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 -[2020-05-12 20:38:56.488462] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:38:56.491455] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:38:56.498436] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:38:56.498436] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:38:56.498436] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:38:56.499433] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:38:56.500431] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:38:56.500431] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:38:56.507412] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:38:56.511402] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:38:56.515390] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 -[2020-05-12 20:38:56.516388] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:38:56.517385] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:38:56.527358] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:38:56.527358] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:38:56.529353] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:38:56.530350] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:38:56.531348] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:38:56.531348] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:38:56.537332] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 -[2020-05-12 20:38:56.547306] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:38:56.549300] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:38:56.552292] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:38:56.552292] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:38:56.560271] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 -[2020-05-12 20:38:56.566256] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:38:56.575231] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:38:56.578222] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:38:56.578222] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:38:56.583209] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 -[2020-05-12 20:38:56.587199] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:38:56.596175] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:38:56.600163] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:38:56.601162] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:38:56.602159] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:38:56.608143] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:38:56.622106] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 -[2020-05-12 20:38:56.624100] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:38:56.626095] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:38:56.631081] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:38:56.636069] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:38:56.641054] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 -[2020-05-12 20:38:56.641054] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:38:56.643050] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:38:56.654019] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:38:56.654019] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:38:56.660004] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 -[2020-05-12 20:38:56.664991] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:38:56.666985] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:38:56.669977] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:38:56.670975] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:38:56.680948] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 -[2020-05-12 20:38:56.684938] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs -[2020-05-12 20:38:56.692916] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs -[2020-05-12 20:38:56.692916] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:38:56.693914] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:38:56.693914] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads -[2020-05-12 20:38:56.694911] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads -[2020-05-12 20:38:56.694911] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads -[2020-05-12 20:38:56.709870] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:38:56.709870] INFO: gensim.models.word2vec: PROGRESS: at 100.00% examples, 254406 words/s, in_qsize 0, out_qsize 1 -[2020-05-12 20:38:56.710868] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads -[2020-05-12 20:38:56.710868] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 2.0s, 254283 effective words/s diff --git a/tmp/dna2vec-20200512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt b/tmp/dna2vec-20200512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt deleted file mode 100644 index 148333c..0000000 --- a/tmp/dna2vec-20200512-2040-k3to5-12d-4c-0Mbp-sliding-xqY.txt +++ /dev/null @@ -1,854 +0,0 @@ -[2020-05-12 20:40:34.614334] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml -[2020-05-12 20:40:34.614334] INFO: Generic: kmer fragmenter: sliding -[2020-05-12 20:40:34.614334] INFO: SeqGenerator: Number of epochs: 1 -[2020-05-12 20:40:34.614334] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 -[2020-05-12 20:40:34.615332] INFO: Learner: Context window half size: 4 -[2020-05-12 20:40:34.615332] INFO: Learner: Use skipgram: 1 -[2020-05-12 20:40:34.615332] INFO: Learner: gensim_iters: 1 -[2020-05-12 20:40:34.615332] INFO: Learner: vec_dim: 12 -[2020-05-12 20:40:34.625305] INFO: gensim.models.word2vec: collecting all words and their counts -[2020-05-12 20:40:34.625305] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:40:34.625305] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:34.625305] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:34.636275] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:40:34.637273] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:40:34.638271] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:40:34.643257] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -[2020-05-12 20:40:34.651236] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:40:34.651236] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:40:34.657219] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:40:34.658217] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:40:34.672180] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:40:34.677166] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:40:34.684147] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:40:34.686142] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:40:34.690131] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:40:34.690131] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:40:34.694121] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:40:34.699108] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:40:34.704094] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:40:34.705091] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:40:34.708083] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:40:34.713071] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:40:34.717059] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:40:34.721050] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:40:34.726035] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:40:34.727033] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:40:34.738003] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:40:34.740997] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:40:34.749971] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:40:34.754959] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:40:34.759944] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:40:34.760942] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:40:34.765929] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:40:34.768923] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:40:34.774905] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:40:34.776899] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:40:34.780889] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:40:34.781886] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:40:34.784878] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:40:34.787870] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:40:34.792856] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:40:34.796847] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:40:34.801832] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:40:34.802830] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:40:34.808814] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:40:34.809812] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:40:34.823774] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:40:34.823774] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:40:34.828761] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:40:34.830755] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:40:34.841726] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:40:34.844718] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:40:34.862670] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:40:34.862670] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:40:34.869651] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:40:34.872644] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:40:34.877630] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:40:34.880623] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:40:34.884611] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:40:34.884611] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:40:34.888600] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:40:34.894585] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:40:34.897576] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:40:34.898574] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:40:34.903560] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:40:34.906552] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:40:34.911539] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:40:34.913534] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:40:34.918520] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:40:34.921513] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:40:34.930488] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:40:34.931486] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:40:34.935475] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:40:34.941460] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:40:34.946445] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:40:34.946445] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:40:34.956420] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:40:34.957417] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:40:34.967390] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:40:34.968387] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:40:34.972376] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:40:34.976871] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:40:34.980860] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:40:34.983852] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:40:34.988838] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:40:34.988838] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:40:34.992828] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:40:34.996817] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:40:35.001804] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:40:35.004796] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:35.004796] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:35.006791] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:40:35.011778] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:40:35.017761] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:40:35.022748] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:40:35.023745] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:40:35.029729] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:40:35.032869] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:40:35.037708] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:40:35.037708] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:40:35.042694] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:40:35.047681] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:40:35.053666] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:40:35.058652] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:40:35.062641] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:40:35.066630] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:40:35.071617] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:40:35.071617] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:40:35.079104] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:40:35.080101] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:40:35.084090] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:40:35.088081] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:40:35.095062] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:40:35.096059] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:40:35.101045] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:40:35.102043] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:40:35.112016] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:40:35.116006] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:40:35.122987] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:40:35.128970] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:40:35.132960] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:40:35.137947] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:40:35.141936] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:40:35.142933] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:40:35.147920] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:40:35.149915] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:40:35.154901] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:40:35.158891] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:40:35.162880] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:40:35.162880] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:40:35.169861] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:40:35.171857] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:40:35.177347] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:40:35.178345] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:40:35.188318] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:40:35.192308] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:40:35.196296] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:40:35.196296] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:40:35.203278] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:40:35.204275] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:40:35.210259] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:40:35.213253] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:40:35.217240] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:40:35.218238] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:40:35.222227] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:40:35.227215] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:40:35.234196] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:40:35.239182] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:40:35.245166] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:40:35.248159] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:40:35.253144] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:40:35.254142] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:40:35.259128] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:40:35.261124] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:40:35.267107] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:40:35.269102] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:40:35.273091] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:40:35.273091] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:40:35.279581] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:40:35.281575] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:40:35.288557] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:40:35.289556] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:40:35.294541] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:40:35.296536] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:40:35.301522] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:40:35.301522] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:40:35.308503] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:40:35.309502] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:40:35.313490] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:40:35.317480] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:40:35.320471] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:40:35.321469] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:40:35.326455] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:40:35.330445] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:40:35.334434] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:40:35.337426] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:35.338426] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:35.339422] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:40:35.339422] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:40:35.340418] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:40:35.346402] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:40:35.350391] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:40:35.354381] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:40:35.359369] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:40:35.364354] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:40:35.364354] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:40:35.369341] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:40:35.373331] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:40:35.377319] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:40:35.377319] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:40:35.382306] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:40:35.385298] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:40:35.389287] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:40:35.394275] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:40:35.399260] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:40:35.399260] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:35.399260] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:35.400259] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:40:35.401256] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:40:35.407240] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:40:35.419207] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:40:35.421203] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:40:35.426188] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:40:35.427186] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:40:35.435166] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:40:35.436163] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:40:35.441148] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:40:35.441148] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:40:35.446135] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:40:35.448131] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:40:35.453116] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:40:35.456110] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:40:35.461095] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:40:35.462092] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:40:35.468077] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:40:35.469074] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:40:35.475058] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:40:35.477054] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:40:35.481042] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:40:35.482039] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:40:35.486029] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:40:35.490018] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:40:35.496002] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:40:35.496999] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:40:35.513954] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:40:35.513954] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:40:35.520936] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:40:35.521933] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:40:35.525922] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:40:35.530908] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:40:35.540882] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:40:35.541879] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:40:35.544871] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:40:35.544871] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:35.544871] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:35.545868] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:40:35.545868] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:40:35.545868] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:40:35.551852] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:40:35.552850] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:40:35.564818] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:40:35.566858] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:40:35.573794] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:40:35.574792] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:40:35.581773] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:40:35.586759] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:40:35.591746] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:40:35.591746] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:40:35.596732] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:40:35.600723] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:40:35.608701] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:40:35.611693] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:40:35.616681] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:40:35.621666] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:40:35.627650] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:40:35.628647] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:40:35.632636] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:40:35.636627] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:40:35.645602] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:40:35.646599] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:35.646599] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:35.646599] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:40:35.647597] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:40:35.647597] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:40:35.653580] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:40:35.656573] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:40:35.663554] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:40:35.664552] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:40:35.668540] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:40:35.672530] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:40:35.680508] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:40:35.684500] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:40:35.693474] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:40:35.694473] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:40:35.700455] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:40:35.705442] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:40:35.713421] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:40:35.714418] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:40:35.722397] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:40:35.727384] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:40:35.733367] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:40:35.733367] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:40:35.736359] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:40:35.747330] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:35.748329] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:35.749325] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:40:35.750322] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:40:35.750322] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:40:35.758300] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:40:35.760295] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:40:35.764284] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:40:35.767276] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:40:35.773260] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:40:35.775255] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:40:35.785228] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:40:35.789218] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:40:35.798194] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:40:35.798194] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:40:35.803180] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:40:35.804178] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:40:35.817144] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:40:35.824125] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:40:35.828114] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:40:35.828114] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:40:35.833100] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:40:35.838088] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:40:35.848060] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:40:35.852051] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:40:35.856039] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:40:35.856039] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:40:35.864018] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:40:35.865015] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:40:35.869004] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:40:35.875986] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:40:35.882967] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:40:35.885959] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:40:35.889948] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:40:35.893939] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:40:35.897927] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:40:35.897927] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:40:35.902914] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:40:35.905906] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:40:35.914883] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:40:35.915881] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:40:35.922860] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:40:35.927847] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:40:35.936823] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:40:35.940812] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:40:35.947794] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:40:35.949789] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:40:35.958764] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:40:35.965746] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:40:35.966743] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:40:35.968737] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:35.968737] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:35.969736] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:40:35.970733] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:40:35.976717] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:40:36.006636] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:40:36.006636] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:40:36.012622] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:40:36.014615] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:40:36.018604] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:40:36.024589] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:40:36.027581] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:40:36.034562] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:40:36.036556] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:40:36.037553] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:40:36.043537] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:40:36.047529] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:40:36.051516] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:40:36.051516] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:40:36.057500] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:40:36.060493] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:40:36.064482] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:40:36.065479] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:40:36.071463] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:40:36.074456] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:40:36.079441] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:40:36.079441] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:40:36.082434] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:40:36.088419] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:40:36.093404] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:40:36.094401] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:40:36.100385] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:40:36.101383] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:40:36.118338] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:40:36.118338] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:40:36.122327] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:40:36.123325] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:40:36.135292] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:40:36.135292] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:40:36.140279] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:40:36.149255] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:40:36.154241] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences -[2020-05-12 20:40:36.160226] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) -[2020-05-12 20:40:36.165213] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) -[2020-05-12 20:40:36.168204] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items -[2020-05-12 20:40:36.169202] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words -[2020-05-12 20:40:36.169202] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) -[2020-05-12 20:40:36.169202] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes -[2020-05-12 20:40:36.174188] INFO: gensim.models.word2vec: resetting layer weights -[2020-05-12 20:40:36.190650] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 -[2020-05-12 20:40:36.192646] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey -[2020-05-12 20:40:36.194640] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:40:36.195637] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:36.195637] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:36.197631] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:40:36.197631] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:40:36.197631] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:40:36.202618] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:40:36.216582] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:40:36.222565] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:40:36.229546] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:40:36.238522] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 -[2020-05-12 20:40:36.243509] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:40:36.245503] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:40:36.255477] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:40:36.260463] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:40:36.268441] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 -[2020-05-12 20:40:36.272432] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:40:36.275423] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:40:36.279412] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:40:36.283402] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:40:36.287391] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 -[2020-05-12 20:40:36.288388] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:40:36.296367] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:40:36.301354] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:40:36.301354] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:40:36.306340] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:40:36.312325] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:40:36.315316] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 -[2020-05-12 20:40:36.316313] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:40:36.318310] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:40:36.329279] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:40:36.329279] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:40:36.335263] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 -[2020-05-12 20:40:36.338255] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:40:36.340250] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:40:36.346234] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:40:36.351220] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:40:36.358202] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 -[2020-05-12 20:40:36.359199] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:40:36.361194] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:40:36.366180] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:40:36.374159] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:40:36.377151] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:40:36.377151] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:40:36.382138] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 -[2020-05-12 20:40:36.386127] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:40:36.388122] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:40:36.400089] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:40:36.401089] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:40:36.414052] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 -[2020-05-12 20:40:36.415050] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:40:36.422031] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:40:36.427017] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:40:36.428015] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:40:36.436991] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 -[2020-05-12 20:40:36.436991] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:40:36.438986] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:40:36.444970] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:40:36.449957] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:40:36.457935] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 -[2020-05-12 20:40:36.463919] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:40:36.465914] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:40:36.472895] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:40:36.482869] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:40:36.491845] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 -[2020-05-12 20:40:36.494837] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:40:36.498826] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:40:36.509796] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:40:36.510794] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:40:36.514783] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 -[2020-05-12 20:40:36.520768] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:40:36.522761] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:40:36.527748] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:40:36.533733] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:40:36.538719] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:40:36.546699] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:40:36.553680] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 -[2020-05-12 20:40:36.561658] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:40:36.563652] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:40:36.569636] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:40:36.575621] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:40:36.581604] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:40:36.587588] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:40:36.595568] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 -[2020-05-12 20:40:36.603547] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:40:36.605541] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:40:36.614516] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:40:36.618506] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:40:36.624490] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:40:36.630474] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:40:36.637456] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 -[2020-05-12 20:40:36.644436] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:40:36.646431] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:40:36.651418] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:40:36.659397] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:40:36.663386] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 -[2020-05-12 20:40:36.664384] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:40:36.674357] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:40:36.680341] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:40:36.686831] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:40:36.694809] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:40:36.698799] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:40:36.702787] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 -[2020-05-12 20:40:36.702787] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:40:36.704782] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:40:36.709769] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:40:36.712761] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:36.713759] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:36.715753] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:40:36.715753] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:40:36.715753] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:40:36.723731] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:40:36.726724] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:40:36.734703] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 -[2020-05-12 20:40:36.745674] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:40:36.748666] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:40:36.767615] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:40:36.770607] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:40:36.773598] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 -[2020-05-12 20:40:36.774596] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:40:36.776590] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:40:36.798040] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:40:36.801033] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:40:36.807016] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:40:36.815993] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:40:36.819981] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 -[2020-05-12 20:40:36.825966] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:40:36.827960] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:40:36.838931] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:40:36.839928] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:40:36.842920] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 -[2020-05-12 20:40:36.842920] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:40:36.845913] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:40:36.860872] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:40:36.867855] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:40:36.872840] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 -[2020-05-12 20:40:36.879821] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:40:36.881816] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:40:36.884807] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:40:36.885805] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:40:36.891298] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 -[2020-05-12 20:40:36.893293] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:40:36.903267] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:40:36.906258] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:40:36.906258] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:40:36.910247] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 -[2020-05-12 20:40:36.915234] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:40:36.916231] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:40:36.922215] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:40:36.931191] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:40:36.934183] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 -[2020-05-12 20:40:36.935180] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:40:36.937175] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:40:36.946151] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:40:36.946151] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:40:36.951138] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 -[2020-05-12 20:40:36.957123] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:40:36.958119] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:40:36.964106] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:40:36.970087] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:40:36.973079] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 -[2020-05-12 20:40:36.973079] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:40:36.975073] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:40:36.979063] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:40:36.984050] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:40:36.989541] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 -[2020-05-12 20:40:36.989541] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:40:36.990538] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:40:37.002506] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:40:37.007493] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:40:37.010485] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 -[2020-05-12 20:40:37.010485] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:40:37.012480] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:40:37.023450] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:40:37.023450] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:40:37.030431] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 -[2020-05-12 20:40:37.032426] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:40:37.033424] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:40:37.037413] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:40:37.038410] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:40:37.043397] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 -[2020-05-12 20:40:37.049382] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:40:37.051376] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:40:37.056362] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:40:37.059354] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:40:37.067333] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 -[2020-05-12 20:40:37.068330] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:40:37.070325] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:40:37.074315] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:40:37.074315] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:40:37.082293] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 -[2020-05-12 20:40:37.082293] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:40:37.084288] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:40:37.090272] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:40:37.095259] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:40:37.099247] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 -[2020-05-12 20:40:37.099247] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:40:37.101242] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:40:37.106229] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:40:37.117200] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:40:37.122186] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 -[2020-05-12 20:40:37.131163] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:40:37.133157] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:40:37.137147] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:40:37.143130] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:40:37.148117] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 -[2020-05-12 20:40:37.148117] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:40:37.150112] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:40:37.154101] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:40:37.163077] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:40:37.166069] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:40:37.172054] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:37.172054] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:37.173050] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:40:37.173050] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:40:37.173050] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:40:37.178037] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 -[2020-05-12 20:40:37.188011] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:40:37.190005] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:40:37.193994] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:40:37.198981] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:40:37.203967] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 -[2020-05-12 20:40:37.203967] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:40:37.204965] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:40:37.206960] INFO: gensim.models.word2vec: PROGRESS: at 47.70% examples, 253947 words/s, in_qsize 0, out_qsize 0 -[2020-05-12 20:40:37.217930] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:40:37.222917] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:40:37.225909] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 -[2020-05-12 20:40:37.225909] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:40:37.227904] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:40:37.240870] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:40:37.247851] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:40:37.250843] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:40:37.251839] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:40:37.256826] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 -[2020-05-12 20:40:37.263807] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:40:37.268795] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:37.268795] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:37.270789] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:40:37.270789] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:40:37.271786] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:40:37.274778] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:40:37.283755] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:40:37.286746] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 -[2020-05-12 20:40:37.287743] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:40:37.288741] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:40:37.292730] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:40:37.302704] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:40:37.316666] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 -[2020-05-12 20:40:37.316666] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:40:37.319658] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:40:37.335615] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:40:37.335615] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:40:37.340602] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 -[2020-05-12 20:40:37.344592] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:40:37.346586] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:40:37.356559] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:40:37.356559] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:40:37.363541] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 -[2020-05-12 20:40:37.365536] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:40:37.367530] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:40:37.374511] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:40:37.381493] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:40:37.384485] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 -[2020-05-12 20:40:37.384485] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:40:37.386479] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:40:37.397450] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:40:37.397450] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:40:37.400443] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:40:37.401440] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:40:37.412410] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 -[2020-05-12 20:40:37.412410] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:40:37.414405] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:40:37.425375] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:40:37.427370] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:40:37.432357] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 -[2020-05-12 20:40:37.435349] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:40:37.437343] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:40:37.443327] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:40:37.449312] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:40:37.451306] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:40:37.452303] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:37.452303] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:37.452303] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:40:37.452303] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:40:37.453301] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:40:37.459285] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 -[2020-05-12 20:40:37.463275] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:40:37.465269] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:40:37.471253] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:40:37.476239] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:40:37.482223] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 -[2020-05-12 20:40:37.488208] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:40:37.491200] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:40:37.501173] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:40:37.501173] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:40:37.506159] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 -[2020-05-12 20:40:37.511147] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:40:37.513141] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:40:37.518127] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:40:37.518127] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:40:37.522117] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 -[2020-05-12 20:40:37.526107] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:40:37.527104] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:40:37.533088] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:40:37.538074] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:40:37.544058] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 -[2020-05-12 20:40:37.547051] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:40:37.549045] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:40:37.552036] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:40:37.552036] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:40:37.556026] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:40:37.560015] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:37.561014] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:37.561014] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:40:37.562010] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:40:37.562010] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:40:37.565999] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 -[2020-05-12 20:40:37.565999] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:40:37.567994] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:40:37.581957] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:40:37.586943] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:40:37.591930] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 -[2020-05-12 20:40:37.594922] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:40:37.596917] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:40:37.602901] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:40:37.608885] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:40:37.615866] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 -[2020-05-12 20:40:37.615866] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:40:37.616864] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:40:37.626836] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:40:37.626836] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:40:37.631823] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 -[2020-05-12 20:40:37.635813] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:40:37.637808] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:40:37.647780] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:40:37.647780] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:40:37.653764] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 -[2020-05-12 20:40:37.656756] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:40:37.658752] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:40:37.661743] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:40:37.661743] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:37.661743] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:37.662741] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:40:37.662741] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:40:37.663738] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:40:37.667727] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:40:37.673711] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:40:37.677700] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 -[2020-05-12 20:40:37.677700] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:40:37.679696] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:40:37.691663] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:40:37.691663] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:40:37.697647] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:40:37.698645] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:40:37.710613] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 -[2020-05-12 20:40:37.710613] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:40:37.711610] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:40:37.717594] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:40:37.726570] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:40:37.737540] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 -[2020-05-12 20:40:37.737540] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:40:37.739535] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:40:37.744522] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:40:37.749509] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:40:37.754495] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:40:37.755493] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:40:37.766463] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 -[2020-05-12 20:40:37.775440] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:40:37.781424] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:40:37.785412] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:40:37.785412] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:40:37.788404] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 -[2020-05-12 20:40:37.789402] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:40:37.795386] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:40:37.807354] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:40:37.807354] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:40:37.816330] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 -[2020-05-12 20:40:37.817328] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:40:37.819322] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:40:37.822314] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:40:37.822314] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:40:37.827300] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 -[2020-05-12 20:40:37.830293] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:40:37.837274] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:40:37.848244] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:40:37.852234] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:40:37.857220] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 -[2020-05-12 20:40:37.857220] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:40:37.858218] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:40:37.869188] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:40:37.873181] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:40:37.878164] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 -[2020-05-12 20:40:37.878164] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:40:37.880160] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:40:37.890132] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:40:37.894123] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:40:37.899617] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 -[2020-05-12 20:40:37.899617] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:40:37.900615] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:40:37.908593] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:40:37.909591] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:40:37.909591] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:40:37.910588] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:40:37.910588] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:40:37.911586] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:40:37.917569] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:40:37.921560] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:40:37.924550] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 -[2020-05-12 20:40:37.925547] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:40:37.926545] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:40:37.929537] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:40:37.942503] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:40:37.945494] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:40:37.945494] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:40:37.946492] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:40:37.946492] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:40:37.953473] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 -[2020-05-12 20:40:37.957463] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:40:37.958460] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:40:37.961452] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:40:37.962449] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:40:37.967436] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 -[2020-05-12 20:40:37.976412] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:40:37.983393] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:40:37.988379] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:40:37.988379] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:40:37.993366] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 -[2020-05-12 20:40:37.998355] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:40:37.999351] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:40:38.003340] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:40:38.004351] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:40:38.007329] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:40:38.012317] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:40:38.016305] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 -[2020-05-12 20:40:38.016305] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:40:38.018299] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:40:38.024283] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:40:38.034257] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:40:38.038246] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 -[2020-05-12 20:40:38.039244] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:40:38.041239] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:40:38.050214] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:40:38.051212] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:40:38.054204] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 -[2020-05-12 20:40:38.060188] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:40:38.062183] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:40:38.065174] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:40:38.066171] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:40:38.069164] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 -[2020-05-12 20:40:38.074150] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs -[2020-05-12 20:40:38.077142] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs -[2020-05-12 20:40:38.078140] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:40:38.078140] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads -[2020-05-12 20:40:38.078140] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads -[2020-05-12 20:40:38.080134] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:40:38.080134] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads -[2020-05-12 20:40:38.099083] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:40:38.102076] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads -[2020-05-12 20:40:38.102076] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 1.9s, 272191 effective words/s diff --git a/tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt b/tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt deleted file mode 100644 index fb9b410..0000000 --- a/tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.txt +++ /dev/null @@ -1,855 +0,0 @@ -[2020-05-12 20:42:53.638727] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml -[2020-05-12 20:42:53.639724] INFO: Generic: kmer fragmenter: sliding -[2020-05-12 20:42:53.639724] INFO: SeqGenerator: Number of epochs: 1 -[2020-05-12 20:42:53.639724] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 -[2020-05-12 20:42:53.639724] INFO: Learner: Context window half size: 4 -[2020-05-12 20:42:53.639724] INFO: Learner: Use skipgram: 1 -[2020-05-12 20:42:53.640722] INFO: Learner: gensim_iters: 1 -[2020-05-12 20:42:53.640722] INFO: Learner: vec_dim: 12 -[2020-05-12 20:42:53.640722] INFO: gensim.models.word2vec: collecting all words and their counts -[2020-05-12 20:42:53.648210] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:42:53.648210] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:53.648210] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:53.659179] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:42:53.659179] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:42:53.660176] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:42:53.664165] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -[2020-05-12 20:42:53.665163] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:42:53.665163] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:42:53.671146] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:42:53.672145] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:42:53.678128] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:42:53.679126] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:42:53.692091] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:42:53.692091] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:42:53.699071] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:42:53.702065] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:42:53.707051] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:42:53.713034] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:42:53.723008] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:42:53.724006] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:42:53.728992] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:42:53.733978] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:42:53.739962] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:42:53.749443] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:42:53.758418] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:42:53.762408] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:42:53.769389] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:42:53.770387] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:42:53.777368] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:42:53.783353] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:42:53.791331] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:42:53.792329] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:42:53.799309] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:42:53.805293] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:42:53.811277] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:42:53.818259] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:42:53.824242] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:42:53.831224] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:42:53.837208] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:42:53.840201] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:42:53.844189] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:42:53.844189] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:42:53.853166] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:42:53.853166] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:42:53.868125] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:42:53.872114] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:42:53.883085] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:42:53.889070] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:42:53.893058] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:42:53.894056] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:42:53.901037] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:42:53.902035] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:42:53.909016] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:42:53.914002] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:42:53.922979] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:42:53.922979] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:42:53.928962] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:42:53.928962] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:42:53.942926] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:42:53.948909] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:42:53.953895] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:42:53.960878] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:42:53.964867] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:42:53.970851] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:42:53.974840] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:42:53.981821] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:42:53.988802] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:42:53.991795] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:42:53.995784] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:42:53.999773] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:42:54.003763] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:42:54.003763] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:42:54.009746] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:42:54.015731] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:42:54.021715] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:42:54.025705] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:42:54.032685] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:42:54.035678] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:42:54.039666] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:42:54.039666] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:42:54.045650] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:42:54.049640] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:42:54.053629] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:42:54.053629] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:42:54.059613] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:42:54.060611] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:42:54.071581] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:42:54.073576] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:42:54.078562] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:42:54.082552] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:54.082552] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:54.084546] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:42:54.084546] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:42:54.084546] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:42:54.089533] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:42:54.094520] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:42:54.100503] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:42:54.103497] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:42:54.107485] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:42:54.108482] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:42:54.112472] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:42:54.116461] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:42:54.122445] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:42:54.122445] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:42:54.127432] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:42:54.132419] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:42:54.136407] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:42:54.137405] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:42:54.148376] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:42:54.148376] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:42:54.155357] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:42:54.157352] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:42:54.166328] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:42:54.166328] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:42:54.172313] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:42:54.174307] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:42:54.179294] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:42:54.186274] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:42:54.197245] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:42:54.200238] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:42:54.204226] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:42:54.205224] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:42:54.212205] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:42:54.252099] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:42:54.259079] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:42:54.264067] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:42:54.270050] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:42:54.279026] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:42:54.285011] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:42:54.292989] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:42:54.300968] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:42:54.304957] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:42:54.314930] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:42:54.321912] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:42:54.326898] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:42:54.333880] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:42:54.337869] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:42:54.337869] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:42:54.347843] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:42:54.348840] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:42:54.355821] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:42:54.362802] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:42:54.370781] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:42:54.378760] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:42:54.382749] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:42:54.386738] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:42:54.394717] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:42:54.400702] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:42:54.404690] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:42:54.408680] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:42:54.413666] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:42:54.414663] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:42:54.424637] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:42:54.429624] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:42:54.434610] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:42:54.435608] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:42:54.442589] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:42:54.450569] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:42:54.459543] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:42:54.465528] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:42:54.477495] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:42:54.479491] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:42:54.487469] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:42:54.492458] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:42:54.496445] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:42:54.497442] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:42:54.506418] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:42:54.513400] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:42:54.518386] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:42:54.518386] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:42:54.530354] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:42:54.535342] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:42:54.542323] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:42:54.547309] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:42:54.551298] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:42:54.551298] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:54.551298] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:54.552296] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:42:54.552296] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:42:54.552296] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:42:54.558280] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:42:54.561272] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:42:54.565261] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:42:54.565261] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:42:54.573240] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:42:54.575235] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:42:54.581218] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:42:54.584211] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:42:54.592189] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:42:54.598174] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:42:54.607149] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:42:54.610141] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:42:54.615127] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:42:54.615127] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:42:54.621112] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:42:54.624104] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:54.624104] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:54.625101] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:42:54.626098] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:42:54.626098] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:42:54.632083] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:42:54.638067] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:42:54.646046] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:42:54.653027] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:42:54.661512] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:42:54.665502] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:42:54.671485] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:42:54.672484] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:42:54.688439] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:42:54.694424] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:42:54.700408] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:42:54.706392] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:42:54.716366] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:42:54.719357] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:42:54.730328] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:42:54.732323] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:42:54.742298] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:42:54.742298] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:42:54.747282] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:42:54.747282] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:42:54.752269] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:42:54.765235] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:42:54.775208] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:42:54.785181] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:42:54.798147] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:42:54.800141] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:42:54.812111] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:42:54.816099] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:42:54.827070] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:42:54.830062] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:42:54.838040] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:42:54.839037] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:42:54.853000] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:42:54.853000] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:54.853000] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:54.853997] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:42:54.859983] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:42:54.859983] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:42:54.865964] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:42:54.865964] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:42:54.873944] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:42:54.880926] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:42:54.894888] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:42:54.900871] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:42:54.906856] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:42:54.906856] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:42:54.911842] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:42:54.915832] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:42:54.920818] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:42:54.921815] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:42:54.926802] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:42:54.928797] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:42:54.933783] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:42:54.937773] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:42:54.942777] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:42:54.952733] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:42:54.955725] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:42:54.955725] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:42:54.961708] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:42:54.965698] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:54.965698] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:54.966696] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:42:54.966696] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:42:54.966696] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:42:54.972679] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:42:54.977667] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:42:54.984647] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:42:54.990631] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:42:54.996615] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:42:54.996615] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:42:55.001602] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:42:55.006589] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:42:55.011575] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:42:55.012573] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:42:55.017559] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:42:55.019555] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:42:55.026535] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:42:55.026535] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:42:55.031522] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:42:55.033517] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:42:55.039500] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:42:55.039500] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:42:55.042493] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:42:55.048477] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:55.048477] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:55.049474] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:42:55.049474] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:42:55.050471] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:42:55.054461] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:42:55.061443] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:42:55.066428] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:42:55.066428] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:42:55.072412] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:42:55.074408] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:42:55.079394] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:42:55.079394] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:42:55.086375] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:42:55.088370] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:42:55.097347] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:42:55.103331] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:42:55.108316] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:42:55.109314] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:42:55.113303] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:42:55.117294] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:42:55.121282] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:42:55.121282] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:42:55.127266] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:42:55.131256] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:42:55.134247] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:42:55.135245] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:42:55.140231] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:42:55.144221] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:42:55.148210] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:42:55.148210] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:42:55.157691] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:42:55.162677] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:42:55.167664] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:42:55.172653] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:42:55.176640] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:42:55.176640] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:42:55.181627] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:42:55.185616] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:42:55.191600] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:42:55.193595] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:42:55.206560] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:42:55.207558] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:42:55.218528] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:42:55.220525] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:42:55.229499] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:42:55.229499] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:42:55.235483] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:42:55.241469] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:42:55.244459] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:42:55.244459] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:55.244459] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:55.245456] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:42:55.245456] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:42:55.246453] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:42:55.253435] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:42:55.255950] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:42:55.260923] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:42:55.261920] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:42:55.263915] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:42:55.268902] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:42:55.272891] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:42:55.276881] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:42:55.278875] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:42:55.278875] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:42:55.284859] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:42:55.289847] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:42:55.295830] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:42:55.295830] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:42:55.302811] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:42:55.304807] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:42:55.308795] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:42:55.308795] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:42:55.316774] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:42:55.317777] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:42:55.323755] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:42:55.323755] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:42:55.326747] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:42:55.331734] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:42:55.336720] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:42:55.336720] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:42:55.342704] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:42:55.345696] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:42:55.351680] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:42:55.358169] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:42:55.363156] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:42:55.368144] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:42:55.374126] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:42:55.380111] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:42:55.384100] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:42:55.385097] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:42:55.388089] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences -[2020-05-12 20:42:55.397065] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) -[2020-05-12 20:42:55.397065] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) -[2020-05-12 20:42:55.400057] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items -[2020-05-12 20:42:55.400057] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words -[2020-05-12 20:42:55.400057] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) -[2020-05-12 20:42:55.400057] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes -[2020-05-12 20:42:55.403049] INFO: gensim.models.word2vec: resetting layer weights -[2020-05-12 20:42:55.419006] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 -[2020-05-12 20:42:55.422996] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey -[2020-05-12 20:42:55.424990] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:42:55.424990] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:55.424990] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:55.426985] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:42:55.426985] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:42:55.426985] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:42:55.430974] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:42:55.437956] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:42:55.441945] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:42:55.442942] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:42:55.446931] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 -[2020-05-12 20:42:55.451919] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:42:55.453913] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:42:55.460401] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:42:55.464391] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:42:55.468380] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 -[2020-05-12 20:42:55.468380] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:42:55.470375] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:42:55.474364] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:42:55.481346] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:42:55.486332] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 -[2020-05-12 20:42:55.492317] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:42:55.494311] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:42:55.497303] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:42:55.497303] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:42:55.501292] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:42:55.506279] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:42:55.510268] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 -[2020-05-12 20:42:55.511265] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:42:55.513261] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:42:55.522236] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:42:55.523233] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:42:55.528221] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 -[2020-05-12 20:42:55.534206] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:42:55.536199] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:42:55.540188] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:42:55.540188] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:42:55.547170] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 -[2020-05-12 20:42:55.555149] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:42:55.562131] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:42:55.565121] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:42:55.566119] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:42:55.570108] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:42:55.576093] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:42:55.579084] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 -[2020-05-12 20:42:55.579084] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:42:55.581079] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:42:55.585068] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:42:55.588060] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:42:55.594044] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 -[2020-05-12 20:42:55.597037] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:42:55.598034] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:42:55.604017] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:42:55.609004] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:42:55.614988] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 -[2020-05-12 20:42:55.616984] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:42:55.618978] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:42:55.622967] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:42:55.623965] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:42:55.627953] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 -[2020-05-12 20:42:55.630946] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:42:55.632940] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:42:55.638924] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:42:55.643911] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:42:55.648897] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 -[2020-05-12 20:42:55.648897] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:42:55.651890] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:42:55.662860] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:42:55.667847] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:42:55.672833] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 -[2020-05-12 20:42:55.678818] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:42:55.680812] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:42:55.689788] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:42:55.689788] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:42:55.695772] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:42:55.699761] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:42:55.703751] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 -[2020-05-12 20:42:55.707740] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:42:55.709735] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:42:55.714722] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:42:55.720707] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:42:55.726689] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:42:55.728685] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:42:55.731676] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 -[2020-05-12 20:42:55.731676] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:42:55.733670] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:42:55.738657] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:42:55.741650] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:42:55.751623] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:42:55.754615] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:42:55.769575] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 -[2020-05-12 20:42:55.772567] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:42:55.774562] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:42:55.777553] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:42:55.784535] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:42:55.787527] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 -[2020-05-12 20:42:55.787527] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:42:55.789521] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:42:55.795505] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:42:55.797501] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:42:55.800492] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:42:55.801490] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:42:55.804482] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 -[2020-05-12 20:42:55.810465] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:42:55.812460] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:42:55.823431] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:42:55.823431] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:55.823431] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:55.826424] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:42:55.832408] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:42:55.832408] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:42:55.835399] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:42:55.835399] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:42:55.840385] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 -[2020-05-12 20:42:55.845372] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:42:55.848364] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:42:55.859335] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:42:55.860332] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:42:55.870305] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 -[2020-05-12 20:42:55.870305] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:42:55.871303] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:42:55.876289] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:42:55.880285] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:42:55.885265] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:42:55.888258] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:42:55.891249] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 -[2020-05-12 20:42:55.891249] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:42:55.893244] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:42:55.904215] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:42:55.904215] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:42:55.907206] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 -[2020-05-12 20:42:55.908204] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:42:55.916183] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:42:55.925159] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:42:55.929149] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:42:55.935132] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 -[2020-05-12 20:42:55.937127] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:42:55.939121] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:42:55.944108] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:42:55.949094] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:42:55.956076] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 -[2020-05-12 20:42:55.958071] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:42:55.960065] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:42:55.964055] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:42:55.970038] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:42:55.974028] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 -[2020-05-12 20:42:55.979015] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:42:55.981009] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:42:55.986993] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:42:55.990983] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:42:55.995969] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 -[2020-05-12 20:42:55.998961] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:42:56.000956] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:42:56.006940] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:42:56.012924] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:42:56.016913] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 -[2020-05-12 20:42:56.017910] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:42:56.018908] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:42:56.023894] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:42:56.032871] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:42:56.043841] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 -[2020-05-12 20:42:56.046833] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:42:56.049826] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:42:56.058801] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:42:56.058801] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:42:56.063788] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 -[2020-05-12 20:42:56.067785] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:42:56.069772] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:42:56.074758] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:42:56.075756] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:42:56.085729] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 -[2020-05-12 20:42:56.088722] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:42:56.091713] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:42:56.096700] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:42:56.105676] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:42:56.111660] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 -[2020-05-12 20:42:56.116647] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:42:56.118641] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:42:56.121633] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:42:56.122630] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:42:56.128615] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 -[2020-05-12 20:42:56.131608] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:42:56.133601] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:42:56.138588] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:42:56.144572] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:42:56.149558] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 -[2020-05-12 20:42:56.149558] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:42:56.151553] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:42:56.156540] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:42:56.158535] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:42:56.163521] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 -[2020-05-12 20:42:56.163521] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:42:56.165517] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:42:56.178481] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:42:56.179480] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:42:56.185462] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 -[2020-05-12 20:42:56.186460] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:42:56.188454] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:42:56.191447] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:42:56.192444] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:42:56.197431] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 -[2020-05-12 20:42:56.206407] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:42:56.216381] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:42:56.219372] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:42:56.219372] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:42:56.223361] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 -[2020-05-12 20:42:56.227350] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:42:56.229345] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:42:56.233334] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:42:56.233334] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:42:56.236327] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:42:56.243308] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:56.243308] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:56.244305] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:42:56.244305] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:42:56.245302] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:42:56.250289] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 -[2020-05-12 20:42:56.255287] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:42:56.257271] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:42:56.266246] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:42:56.266246] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:42:56.271233] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 -[2020-05-12 20:42:56.276220] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:42:56.278214] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:42:56.287190] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:42:56.287190] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:42:56.290183] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 -[2020-05-12 20:42:56.298162] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:42:56.299159] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:42:56.304145] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:42:56.304145] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:42:56.307137] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:42:56.313121] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:42:56.316113] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 -[2020-05-12 20:42:56.320103] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:42:56.325090] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:56.325090] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:56.326087] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:42:56.326087] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:42:56.327083] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:42:56.330076] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:42:56.330076] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:42:56.335062] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 -[2020-05-12 20:42:56.338054] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:42:56.346034] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:42:56.349025] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:42:56.350022] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:42:56.353015] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 -[2020-05-12 20:42:56.358998] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:42:56.360993] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:42:56.372469] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:42:56.372469] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:42:56.380447] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 -[2020-05-12 20:42:56.383439] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:42:56.385434] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:42:56.389423] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:42:56.394410] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:42:56.399397] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 -[2020-05-12 20:42:56.400394] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:42:56.402389] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:42:56.412362] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:42:56.416352] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:42:56.419343] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 -[2020-05-12 20:42:56.420341] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:42:56.425328] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:42:56.434303] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:42:56.434303] INFO: gensim.models.word2vec: PROGRESS: at 56.32% examples, 300482 words/s, in_qsize 0, out_qsize 0 -[2020-05-12 20:42:56.434303] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:42:56.439290] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:42:56.444277] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:42:56.449263] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 -[2020-05-12 20:42:56.449263] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:42:56.451259] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:42:56.462229] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:42:56.462229] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:42:56.466218] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 -[2020-05-12 20:42:56.473199] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:42:56.475194] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:42:56.481178] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:42:56.485168] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:42:56.487162] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:42:56.487162] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:56.487162] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:56.488159] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:42:56.488159] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:42:56.489157] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:42:56.495141] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 -[2020-05-12 20:42:56.498133] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:42:56.500127] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:42:56.510101] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:42:56.511098] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:42:56.516084] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 -[2020-05-12 20:42:56.519077] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:42:56.521071] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:42:56.531044] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:42:56.532042] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:42:56.535034] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 -[2020-05-12 20:42:56.539023] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:42:56.541018] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:42:56.551989] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:42:56.555978] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:42:56.559967] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 -[2020-05-12 20:42:56.559967] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:42:56.561962] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:42:56.571935] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:42:56.571935] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:42:56.575925] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 -[2020-05-12 20:42:56.580911] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:42:56.582907] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:42:56.591882] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:42:56.591882] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:42:56.594874] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:42:56.595872] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:56.602854] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:56.610832] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:42:56.610832] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:42:56.611829] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:42:56.615818] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 -[2020-05-12 20:42:56.615818] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:42:56.617813] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:42:56.627786] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:42:56.629781] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:42:56.639754] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 -[2020-05-12 20:42:56.644741] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:42:56.646735] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:42:56.650724] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:42:56.650724] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:42:56.658704] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 -[2020-05-12 20:42:56.663690] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:42:56.666682] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:42:56.676655] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:42:56.677652] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:42:56.683636] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 -[2020-05-12 20:42:56.687626] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:42:56.688624] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:42:56.692613] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:42:56.693611] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:42:56.708570] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 -[2020-05-12 20:42:56.710565] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:42:56.712559] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:42:56.714554] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:42:56.720538] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:56.720538] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:56.722533] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:42:56.722533] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:42:56.728517] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:42:56.732506] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:42:56.733503] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:42:56.736495] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 -[2020-05-12 20:42:56.741482] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:42:56.743476] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:42:56.752452] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:42:56.753449] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:42:56.756442] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:42:56.762426] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:42:56.767412] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 -[2020-05-12 20:42:56.767412] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:42:56.769408] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:42:56.773396] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:42:56.776389] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:42:56.780378] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 -[2020-05-12 20:42:56.780378] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:42:56.781376] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:42:56.785364] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:42:56.796335] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:42:56.807306] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:42:56.811296] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:42:56.815284] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 -[2020-05-12 20:42:56.818277] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:42:56.824261] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:42:56.831242] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:42:56.834234] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:42:56.840218] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 -[2020-05-12 20:42:56.846202] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:42:56.848197] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:42:56.851188] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:42:56.851188] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:42:56.857172] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 -[2020-05-12 20:42:56.863156] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:42:56.865151] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:42:56.868648] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:42:56.873635] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:42:56.879619] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 -[2020-05-12 20:42:56.886600] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:42:56.888595] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:42:56.899565] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:42:56.900563] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:42:56.908542] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 -[2020-05-12 20:42:56.908542] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:42:56.910536] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:42:56.915523] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:42:56.921507] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:42:56.925496] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 -[2020-05-12 20:42:56.929487] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:42:56.931480] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:42:56.936468] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:42:56.943448] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:42:56.948435] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 -[2020-05-12 20:42:56.948435] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:42:56.950430] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:42:56.957411] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:42:56.958409] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:42:56.958409] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:42:56.959406] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:42:56.959406] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:42:56.959406] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:42:56.965906] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:42:56.970882] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:42:56.975868] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 -[2020-05-12 20:42:56.978861] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:42:56.980855] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:42:56.982849] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:42:56.982849] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:42:56.985842] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:42:56.991827] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:42:56.992823] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:42:56.992823] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:42:56.998808] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 -[2020-05-12 20:42:57.004791] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:42:57.006786] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:42:57.016759] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:42:57.016759] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:42:57.022743] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 -[2020-05-12 20:42:57.026733] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:42:57.027730] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:42:57.031719] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:42:57.032716] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:42:57.037703] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 -[2020-05-12 20:42:57.042689] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:42:57.043687] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:42:57.050668] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:42:57.053660] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:42:57.056652] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:42:57.056652] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:42:57.060642] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 -[2020-05-12 20:42:57.069124] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:42:57.072116] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:42:57.078100] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:42:57.083087] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:42:57.090068] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 -[2020-05-12 20:42:57.096052] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:42:57.098047] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:42:57.102036] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:42:57.103034] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:42:57.114004] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 -[2020-05-12 20:42:57.118991] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:42:57.120985] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:42:57.125972] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:42:57.131957] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:42:57.133951] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 -[2020-05-12 20:42:57.133951] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs -[2020-05-12 20:42:57.136943] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs -[2020-05-12 20:42:57.137941] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:42:57.144922] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads -[2020-05-12 20:42:57.145920] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:42:57.145920] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads -[2020-05-12 20:42:57.145920] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads -[2020-05-12 20:42:57.158885] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:42:57.159883] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads -[2020-05-12 20:42:57.159883] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 1.7s, 299086 effective words/s -[2020-05-12 20:42:57.159883] INFO: gensim.models.word2vec: storing 1344x12 projection weights into /tmp/dna2vec-20200512-2042-k3to5-12d-4c-0Mbp-sliding-EtG.w2v diff --git a/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt b/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt deleted file mode 100644 index c252a79..0000000 --- a/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.txt +++ /dev/null @@ -1,860 +0,0 @@ -[2020-05-12 20:43:18.940072] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml -[2020-05-12 20:43:18.940072] INFO: Generic: kmer fragmenter: sliding -[2020-05-12 20:43:18.941071] INFO: SeqGenerator: Number of epochs: 1 -[2020-05-12 20:43:18.941071] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 -[2020-05-12 20:43:18.941071] INFO: Learner: Context window half size: 4 -[2020-05-12 20:43:18.941071] INFO: Learner: Use skipgram: 1 -[2020-05-12 20:43:18.941071] INFO: Learner: gensim_iters: 1 -[2020-05-12 20:43:18.941071] INFO: Learner: vec_dim: 12 -[2020-05-12 20:43:18.942068] INFO: gensim.models.word2vec: collecting all words and their counts -[2020-05-12 20:43:18.947053] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:43:18.948052] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:18.948052] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:18.959022] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:43:18.963011] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:43:18.964009] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:43:18.968995] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -[2020-05-12 20:43:18.970990] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:43:18.970990] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:43:18.976973] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:43:18.984953] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:43:18.993928] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:43:18.993928] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:43:19.000910] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:43:19.007892] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:43:19.015869] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:43:19.021854] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:43:19.025843] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:43:19.026841] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:43:19.036813] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:43:19.038810] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:43:19.055764] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:43:19.064740] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:43:19.073715] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:43:19.078702] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:43:19.087678] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:43:19.092666] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:43:19.098648] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:43:19.105630] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:43:19.119592] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:43:19.120590] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:43:19.133555] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:43:19.135550] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:43:19.145525] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:43:19.147518] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:43:19.157491] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:43:19.161481] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:43:19.170456] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:43:19.175443] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:43:19.182424] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:43:19.189406] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:43:19.199379] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:43:19.202371] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:43:19.212344] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:43:19.216334] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:43:19.225309] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:43:19.227305] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:43:19.237278] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:43:19.237278] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:43:19.244259] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:43:19.248248] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:43:19.255229] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:43:19.257224] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:43:19.264206] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:43:19.269192] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:43:19.276174] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:43:19.276174] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:43:19.281160] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:43:19.284153] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:43:19.289139] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:43:19.289139] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:43:19.295123] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:43:19.296120] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:43:19.301107] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:43:19.304099] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:43:19.310082] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:43:19.310082] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:43:19.315069] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:43:19.322053] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:43:19.327037] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:43:19.332025] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:43:19.335016] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:43:19.341002] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:43:19.345987] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:43:19.346985] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:43:19.357955] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:43:19.358952] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:43:19.364936] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:43:19.366931] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:43:19.371917] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:43:19.371917] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:43:19.375907] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:43:19.379896] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:43:19.387875] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:43:19.387875] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:43:19.392861] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:43:19.396851] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:43:19.400840] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:43:19.400840] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:43:19.405827] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:43:19.408819] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:19.408819] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:19.410813] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:43:19.410813] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:43:19.410813] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:43:19.416798] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:43:19.424777] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:43:19.429763] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:43:19.435747] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:43:19.441731] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:43:19.443726] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:43:19.447714] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:43:19.447714] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:43:19.453698] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:43:19.455693] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:43:19.460680] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:43:19.465668] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:43:19.475640] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:43:19.477634] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:43:19.486612] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:43:19.487609] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:43:19.492595] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:43:19.498579] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:43:19.506558] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:43:19.507556] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:43:19.515533] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:43:19.550440] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:43:19.555427] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:43:19.563406] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:43:19.570387] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:43:19.579363] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:43:19.584349] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:43:19.591331] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:43:19.597315] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:43:19.608286] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:43:19.617262] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:43:19.620253] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:43:19.626237] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:43:19.638206] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:43:19.643192] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:43:19.644189] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:43:19.654163] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:43:19.663139] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:43:19.673112] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:43:19.679097] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:43:19.684082] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:43:19.684082] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:43:19.689069] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:43:19.693059] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:43:19.699042] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:43:19.701038] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:43:19.707021] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:43:19.707021] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:43:19.712008] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:43:19.719986] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:43:19.727966] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:43:19.727966] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:43:19.737938] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:43:19.740930] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:43:19.745917] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:43:19.745917] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:43:19.751901] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:43:19.754893] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:43:19.759880] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:43:19.763871] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:43:19.771848] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:43:19.775837] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:43:19.784813] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:43:19.785811] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:43:19.796782] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:43:19.798776] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:43:19.811742] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:43:19.811742] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:43:19.823709] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:43:19.824707] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:43:19.833683] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:43:19.839668] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:43:19.850638] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:43:19.855624] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:43:19.861608] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:43:19.867593] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:43:19.871581] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:43:19.871581] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:43:19.876568] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:43:19.880557] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:43:19.883550] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:43:19.888537] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:19.888537] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:19.889534] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:43:19.889534] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:43:19.889534] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:43:19.897512] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:43:19.903497] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:43:19.910477] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:43:19.917458] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:43:19.925437] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:43:19.929427] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:43:19.934413] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:43:19.938403] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:43:19.944387] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:43:19.951369] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:43:19.959347] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:43:19.964333] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:43:19.971315] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:43:19.978297] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:43:19.983282] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:43:19.984279] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:19.984279] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:19.985278] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:43:19.991262] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:43:19.997245] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:43:20.004227] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:43:20.006223] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:43:20.025170] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:43:20.029160] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:43:20.040131] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:43:20.043124] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:43:20.057086] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:43:20.064067] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:43:20.072045] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:43:20.085011] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:43:20.098974] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:43:20.103960] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:43:20.124904] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:43:20.133880] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:43:20.140861] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:43:20.144851] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:43:20.153827] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:43:20.160315] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:43:20.166299] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:43:20.172283] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:43:20.176272] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:43:20.177270] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:43:20.181259] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:43:20.186246] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:43:20.192229] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:43:20.193227] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:43:20.208187] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:43:20.214171] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:43:20.226139] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:43:20.230128] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:43:20.236112] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:43:20.245088] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:43:20.247082] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:43:20.247082] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:20.248080] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:20.248080] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:43:20.248080] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:43:20.249078] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:43:20.255061] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:43:20.256584] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:43:20.262551] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:43:20.262551] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:43:20.269532] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:43:20.270531] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:43:20.274519] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:43:20.274519] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:43:20.279505] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:43:20.283495] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:43:20.288482] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:43:20.290476] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:43:20.296460] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:43:20.296460] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:43:20.301447] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:43:20.304439] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:43:20.309425] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:43:20.310423] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:43:20.314412] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:43:20.317404] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:43:20.321394] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:43:20.325383] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:20.326381] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:20.327378] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:43:20.327378] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:43:20.327378] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:43:20.332364] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:43:20.338348] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:43:20.345329] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:43:20.345329] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:43:20.352311] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:43:20.352311] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:43:20.357297] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:43:20.360290] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:43:20.365276] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:43:20.366273] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:43:20.372257] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:43:20.374253] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:43:20.380236] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:43:20.387218] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:43:20.392204] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:43:20.393201] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:43:20.399185] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:43:20.402179] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:43:20.404172] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:43:20.404172] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:20.404172] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:20.405169] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:43:20.405169] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:43:20.405169] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:43:20.411154] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:43:20.416141] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:43:20.420129] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:43:20.420129] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:43:20.425116] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:43:20.429106] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:43:20.434092] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:43:20.434092] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:43:20.442071] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:43:20.443069] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:43:20.449052] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:43:20.449052] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:43:20.457031] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:43:20.458029] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:43:20.462017] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:43:20.463015] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:43:20.469996] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:43:20.473985] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:43:20.482962] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:43:20.487948] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:43:20.495927] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:43:20.497922] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:43:20.502908] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:43:20.502908] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:43:20.507894] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:43:20.511884] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:43:20.520861] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:43:20.520861] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:43:20.524849] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:43:20.525847] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:43:20.530834] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:43:20.532828] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:43:20.537815] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:43:20.540807] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:43:20.546790] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:43:20.546790] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:43:20.553772] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:43:20.554770] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:43:20.559756] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:43:20.560754] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:43:20.566737] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:43:20.567735] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:43:20.573718] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:43:20.574716] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:43:20.582695] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:43:20.589677] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:20.595660] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:20.600647] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:43:20.600647] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:43:20.600647] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:43:20.609623] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:43:20.610621] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:43:20.616604] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:43:20.616604] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:43:20.618599] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:43:20.629569] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:43:20.634556] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:43:20.638546] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:43:20.639543] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:43:20.640540] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:43:20.646524] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:43:20.652508] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:43:20.655500] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:43:20.656497] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:43:20.662481] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:43:20.664476] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:43:20.670460] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:43:20.670460] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:43:20.679436] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:43:20.682429] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:43:20.687414] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:43:20.693400] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:43:20.695393] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:43:20.696391] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:43:20.701378] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:43:20.706364] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:43:20.716337] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:43:20.717336] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:43:20.723318] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:43:20.728306] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:43:20.732295] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:43:20.732295] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:43:20.738278] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:43:20.741271] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:43:20.746257] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:43:20.747254] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:43:20.750247] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences -[2020-05-12 20:43:20.758225] INFO: gensim.models.word2vec: min_count=5 retains 1344 unique words (drops 0) -[2020-05-12 20:43:20.759223] INFO: gensim.models.word2vec: min_count leaves 607874 word corpus (100% of original 607874) -[2020-05-12 20:43:20.761218] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items -[2020-05-12 20:43:20.761218] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words -[2020-05-12 20:43:20.762215] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) -[2020-05-12 20:43:20.762215] INFO: gensim.models.word2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes -[2020-05-12 20:43:20.764210] INFO: gensim.models.word2vec: resetting layer weights -[2020-05-12 20:43:20.787148] INFO: gensim.models.word2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 -[2020-05-12 20:43:20.791138] INFO: gensim.models.word2vec: expecting 174 sentences, matching count from corpus used for vocabulary survey -[2020-05-12 20:43:20.793132] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-12 20:43:20.793132] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:20.793132] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:20.795127] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-12 20:43:20.795127] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-12 20:43:20.795127] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-12 20:43:20.799116] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-12 20:43:20.806097] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-12 20:43:20.811084] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-12 20:43:20.819063] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-12 20:43:20.823052] DEBUG: gensim.models.word2vec: queueing job #0 (8432 words, 2 sentences) at alpha 0.02500 -[2020-05-12 20:43:20.823052] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-12 20:43:20.825047] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-12 20:43:20.834023] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-12 20:43:20.834023] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-12 20:43:20.841004] DEBUG: gensim.models.word2vec: queueing job #1 (9272 words, 2 sentences) at alpha 0.02471 -[2020-05-12 20:43:20.847987] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-12 20:43:20.849980] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-12 20:43:20.853969] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-12 20:43:20.861948] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-12 20:43:20.866935] DEBUG: gensim.models.word2vec: queueing job #2 (5846 words, 2 sentences) at alpha 0.02443 -[2020-05-12 20:43:20.867933] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-12 20:43:20.876908] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-12 20:43:20.879900] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-12 20:43:20.879900] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-12 20:43:20.882892] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-12 20:43:20.887879] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-12 20:43:20.891868] DEBUG: gensim.models.word2vec: queueing job #3 (9475 words, 3 sentences) at alpha 0.02414 -[2020-05-12 20:43:20.891868] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-12 20:43:20.893862] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-12 20:43:20.897852] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-12 20:43:20.901842] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-12 20:43:20.906827] DEBUG: gensim.models.word2vec: queueing job #4 (6823 words, 2 sentences) at alpha 0.02371 -[2020-05-12 20:43:20.906827] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-12 20:43:20.907826] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-12 20:43:20.912812] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-12 20:43:20.916802] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-12 20:43:20.920790] DEBUG: gensim.models.word2vec: queueing job #5 (8490 words, 2 sentences) at alpha 0.02343 -[2020-05-12 20:43:20.920790] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-12 20:43:20.922785] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-12 20:43:20.928769] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-12 20:43:20.932759] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-12 20:43:20.934753] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:43:20.935750] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:43:20.940737] DEBUG: gensim.models.word2vec: queueing job #6 (9497 words, 3 sentences) at alpha 0.02314 -[2020-05-12 20:43:20.943729] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-12 20:43:20.945724] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-12 20:43:20.948716] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:43:20.949713] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:43:20.953702] DEBUG: gensim.models.word2vec: queueing job #7 (5920 words, 2 sentences) at alpha 0.02271 -[2020-05-12 20:43:20.957692] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-12 20:43:20.959686] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-12 20:43:20.965670] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-12 20:43:20.971656] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-12 20:43:20.977638] DEBUG: gensim.models.word2vec: queueing job #8 (9074 words, 2 sentences) at alpha 0.02242 -[2020-05-12 20:43:20.977638] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-12 20:43:20.979634] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-12 20:43:20.990604] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-12 20:43:20.991602] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-12 20:43:21.002572] DEBUG: gensim.models.word2vec: queueing job #9 (8655 words, 2 sentences) at alpha 0.02214 -[2020-05-12 20:43:21.011548] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-12 20:43:21.018529] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-12 20:43:21.025510] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-12 20:43:21.026508] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-12 20:43:21.030497] DEBUG: gensim.models.word2vec: queueing job #10 (8061 words, 2 sentences) at alpha 0.02185 -[2020-05-12 20:43:21.033490] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-12 20:43:21.035484] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-12 20:43:21.039473] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-12 20:43:21.039473] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-12 20:43:21.044460] DEBUG: gensim.models.word2vec: queueing job #11 (7817 words, 2 sentences) at alpha 0.02157 -[2020-05-12 20:43:21.050443] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-12 20:43:21.052438] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-12 20:43:21.056428] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-12 20:43:21.061416] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-12 20:43:21.066401] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-12 20:43:21.067398] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-12 20:43:21.072385] DEBUG: gensim.models.word2vec: queueing job #12 (9145 words, 3 sentences) at alpha 0.02128 -[2020-05-12 20:43:21.076375] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-12 20:43:21.078369] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-12 20:43:21.082358] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-12 20:43:21.088342] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-12 20:43:21.094326] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-12 20:43:21.096322] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-12 20:43:21.100310] DEBUG: gensim.models.word2vec: queueing job #13 (9906 words, 3 sentences) at alpha 0.02085 -[2020-05-12 20:43:21.100310] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-12 20:43:21.102305] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-12 20:43:21.107292] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-12 20:43:21.109286] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-12 20:43:21.115270] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-12 20:43:21.119261] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-12 20:43:21.123249] DEBUG: gensim.models.word2vec: queueing job #14 (9204 words, 3 sentences) at alpha 0.02042 -[2020-05-12 20:43:21.124247] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-12 20:43:21.125245] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-12 20:43:21.139206] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-12 20:43:21.144194] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-12 20:43:21.147185] DEBUG: gensim.models.word2vec: queueing job #15 (7762 words, 2 sentences) at alpha 0.01999 -[2020-05-12 20:43:21.151175] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-12 20:43:21.158156] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-12 20:43:21.163142] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-12 20:43:21.163142] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-12 20:43:21.167132] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-12 20:43:21.172121] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-12 20:43:21.175110] DEBUG: gensim.models.word2vec: queueing job #16 (9354 words, 3 sentences) at alpha 0.01971 -[2020-05-12 20:43:21.180098] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-12 20:43:21.182092] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-12 20:43:21.186081] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-12 20:43:21.187079] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:21.193062] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:21.208023] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-12 20:43:21.209020] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-12 20:43:21.209020] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-12 20:43:21.212012] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-12 20:43:21.213009] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-12 20:43:21.217995] DEBUG: gensim.models.word2vec: queueing job #17 (9276 words, 3 sentences) at alpha 0.01928 -[2020-05-12 20:43:21.219990] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-12 20:43:21.221985] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-12 20:43:21.233953] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-12 20:43:21.233953] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-12 20:43:21.239937] DEBUG: gensim.models.word2vec: queueing job #18 (7607 words, 2 sentences) at alpha 0.01885 -[2020-05-12 20:43:21.243927] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-12 20:43:21.245921] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-12 20:43:21.249910] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-12 20:43:21.256892] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-12 20:43:21.259884] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-12 20:43:21.259884] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-12 20:43:21.262876] DEBUG: gensim.models.word2vec: queueing job #19 (9697 words, 3 sentences) at alpha 0.01856 -[2020-05-12 20:43:21.268860] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-12 20:43:21.270855] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-12 20:43:21.281825] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-12 20:43:21.282822] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-12 20:43:21.286811] DEBUG: gensim.models.word2vec: queueing job #20 (8162 words, 2 sentences) at alpha 0.01813 -[2020-05-12 20:43:21.290801] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-12 20:43:21.292795] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-12 20:43:21.298780] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-12 20:43:21.304764] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-12 20:43:21.311745] DEBUG: gensim.models.word2vec: queueing job #21 (8008 words, 2 sentences) at alpha 0.01784 -[2020-05-12 20:43:21.317729] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-12 20:43:21.319724] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-12 20:43:21.331691] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-12 20:43:21.338673] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-12 20:43:21.342662] DEBUG: gensim.models.word2vec: queueing job #22 (7292 words, 2 sentences) at alpha 0.01756 -[2020-05-12 20:43:21.346652] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-12 20:43:21.348646] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-12 20:43:21.351638] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-12 20:43:21.351638] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-12 20:43:21.356625] DEBUG: gensim.models.word2vec: queueing job #23 (7685 words, 2 sentences) at alpha 0.01727 -[2020-05-12 20:43:21.360615] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-12 20:43:21.362609] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-12 20:43:21.366598] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-12 20:43:21.367596] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-12 20:43:21.376571] DEBUG: gensim.models.word2vec: queueing job #24 (8028 words, 2 sentences) at alpha 0.01699 -[2020-05-12 20:43:21.380562] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-12 20:43:21.386545] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-12 20:43:21.391532] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-12 20:43:21.391532] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-12 20:43:21.396519] DEBUG: gensim.models.word2vec: queueing job #25 (6155 words, 2 sentences) at alpha 0.01670 -[2020-05-12 20:43:21.401505] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-12 20:43:21.403500] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-12 20:43:21.407489] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-12 20:43:21.408487] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-12 20:43:21.411478] DEBUG: gensim.models.word2vec: queueing job #26 (8905 words, 2 sentences) at alpha 0.01641 -[2020-05-12 20:43:21.415468] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-12 20:43:21.417462] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-12 20:43:21.421451] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-12 20:43:21.421451] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-12 20:43:21.426438] DEBUG: gensim.models.word2vec: queueing job #27 (6106 words, 2 sentences) at alpha 0.01613 -[2020-05-12 20:43:21.429431] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-12 20:43:21.431425] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-12 20:43:21.436411] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-12 20:43:21.443393] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-12 20:43:21.447382] DEBUG: gensim.models.word2vec: queueing job #28 (9264 words, 2 sentences) at alpha 0.01584 -[2020-05-12 20:43:21.448380] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-12 20:43:21.451372] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-12 20:43:21.460347] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-12 20:43:21.461346] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-12 20:43:21.467329] DEBUG: gensim.models.word2vec: queueing job #29 (5925 words, 2 sentences) at alpha 0.01556 -[2020-05-12 20:43:21.470321] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-12 20:43:21.471319] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-12 20:43:21.481292] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-12 20:43:21.482289] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-12 20:43:21.489271] DEBUG: gensim.models.word2vec: queueing job #30 (7815 words, 2 sentences) at alpha 0.01527 -[2020-05-12 20:43:21.492263] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-12 20:43:21.494257] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-12 20:43:21.498246] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-12 20:43:21.499244] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-12 20:43:21.510214] DEBUG: gensim.models.word2vec: queueing job #31 (8145 words, 2 sentences) at alpha 0.01498 -[2020-05-12 20:43:21.518193] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-12 20:43:21.520188] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-12 20:43:21.524177] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-12 20:43:21.527169] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-12 20:43:21.532155] DEBUG: gensim.models.word2vec: queueing job #32 (7353 words, 2 sentences) at alpha 0.01470 -[2020-05-12 20:43:21.532155] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-12 20:43:21.533153] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-12 20:43:21.547115] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-12 20:43:21.547115] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-12 20:43:21.551105] DEBUG: gensim.models.word2vec: queueing job #33 (8987 words, 2 sentences) at alpha 0.01441 -[2020-05-12 20:43:21.554097] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-12 20:43:21.561078] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-12 20:43:21.565067] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-12 20:43:21.566065] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-12 20:43:21.570054] DEBUG: gensim.models.word2vec: queueing job #34 (7084 words, 2 sentences) at alpha 0.01412 -[2020-05-12 20:43:21.575042] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-12 20:43:21.576039] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-12 20:43:21.579030] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-12 20:43:21.583020] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-12 20:43:21.586011] DEBUG: gensim.models.word2vec: queueing job #35 (7826 words, 2 sentences) at alpha 0.01384 -[2020-05-12 20:43:21.586011] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-12 20:43:21.588006] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-12 20:43:21.590998] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-12 20:43:21.596983] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-12 20:43:21.598977] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-12 20:43:21.598977] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:21.599974] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:21.599974] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-12 20:43:21.599974] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-12 20:43:21.600973] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-12 20:43:21.606955] DEBUG: gensim.models.word2vec: queueing job #36 (7207 words, 3 sentences) at alpha 0.01355 -[2020-05-12 20:43:21.609948] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-12 20:43:21.611942] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-12 20:43:21.623910] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:43:21.629894] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:43:21.634881] DEBUG: gensim.models.word2vec: queueing job #37 (7162 words, 2 sentences) at alpha 0.01312 -[2020-05-12 20:43:21.637874] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-12 20:43:21.639868] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-12 20:43:21.642859] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-12 20:43:21.643857] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-12 20:43:21.646849] DEBUG: gensim.models.word2vec: queueing job #38 (7307 words, 2 sentences) at alpha 0.01284 -[2020-05-12 20:43:21.652834] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-12 20:43:21.654827] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-12 20:43:21.659815] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-12 20:43:21.666347] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-12 20:43:21.669302] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-12 20:43:21.669302] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-12 20:43:21.672295] DEBUG: gensim.models.word2vec: queueing job #39 (9813 words, 3 sentences) at alpha 0.01255 -[2020-05-12 20:43:21.675286] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-12 20:43:21.685260] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:21.692241] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:21.694237] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-12 20:43:21.694237] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-12 20:43:21.694237] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-12 20:43:21.698225] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-12 20:43:21.698225] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-12 20:43:21.702214] DEBUG: gensim.models.word2vec: queueing job #40 (7213 words, 2 sentences) at alpha 0.01212 -[2020-05-12 20:43:21.706204] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-12 20:43:21.708199] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-12 20:43:21.717175] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-12 20:43:21.718172] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-12 20:43:21.722161] DEBUG: gensim.models.word2vec: queueing job #41 (6956 words, 2 sentences) at alpha 0.01183 -[2020-05-12 20:43:21.727148] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-12 20:43:21.728146] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-12 20:43:21.740113] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-12 20:43:21.741111] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-12 20:43:21.746097] DEBUG: gensim.models.word2vec: queueing job #42 (6824 words, 2 sentences) at alpha 0.01155 -[2020-05-12 20:43:21.749090] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-12 20:43:21.750087] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-12 20:43:21.756071] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-12 20:43:21.758066] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-12 20:43:21.762054] DEBUG: gensim.models.word2vec: queueing job #43 (8533 words, 2 sentences) at alpha 0.01126 -[2020-05-12 20:43:21.762054] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-12 20:43:21.764049] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-12 20:43:21.776521] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-12 20:43:21.776521] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-12 20:43:21.779513] DEBUG: gensim.models.word2vec: queueing job #44 (9355 words, 2 sentences) at alpha 0.01098 -[2020-05-12 20:43:21.784501] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-12 20:43:21.786495] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-12 20:43:21.789487] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-12 20:43:21.789487] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-12 20:43:21.793476] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-12 20:43:21.797465] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-12 20:43:21.806441] DEBUG: gensim.models.word2vec: queueing job #45 (8711 words, 3 sentences) at alpha 0.01069 -[2020-05-12 20:43:21.810430] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-12 20:43:21.810430] INFO: gensim.models.word2vec: PROGRESS: at 57.47% examples, 306542 words/s, in_qsize 0, out_qsize 0 -[2020-05-12 20:43:21.813423] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-12 20:43:21.824393] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-12 20:43:21.824393] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-12 20:43:21.828383] DEBUG: gensim.models.word2vec: queueing job #46 (9593 words, 2 sentences) at alpha 0.01026 -[2020-05-12 20:43:21.831374] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-12 20:43:21.842347] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-12 20:43:21.847333] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-12 20:43:21.853317] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-12 20:43:21.855310] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-12 20:43:21.855310] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:21.855310] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:21.856308] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-12 20:43:21.856308] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-12 20:43:21.857305] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-12 20:43:21.862292] DEBUG: gensim.models.word2vec: queueing job #47 (9122 words, 3 sentences) at alpha 0.00997 -[2020-05-12 20:43:21.866281] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-12 20:43:21.868276] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-12 20:43:21.878249] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-12 20:43:21.878249] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-12 20:43:21.886228] DEBUG: gensim.models.word2vec: queueing job #48 (9091 words, 2 sentences) at alpha 0.00954 -[2020-05-12 20:43:21.887225] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-12 20:43:21.889220] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-12 20:43:21.899193] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-12 20:43:21.899193] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-12 20:43:21.903183] DEBUG: gensim.models.word2vec: queueing job #49 (8314 words, 2 sentences) at alpha 0.00926 -[2020-05-12 20:43:21.911161] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-12 20:43:21.913156] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-12 20:43:21.917145] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-12 20:43:21.923130] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-12 20:43:21.927118] DEBUG: gensim.models.word2vec: queueing job #50 (7324 words, 2 sentences) at alpha 0.00897 -[2020-05-12 20:43:21.927118] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-12 20:43:21.929113] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-12 20:43:21.935097] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-12 20:43:21.942078] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-12 20:43:21.946068] DEBUG: gensim.models.word2vec: queueing job #51 (7193 words, 2 sentences) at alpha 0.00869 -[2020-05-12 20:43:21.949060] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-12 20:43:21.951055] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-12 20:43:21.962025] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-12 20:43:21.962025] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-12 20:43:21.965017] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-12 20:43:21.971002] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:21.971002] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:21.971999] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-12 20:43:21.971999] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-12 20:43:21.971999] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-12 20:43:21.975988] DEBUG: gensim.models.word2vec: queueing job #52 (8225 words, 3 sentences) at alpha 0.00840 -[2020-05-12 20:43:21.975988] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-12 20:43:21.977982] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-12 20:43:21.987956] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-12 20:43:21.991946] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-12 20:43:21.994937] DEBUG: gensim.models.word2vec: queueing job #53 (8567 words, 2 sentences) at alpha 0.00797 -[2020-05-12 20:43:21.998927] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-12 20:43:22.005909] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-12 20:43:22.010894] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-12 20:43:22.010894] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-12 20:43:22.015881] DEBUG: gensim.models.word2vec: queueing job #54 (7022 words, 2 sentences) at alpha 0.00768 -[2020-05-12 20:43:22.018873] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-12 20:43:22.020869] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-12 20:43:22.025854] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-12 20:43:22.026853] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-12 20:43:22.039817] DEBUG: gensim.models.word2vec: queueing job #55 (7774 words, 2 sentences) at alpha 0.00740 -[2020-05-12 20:43:22.040816] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-12 20:43:22.049791] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-12 20:43:22.052782] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-12 20:43:22.052782] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-12 20:43:22.057769] DEBUG: gensim.models.word2vec: queueing job #56 (7794 words, 2 sentences) at alpha 0.00711 -[2020-05-12 20:43:22.061759] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-12 20:43:22.063753] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-12 20:43:22.064750] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-12 20:43:22.065747] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:22.065747] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:22.066745] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-12 20:43:22.066745] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-12 20:43:22.066745] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-12 20:43:22.070734] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-12 20:43:22.074724] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-12 20:43:22.077716] DEBUG: gensim.models.word2vec: queueing job #57 (9114 words, 3 sentences) at alpha 0.00683 -[2020-05-12 20:43:22.082703] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-12 20:43:22.084697] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-12 20:43:22.087689] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-12 20:43:22.088686] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-12 20:43:22.093673] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-12 20:43:22.096666] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-12 20:43:22.100655] DEBUG: gensim.models.word2vec: queueing job #58 (9064 words, 4 sentences) at alpha 0.00640 -[2020-05-12 20:43:22.101652] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-12 20:43:22.102649] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-12 20:43:22.107636] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-12 20:43:22.110629] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-12 20:43:22.113620] DEBUG: gensim.models.word2vec: queueing job #59 (8427 words, 2 sentences) at alpha 0.00582 -[2020-05-12 20:43:22.114617] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-12 20:43:22.115614] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-12 20:43:22.120601] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-12 20:43:22.123593] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-12 20:43:22.133566] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-12 20:43:22.134564] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-12 20:43:22.139550] DEBUG: gensim.models.word2vec: queueing job #60 (8896 words, 3 sentences) at alpha 0.00554 -[2020-05-12 20:43:22.144537] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-12 20:43:22.146532] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-12 20:43:22.155508] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-12 20:43:22.155508] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-12 20:43:22.159497] DEBUG: gensim.models.word2vec: queueing job #61 (7015 words, 2 sentences) at alpha 0.00511 -[2020-05-12 20:43:22.165481] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-12 20:43:22.167476] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-12 20:43:22.170468] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-12 20:43:22.170468] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-12 20:43:22.178446] DEBUG: gensim.models.word2vec: queueing job #62 (6018 words, 2 sentences) at alpha 0.00482 -[2020-05-12 20:43:22.178446] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-12 20:43:22.180441] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-12 20:43:22.186425] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-12 20:43:22.189417] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-12 20:43:22.192409] DEBUG: gensim.models.word2vec: queueing job #63 (8010 words, 2 sentences) at alpha 0.00454 -[2020-05-12 20:43:22.193407] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-12 20:43:22.201386] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-12 20:43:22.204377] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-12 20:43:22.204377] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-12 20:43:22.209364] DEBUG: gensim.models.word2vec: queueing job #64 (6267 words, 2 sentences) at alpha 0.00425 -[2020-05-12 20:43:22.214351] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-12 20:43:22.215348] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-12 20:43:22.221332] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-12 20:43:22.229311] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-12 20:43:22.233299] DEBUG: gensim.models.word2vec: queueing job #65 (8872 words, 2 sentences) at alpha 0.00396 -[2020-05-12 20:43:22.233299] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-12 20:43:22.235294] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-12 20:43:22.247262] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-12 20:43:22.252249] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-12 20:43:22.257236] DEBUG: gensim.models.word2vec: queueing job #66 (8447 words, 2 sentences) at alpha 0.00368 -[2020-05-12 20:43:22.262222] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-12 20:43:22.264217] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-12 20:43:22.265214] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-12 20:43:22.265214] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-12 20:43:22.266212] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-12 20:43:22.267209] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-12 20:43:22.267209] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-12 20:43:22.267209] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-12 20:43:22.272196] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-12 20:43:22.276185] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-12 20:43:22.280174] DEBUG: gensim.models.word2vec: queueing job #67 (9799 words, 3 sentences) at alpha 0.00339 -[2020-05-12 20:43:22.284165] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-12 20:43:22.286158] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-12 20:43:22.288153] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:43:22.288153] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-12 20:43:22.292143] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-12 20:43:22.297143] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-12 20:43:22.298127] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-12 20:43:22.298127] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-12 20:43:22.309097] DEBUG: gensim.models.word2vec: queueing job #68 (8363 words, 5 sentences) at alpha 0.00296 -[2020-05-12 20:43:22.318073] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-12 20:43:22.324057] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-12 20:43:22.329043] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-12 20:43:22.329043] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-12 20:43:22.335027] DEBUG: gensim.models.word2vec: queueing job #69 (7385 words, 2 sentences) at alpha 0.00225 -[2020-05-12 20:43:22.338020] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-12 20:43:22.340015] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-12 20:43:22.343006] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-12 20:43:22.343006] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-12 20:43:22.347993] DEBUG: gensim.models.word2vec: queueing job #70 (7295 words, 2 sentences) at alpha 0.00196 -[2020-05-12 20:43:22.353977] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-12 20:43:22.356969] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-12 20:43:22.360959] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-12 20:43:22.368937] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-12 20:43:22.370932] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-12 20:43:22.370932] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-12 20:43:22.374921] DEBUG: gensim.models.word2vec: queueing job #71 (9647 words, 4 sentences) at alpha 0.00167 -[2020-05-12 20:43:22.379908] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-12 20:43:22.381903] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-12 20:43:22.391875] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-12 20:43:22.392873] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-12 20:43:22.397859] DEBUG: gensim.models.word2vec: queueing job #72 (7834 words, 2 sentences) at alpha 0.00110 -[2020-05-12 20:43:22.400852] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-12 20:43:22.403844] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-12 20:43:22.412819] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-12 20:43:22.412819] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-12 20:43:22.416809] DEBUG: gensim.models.word2vec: queueing job #73 (7055 words, 2 sentences) at alpha 0.00082 -[2020-05-12 20:43:22.421796] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-12 20:43:22.423791] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-12 20:43:22.427780] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-12 20:43:22.431770] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-12 20:43:22.434761] DEBUG: gensim.models.word2vec: queueing job #74 (9213 words, 3 sentences) at alpha 0.00053 -[2020-05-12 20:43:22.434761] DEBUG: gensim.models.word2vec: job loop exiting, total 75 jobs -[2020-05-12 20:43:22.437753] DEBUG: gensim.models.word2vec: worker exiting, processed 18 jobs -[2020-05-12 20:43:22.443738] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:43:22.443738] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 3 more threads -[2020-05-12 20:43:22.444735] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:43:22.444735] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 2 more threads -[2020-05-12 20:43:22.444735] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 1 more threads -[2020-05-12 20:43:22.459694] DEBUG: gensim.models.word2vec: worker exiting, processed 19 jobs -[2020-05-12 20:43:22.464681] INFO: gensim.models.word2vec: worker thread finished; awaiting finish of 0 more threads -[2020-05-12 20:43:22.465679] INFO: gensim.models.word2vec: training on 607874 raw words (519076 effective words) took 1.7s, 310359 effective words/s -[2020-05-12 20:43:22.465679] INFO: gensim.models.word2vec: storing 1344x12 projection weights into ./tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v -[2020-05-12 20:43:22.475652] INFO: Histogram: Percent of 3-mers: 33.3% (202162) -[2020-05-12 20:43:22.479641] INFO: Histogram: Percent of 4-mers: 33.3% (202583) -[2020-05-12 20:43:22.480638] INFO: Histogram: Percent of 5-mers: 33.4% (203129) -[2020-05-12 20:43:22.480638] INFO: Histogram: Number of base-pairs: 2432463 -[2020-05-12 20:43:22.480638] INFO: Benchmark: wall=0.059m cpu=0.059m diff --git a/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v b/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v deleted file mode 100644 index 02553c1..0000000 --- a/tmp/dna2vec-20200512-2043-k3to5-12d-4c-0Mbp-sliding-hb6.w2v +++ /dev/null @@ -1,1345 +0,0 @@ -1344 12 -AAA 0.546189 -1.259668 -0.366947 0.969053 -0.504060 -0.456787 1.116572 -0.008423 -0.056775 0.619004 0.033565 -0.376411 -TTT -0.344229 -0.425393 -1.152862 0.813219 -0.125951 0.875238 1.282149 -0.123639 0.009176 0.086126 -0.515594 0.132046 -AAT 0.474628 -0.864700 -0.184958 1.350230 0.316870 -0.580679 1.035690 -0.337995 -0.123307 -0.162033 -0.288421 0.043777 -GAA 0.330343 -0.934976 -0.226808 1.187080 -0.373331 -0.397190 0.936016 0.119489 -0.468260 -0.112125 -0.135486 0.005868 -ATT 0.350908 -0.573798 -1.081136 1.159762 0.855219 0.580489 0.773274 -0.150796 -0.372844 -0.316263 -0.337082 0.748988 -ATG -0.034731 -0.864593 0.236959 1.233980 0.440055 -0.267860 1.037553 -0.474075 0.032739 -0.667933 -0.067932 -0.096923 -TGG -0.445273 -1.289125 0.009625 1.246895 0.165632 -0.152397 0.702077 0.070254 -0.342303 -0.890420 -0.342413 -0.080352 -GGA -0.171479 -1.322656 0.144900 1.248439 0.273928 -0.206738 0.752680 -0.041780 -0.910902 -0.458491 -0.120207 -0.134977 -TTC 0.092711 0.026518 -1.457474 0.714839 -0.115150 0.554167 0.745122 -0.749999 -0.068693 0.308462 0.124892 0.453213 -AGA 0.127798 -0.535240 -0.148841 1.520696 -0.551292 -0.434565 0.355871 -0.281922 -1.209827 0.274918 -0.239478 0.131302 -CAT 0.073716 -0.465628 -1.240675 0.803730 -0.148969 0.080753 0.326389 -0.966793 0.687468 0.106469 -0.220643 0.932891 -TCT 0.092082 0.055045 -0.843923 0.648312 0.437563 0.283577 1.155337 -1.003636 -0.116065 0.402730 0.227560 -0.557157 -ACA 0.209190 -1.481848 -0.183591 0.952533 -0.110722 0.238624 -0.226531 -0.771979 -0.390827 0.699955 0.011424 0.581044 -TGA 0.239690 -0.216650 -0.147703 1.264111 -0.857912 0.358145 0.940185 -0.358275 -0.327454 -0.794140 -0.139352 0.166867 -TGT -0.726906 -0.270709 0.206578 1.267456 -0.124692 0.686375 1.188185 -0.608463 0.455139 -0.192293 0.190892 0.297301 -TTG -0.219619 -0.416410 -0.774841 0.797200 -0.544081 0.379618 1.218855 -0.290518 0.138878 -0.934104 -0.593836 0.199114 -CCA 0.033753 -0.629788 -1.547567 0.757666 0.232864 0.075136 0.237833 -0.167239 0.308267 0.294250 0.739826 0.896121 -CTT 0.014824 -0.271079 -1.163428 0.749176 0.045008 1.304293 0.775230 -0.358873 -0.297718 0.021557 -0.003750 -0.474470 -TCA 0.301154 -0.997242 -0.645266 0.380093 0.549754 -0.223998 0.702014 -1.107370 -0.420756 0.718917 0.323976 0.657205 -CAA 0.685055 -1.378237 -0.460297 0.543133 -0.114161 -0.467986 0.848141 -0.528430 0.101220 0.312625 0.493289 0.390156 -ATA 0.334066 -0.519546 -0.493570 1.819810 0.510506 -0.552805 0.159209 -0.269363 -0.186259 0.518426 -0.546403 -0.046661 -AAG -0.232947 -1.073942 -0.292902 0.552998 -0.824181 -0.859995 1.111870 -0.238029 -0.499150 0.349502 -0.134182 -0.341464 -CTG -0.046363 -0.572535 0.179357 0.771144 0.369851 0.561913 0.702773 -0.790171 -0.405146 -0.655079 0.611568 -0.701663 -TAT -0.269932 0.163274 -0.666834 1.515608 0.315880 -0.157802 0.698402 -0.514682 0.576728 0.213350 -0.522611 -0.081896 -TCC -0.147457 -0.290404 -1.675700 0.685184 0.213771 0.369160 0.665928 -0.155859 0.407640 0.358520 1.003923 0.697425 -CAG -0.642839 -0.664987 -0.684767 0.466575 -1.248295 -0.422079 0.044815 -0.718529 -0.378233 0.261921 -0.264825 0.483900 -TTA -0.223107 -0.431410 -0.901388 1.413379 -0.023152 0.335456 0.590561 -0.006174 0.270921 0.745388 -0.831174 0.042340 -TAA 0.083187 -0.881374 0.046745 1.480157 0.023647 -0.255733 1.097897 -0.097629 0.361482 0.808557 -0.229989 -0.280105 -GAG -0.722809 -0.278549 -0.398914 0.768796 -1.166237 -0.275903 0.680646 -0.447324 -0.847556 -0.526644 -0.294167 0.019228 -AGG -0.632470 -1.329399 -0.727789 0.482794 -0.161920 -0.774849 0.689049 0.322418 -0.798317 -0.092859 -0.308016 -0.315052 -ACT 0.587507 -0.702582 -0.529459 0.786405 -0.276660 0.886657 0.224664 -0.472955 -0.401915 0.150641 0.281169 -0.915461 -CTC 0.689419 -0.353592 -0.978981 0.478320 -0.043706 0.535594 0.314611 -0.829297 -0.902561 0.025501 0.759703 -0.214093 -CCT -0.275292 0.110867 -1.420062 0.770790 -0.025283 0.326480 0.640568 0.282061 0.209720 -0.043290 0.795881 -0.679031 -GTG -0.959831 -0.675703 0.362173 0.911261 -0.304888 0.191970 1.187907 -0.580015 0.088483 -0.742829 0.292707 0.242069 -CAC 0.206640 -1.141454 -0.694943 0.526823 -0.548278 0.413753 -0.395751 -1.034195 0.225720 0.437238 0.553430 0.214986 -AGT -1.039354 -0.484051 -0.061534 0.901472 -0.536262 0.096025 0.945692 -0.120437 -0.636114 0.201876 0.129024 0.735583 -AAC 0.490324 -1.313811 -0.442128 0.776374 -0.502771 0.345981 0.241317 -0.007895 -0.081869 0.404754 0.231330 -0.583615 -AATG 0.291440 -1.446429 0.208284 1.489961 0.270506 -0.608250 1.108914 -0.394902 -0.163073 -0.746392 -0.083834 -0.149111 -GTT -0.751360 -0.447907 -0.423180 0.771652 -0.232486 0.932315 1.184074 -0.098992 -0.542421 0.183776 0.053277 0.540246 -ATC 0.842369 -0.196608 -0.739388 1.029368 0.432887 -0.567150 0.622652 -0.878688 -0.441644 0.043143 0.469818 0.370028 -TGC 0.201439 -0.639994 -0.476914 0.519712 -0.270466 -0.230874 0.575893 -1.126653 0.900078 -0.906242 -0.006704 -0.277034 -GAAT 0.297825 -1.040601 -0.282785 1.541637 0.229211 -0.888864 0.982450 -0.184514 -0.488024 -0.745278 -0.251085 0.001295 -TTTT -0.319947 -0.627043 -1.446140 0.925729 -0.057146 1.316307 1.387941 -0.263916 -0.119121 0.313449 -0.884345 0.133367 -GCA -0.100780 -1.006028 -0.388680 0.272427 0.017384 -0.626826 0.439120 -1.332960 0.484195 -0.266423 -0.114505 0.084760 -TGGA -0.310096 -1.411276 0.039555 1.432081 0.000446 -0.144871 0.706969 0.093590 -0.575005 -0.888799 -0.239807 -0.058172 -GAT -0.135883 -0.134030 -0.571136 1.247606 0.197211 -0.110115 0.616686 -0.580406 -0.436734 -0.724631 -0.691362 0.463420 -AAAA 0.714487 -1.476171 -0.340549 1.185711 -0.348955 -0.442046 1.416679 0.067912 -0.107872 0.861085 0.168655 -0.400316 -GGAA -0.125725 -1.767705 0.092490 1.370196 0.130471 -0.745949 1.050057 0.142997 -0.616667 -0.350678 -0.075788 -0.143439 -GCT -0.378231 -0.178162 -0.809214 0.309610 -0.014679 -0.041455 0.705412 -0.808034 0.090574 -0.383615 0.060704 -1.287741 -TAG -0.629974 -0.381354 -0.430650 1.427370 -0.634963 -0.931746 0.433991 -0.075882 -0.326794 0.476044 -0.727204 -0.463751 -ATGG -0.154693 -1.373016 -0.083817 1.447385 0.696806 -0.621548 1.010448 -0.142955 -0.330712 -0.791611 -0.255559 -0.280411 -CTA 0.027744 0.071054 -0.540394 1.453250 0.463406 0.243918 0.249731 -0.393490 -0.239586 0.794000 0.195172 -0.668606 -AGC -0.176068 -0.226450 -0.818959 0.448749 -0.737128 -0.833123 0.049754 -0.783018 -0.310430 -0.175774 0.182769 -0.538055 -GGG -0.982917 -1.312583 -0.794074 0.321485 0.141839 -0.236440 0.526797 0.373444 -0.736547 -0.825860 0.042458 -0.178267 -CCC -0.140669 -0.372256 -1.427939 0.801721 -0.398467 -0.057533 -0.039841 0.255792 0.399050 -0.014540 1.307120 0.015967 -GTA -0.860427 -0.606816 0.376630 1.786828 0.268358 0.107269 0.648835 0.100121 0.137433 0.458094 0.007751 0.041384 -ACC 0.210577 -0.840151 -0.785480 1.078355 -0.403398 0.394607 -0.317049 0.482451 0.137486 0.118046 0.998294 -0.010203 -GGT -1.306661 -0.843942 -0.195118 0.563243 0.533391 0.250767 0.864496 -0.082056 -0.349469 -0.187734 0.023133 0.215341 -AAAT 0.827381 -0.922353 -0.346245 1.443992 0.128534 -0.753530 1.421393 -0.199886 0.320428 0.169213 -0.069033 0.089472 -GAC 0.284419 -1.177585 -0.388919 1.064191 -0.072696 0.471837 -0.467034 -0.095571 -0.887527 -0.326984 0.119149 -0.327784 -TAC -0.153937 -1.024485 -0.788662 1.014535 0.510277 0.247008 -0.316437 -0.259920 0.511198 0.924711 -0.157776 -0.335389 -ATTT 0.112627 -0.643743 -1.038347 1.444674 0.686488 1.063759 0.936809 -0.072861 -0.395637 -0.067855 -0.737350 0.649397 -GCC -0.473414 -0.207952 -1.046044 0.480118 -0.091206 -0.669469 0.152916 -0.268284 0.595482 -0.672581 0.961352 -0.491863 -GGC -0.721752 -0.942379 -0.967746 0.073893 0.187472 -0.571644 -0.025347 -0.570478 -0.023852 -0.963778 0.207097 -0.495596 -CATT -0.037873 -0.434103 -1.618319 0.871696 -0.347275 0.490981 0.328504 -0.871929 0.540954 -0.146099 -0.404849 1.052638 -GTC -0.694152 -0.108567 -0.420055 0.643611 -0.124476 0.109295 0.902027 -0.713793 -0.525726 0.226361 0.997678 0.981127 -AGAA 0.270576 -0.784253 -0.274895 1.513873 -0.697882 -0.683455 0.554214 -0.039074 -1.128286 0.444339 -0.080158 -0.035658 -ATGGA 0.065870 -1.651207 -0.125587 1.689748 0.420817 -0.581576 1.086424 -0.127111 -0.660753 -0.675224 -0.204194 -0.346824 -ATTC 0.268879 -0.274542 -1.409763 1.008076 1.008432 0.457463 0.664507 -0.740869 -0.317688 0.142286 0.230393 0.737290 -GAATG -0.070116 -1.433005 0.071259 1.741487 0.024001 -0.776431 1.105713 -0.178371 -0.473083 -1.087341 -0.141348 -0.182845 -GAAA 0.319477 -1.287233 -0.139773 1.087856 -0.554295 -0.181827 1.186957 0.257330 -0.730257 0.166917 0.084983 -0.173367 -TGGAA -0.126867 -1.790631 -0.103095 1.591508 0.007454 -0.573034 1.051298 0.298665 -0.198638 -0.834573 -0.363202 -0.048605 -TCCA 0.026045 -0.522177 -1.677238 0.781874 0.160611 0.302210 0.440537 -0.491887 0.319831 0.488797 0.939767 1.022021 -AATGG 0.084935 -1.677079 0.027176 1.617532 0.369332 -0.574121 1.120127 -0.244454 -0.542378 -0.786907 -0.064925 -0.121372 -TTCC -0.181606 -0.121421 -2.123319 1.078093 0.004719 0.699270 0.519463 -0.283020 0.515805 0.079869 0.372979 0.730107 -TTCT -0.167157 0.408586 -1.161619 0.904029 0.016929 0.837192 1.223942 -1.053080 -0.217870 0.349671 0.150411 -0.349580 -TTTC -0.249893 -0.326938 -1.589827 0.359675 0.131458 0.681900 1.224525 -0.509142 -0.099718 0.506432 0.098428 0.181077 -AAAG -0.067481 -1.479040 -0.374382 0.668625 -0.860388 -1.046013 1.394800 0.056362 -0.465766 0.581388 -0.059861 -0.660379 -TTTG -0.488539 -0.469321 -0.977129 0.795381 -0.378370 0.882594 1.219530 -0.258800 0.213563 -0.815479 -0.690059 -0.002226 -CAAA 0.806283 -1.538183 -0.286401 0.655737 -0.229442 -0.407700 1.029945 -0.559561 -0.259608 0.609032 0.600031 0.289073 -GGAAT -0.194570 -1.629243 -0.123281 1.658172 0.456101 -0.899205 1.327767 -0.063649 -0.461483 -0.700336 -0.134440 -0.160901 -CTTT -0.184238 -0.216230 -1.493564 0.866907 -0.141211 1.498603 0.986102 -0.086005 -0.402438 0.120931 -0.028755 -0.407752 -TAAA 0.319917 -1.072872 -0.195993 1.402948 0.156367 -0.306275 1.216136 0.039750 0.293597 1.257934 -0.017589 -0.416927 -AATA 0.507098 -0.771935 -0.384038 1.904278 0.231152 -1.056716 0.687885 -0.306883 -0.194231 0.775966 -0.426378 -0.364402 -AATT 0.744976 -0.858539 -1.024461 1.175886 -0.120108 -0.000315 1.621418 -0.132180 0.101678 -0.069133 -0.764591 0.475429 -TGAA 0.526060 -0.784331 -0.059635 1.403682 -0.958654 0.317190 1.472516 0.101510 -0.118089 -0.774228 -0.077786 0.058589 -CCAT -0.283526 -0.318997 -1.848825 1.103117 0.439175 0.230467 0.327691 -0.555108 0.635339 0.043172 0.458542 0.957076 -TTTA -0.313245 -0.652835 -1.136462 1.133871 0.156029 0.370473 1.018050 -0.099087 0.340467 0.869649 -1.138509 -0.224490 -TTCA 0.318365 -0.835537 -1.387308 0.267273 0.079790 0.187925 0.838091 -1.180571 -0.201040 0.550242 -0.316053 0.859967 -ATAT 0.310954 -0.256387 -0.702833 1.862387 0.962675 -0.309417 0.527419 -0.608436 0.073165 0.227889 -0.710085 0.032626 -TATT -0.319431 0.157036 -1.288168 1.584328 0.258626 0.268812 0.843175 -0.464856 0.684410 0.391023 -0.804480 0.176183 -TTGA 0.268168 -0.203893 -0.784177 1.201754 -0.958478 0.522367 1.247549 -0.130706 -0.354033 -0.866791 -0.536923 0.125431 -CACA 0.222700 -1.547556 -0.560003 0.665423 -0.515061 0.062381 -0.382352 -1.238654 0.073509 0.796428 0.224688 0.565956 -TCTT 0.006694 -0.156087 -1.460895 0.466893 0.180474 0.713026 1.529584 -0.926303 -0.002343 0.340442 -0.169705 -0.587618 -AAAC 0.774197 -1.602452 -0.434123 0.931815 -1.076320 0.306644 0.484979 0.075662 0.026240 0.439842 0.264459 -0.510807 -GTTT -1.049953 -0.739824 -0.661206 0.701417 0.002151 1.361047 1.202147 0.083686 -0.597502 0.279549 0.066800 0.571920 -TGTG -0.767430 -0.532737 0.305083 1.179562 -0.361305 0.990805 1.122382 -0.918985 0.617280 -0.741914 0.264026 0.070869 -AAGA 0.440757 -0.812468 -0.275920 1.349380 -1.087012 -0.756417 0.960673 -0.263376 -0.994883 0.344752 -0.269785 -0.032212 -TGTT -0.911293 -0.347193 -0.503543 0.997059 -0.177399 1.327187 1.367324 -0.508134 0.478243 -0.055499 -0.125222 0.280330 -TTAT -0.135855 -0.126517 -0.994406 1.706286 0.389940 0.432347 0.864357 -0.351758 0.538565 0.267047 -1.041422 -0.032427 -CAGA 0.095525 -0.763984 -0.684689 1.075367 -1.359388 -0.632235 -0.290971 -0.828839 -0.815862 0.078448 -0.282404 0.556106 -TTAA 0.212618 -0.801560 -0.752546 1.285508 -0.235122 0.109720 1.387649 0.284546 0.335428 0.721236 -0.691054 -0.311119 -ATGT -0.522721 -0.527859 0.471054 1.667085 0.182102 0.004805 1.172380 -0.619874 0.728097 -0.192471 0.232091 0.711515 -TCAA 0.591923 -1.218811 -0.588977 0.286158 0.380805 -0.400166 1.550472 -1.021359 -0.336217 0.785248 0.433777 0.322154 -AACA 0.337947 -1.973764 0.063012 1.101861 -0.433644 -0.201521 0.104637 -0.503711 -0.138169 0.665799 -0.032816 0.240974 -TGCA 0.292883 -1.102123 -0.302912 0.417004 -0.200827 -0.171242 0.645536 -1.538398 0.812873 -0.693342 -0.140126 0.097463 -ATAA 0.931288 -0.896085 -0.307115 1.983312 0.054810 -0.438212 0.566506 -0.321855 0.458583 0.775106 -0.228049 -0.296029 -ACAA 0.801100 -2.110909 -0.234801 0.976411 -0.007662 -0.123373 0.127131 -0.387372 -0.141605 0.739646 0.452627 0.230511 -TCTG -0.062834 -0.077812 -0.238579 0.559649 0.586674 0.174131 1.392348 -1.199095 -0.235864 -0.256324 0.709908 -0.735462 -ACAT 0.310792 -1.309816 -0.479024 1.226683 0.441006 0.491746 -0.276827 -0.948982 0.277213 0.242519 -0.454124 0.878007 -TGAG -0.313771 0.209054 -0.384758 1.006452 -1.134062 0.271761 0.470761 -0.781274 -0.859159 -0.878911 0.080648 -0.058778 -TAAT 0.052168 -0.299727 -0.289649 1.911350 0.299486 -0.473402 1.523349 0.072813 0.552243 0.313001 -0.122582 -0.006354 -AGGA 0.006982 -1.583252 -0.756935 1.058143 -0.357690 -0.765376 0.628244 0.402803 -1.241125 0.075064 -0.328826 -0.277888 -TTGT -0.854664 -0.244419 -0.548169 1.159541 -0.276231 0.904927 1.557172 -0.226432 0.695051 -0.305786 -0.236900 0.154598 -GAGA -0.005518 -0.538681 -0.465576 1.382094 -1.113567 -0.174106 0.244465 -0.298169 -1.475048 -0.589703 -0.536491 0.098208 -ACAG -0.564160 -1.392173 -0.097571 1.020794 -0.721026 -0.170873 -0.495532 -0.763477 -1.036272 0.878875 -0.076298 0.265211 -TCCT -0.445295 0.256351 -1.592382 0.829123 0.336092 0.713821 1.245284 -0.066102 0.153493 0.181958 1.083923 -0.471220 -TTTTT -0.154665 -0.726945 -1.758578 1.134314 0.018167 1.568252 1.571638 -0.208155 -0.092470 0.263418 -1.053584 0.155641 -CAAT 0.866371 -1.095717 -0.590407 0.928461 0.305417 -0.587150 1.049111 -0.771567 0.536372 -0.240002 0.206817 0.597011 -AGAG -0.671856 -0.575209 -0.197605 1.048347 -1.040516 -0.669120 0.390255 -0.743761 -1.579606 0.051610 -0.128124 0.159547 -ATTG 0.224538 -0.893259 -0.718633 1.102609 0.374517 0.431980 1.150195 -0.299923 0.010790 -1.072136 -0.573560 0.357119 -AAGG -0.457406 -1.726978 -0.572831 0.470680 -0.424076 -0.940709 1.280138 0.193377 -0.711700 0.198938 -0.284965 -0.761448 -ATTA 0.127579 -0.899720 -0.998779 1.542894 1.071398 0.221021 0.528391 -0.066876 -0.136342 0.974438 -0.614711 0.357290 -AGTG -1.138582 -0.845622 0.493102 1.101484 -0.794097 -0.114444 0.994450 -0.374449 -0.482759 -0.429251 0.277646 -0.045264 -AATC 1.041900 -0.412666 -0.724616 1.162063 0.115299 -1.005556 1.243575 -0.582084 -0.500514 -0.034919 0.612352 0.248206 -TCTC 0.137621 -0.106204 -1.049654 0.238854 0.100649 0.344923 1.139821 -1.441007 -0.590747 0.596107 1.079014 0.023768 -CTCA 0.752393 -0.793594 -0.820646 0.237120 0.275150 0.085931 0.265870 -1.548853 -0.981230 0.198165 0.665538 -0.049395 -GGAG -1.190596 -0.975299 -0.167747 0.971898 -0.331398 -0.391457 0.653723 -0.341654 -1.208803 -0.745535 -0.126813 -0.099476 -AAAAA 0.898904 -1.804014 -0.383752 1.291513 -0.359066 -0.405212 1.743605 0.244604 -0.228821 1.062035 0.232550 -0.517876 -AGTT -1.027419 -0.433718 -0.551057 0.774499 -1.055181 0.595027 1.050347 -0.109086 -0.758504 0.574463 -0.324013 0.563942 -TAGA -0.058578 -0.293474 -0.536292 2.023458 -0.602696 -0.907993 0.297918 -0.103322 -0.739216 0.436652 -0.752596 -0.161916 -CCTT -0.351265 0.009886 -2.050188 0.853075 -0.187109 0.876595 0.913801 0.402874 0.320608 -0.014385 0.454341 -0.413249 -GATT -0.012916 -0.252138 -1.357725 1.012664 0.130486 0.123857 0.862953 -0.464254 -0.746961 -0.710431 -1.026169 0.623195 -TGTA -0.694857 -0.404573 0.347181 2.030244 0.037627 0.266864 0.959925 0.042894 0.688109 0.256458 -0.098009 0.056391 -TCAT -0.255358 -0.394286 -1.082031 0.679808 0.943588 -0.178082 0.843620 -1.570037 0.171695 0.416641 -0.095517 0.743222 -ATGA 0.773525 -0.547190 0.078498 1.951168 -0.431412 -0.366682 0.643800 -0.508338 -0.169859 -0.897604 0.007228 0.124101 -CGA 0.348214 -0.486201 -0.762198 1.275711 -0.026671 -0.560731 0.587845 -0.109305 -0.968398 -0.795787 0.493946 0.240960 -CTTC 0.173203 -0.358434 -1.487392 0.349604 0.208414 0.958753 0.527732 -0.879614 -0.498956 0.606279 0.599032 -0.338246 -CTGT -0.805314 -0.095241 0.080956 1.050431 0.136579 1.200922 0.914555 -1.023945 0.389086 0.190883 0.916536 -0.504816 -ACTT 0.335984 -1.106622 -1.165643 0.575688 -0.713090 1.306532 0.333792 -0.162036 -0.066728 0.349350 -0.510331 -0.901284 -CACT 0.337679 -0.949191 -1.065752 0.446393 -0.318315 1.191897 -0.113998 -1.095694 0.135181 0.184796 0.417196 -0.462782 -CTCC 0.003160 -0.142632 -1.555596 0.607245 -0.314377 0.737314 0.045975 -0.803454 -0.478048 -0.200305 1.561412 -0.072925 -TATA -0.120367 -0.207979 -0.556313 2.203632 0.235708 -0.253375 0.312119 -0.548208 0.715000 0.910174 -0.787816 -0.156579 -AACT 0.695047 -1.040637 -0.385013 0.746299 -0.505303 0.718522 0.766200 -0.448322 -0.231578 0.537199 0.207236 -1.364653 -ATCT 0.619346 0.320844 -0.667086 1.180949 0.256402 -0.057430 0.899838 -1.424096 -0.067153 0.339559 0.193571 -0.250865 -ACAC 0.360046 -1.970614 -0.458326 1.031837 -0.519809 0.659809 -0.814027 -0.732725 0.130474 0.478859 0.288282 -0.013887 -GAAG -0.341668 -0.910892 -0.259112 0.943684 -0.852854 -0.845393 0.980658 0.018102 -1.191810 -0.204679 -0.104369 -0.263491 -TGAT -0.139150 0.258016 -0.500714 1.759130 0.025511 0.496442 1.081411 -0.897722 0.111168 -1.149286 -0.526330 0.420535 -GAGT -1.208281 -0.437937 0.006018 1.112325 -0.851149 0.000781 0.990251 -0.241033 -1.096707 -0.311862 0.089913 0.517222 -TCCAT -0.343921 -0.430862 -1.850555 1.177338 0.305464 0.463099 0.785342 -0.865096 0.616584 0.225136 0.530313 1.133393 -CTCT 0.175380 0.342929 -0.936535 0.729119 -0.045019 0.798202 0.796710 -1.389253 -0.494448 0.061552 0.701740 -1.046744 -CTGG -0.502245 -1.377011 -0.318952 0.740449 0.877534 0.390205 0.263713 -0.147262 -0.631589 -0.848400 0.567007 -1.012386 -AGAT -0.067330 0.010764 -0.568256 1.573248 -0.123783 -0.603633 0.208543 -0.819008 -1.034818 -0.035517 -0.761906 0.585887 -TCG 0.242943 -0.359574 -1.106606 1.030057 0.258835 -0.530687 0.709896 -0.175296 -1.033230 -0.839935 0.490977 0.295047 -AGCA -0.091630 -1.009278 -0.406394 0.331900 -0.705328 -0.909122 0.112713 -1.438771 -0.507847 0.143469 -0.146178 -0.065452 -TGCT -0.160366 -0.042702 -0.690772 0.699627 -0.033874 0.466277 0.714066 -1.185288 0.569066 -0.827597 0.021918 -1.265728 -ATCA 0.901365 -1.129742 -0.668770 1.002482 0.385759 -0.833581 0.649286 -1.193190 -0.689154 0.317548 0.045126 0.856880 -CCTG -0.430380 -0.236918 -0.459188 1.008652 0.185839 0.267550 0.316545 -0.142885 0.147611 -1.072004 1.653032 -0.902035 -GTGG -1.517237 -1.359489 0.172174 0.846747 -0.043278 -0.465153 1.045631 -0.228868 -0.384917 -0.778141 0.175444 0.061970 -CATTC -0.058090 -0.275990 -1.990771 0.904777 -0.083610 0.337717 0.489914 -1.263242 0.571095 0.244643 0.259211 0.921862 -AAGT -0.638644 -0.793394 0.252640 0.783128 -1.067081 -0.215416 1.710075 -0.150404 -0.333979 0.722618 0.587199 -0.030112 -TACA -0.269000 -1.461280 -0.548858 0.985852 0.573098 -0.071527 -0.235731 -0.760979 0.360301 1.366140 -0.497894 0.086462 -TTCCA -0.098390 -0.352766 -2.056067 1.143157 -0.124829 0.591152 0.550242 -0.474559 0.339298 0.350887 0.397625 1.147871 -TCAG -0.705393 -0.353121 -0.861584 0.121634 0.062986 -0.615923 0.419203 -1.274396 -1.178104 0.469827 0.361702 0.381383 -ACTC 1.050590 -0.655614 -0.912811 0.721278 -0.245681 0.781269 0.155883 -0.837195 -0.870829 -0.009881 0.817114 -0.469552 -ACTG 0.033028 -1.451840 0.491968 1.139151 -0.068070 0.807900 0.066906 -0.624277 -0.026913 -0.549834 0.390701 -1.186298 -CAGG -1.080154 -1.513342 -1.389269 -0.162637 -0.464696 -0.751489 -0.264541 -0.373177 -0.642076 -0.216957 -0.020623 0.417159 -TTGG -0.686907 -1.118109 -0.953680 0.560022 0.320696 0.168461 1.080784 0.125090 -0.099984 -0.965806 -0.816177 -0.063243 -CTGA 0.642716 0.023108 -0.184741 1.284401 -0.276772 0.312121 0.500119 -0.680362 -0.921275 -0.991780 0.579535 -0.789073 -TCTA -0.171100 0.408506 -1.005122 1.374961 0.703503 0.031780 0.894355 -0.904882 -0.152663 1.258900 0.302519 -0.570232 -CCAG -0.982650 -0.415196 -1.441734 0.645916 -0.556413 -0.600970 -0.395656 -0.089932 -0.507565 0.344574 1.029901 0.592604 -TCAC -0.056843 -1.105513 -0.743912 0.337346 0.209730 0.521949 -0.243383 -1.630454 -0.249205 0.928401 0.465861 0.263459 -TGGG -1.218282 -1.120109 -0.586487 0.691175 0.557984 0.053850 0.411206 0.201914 -0.250742 -1.280127 -0.073380 -0.370588 -CCCA -0.123668 -0.948052 -1.181291 0.793367 -0.554487 -0.653304 -0.245425 0.078146 0.211843 0.177026 1.482991 0.913298 -GTGA -0.564683 -0.310905 0.545804 1.436235 -0.759018 0.304279 0.764717 -0.584610 -0.307451 -0.852617 0.325557 0.248517 -GTGT -1.559325 -0.453405 0.231593 1.124583 -0.073690 0.563653 1.358174 -0.672261 0.480337 -0.038492 0.483046 0.386369 -CTGC 0.307599 -0.778783 -0.521848 0.306147 0.037681 0.104666 0.393023 -1.360250 0.361969 -0.547900 0.816067 -1.163736 -CATG -0.081292 -0.897366 -0.192355 1.094591 -0.017472 -0.215995 0.120995 -0.980697 0.633068 -1.081452 0.172271 1.104788 -CCATT -0.306220 -0.464459 -2.070066 1.157778 0.295854 0.416197 0.495397 -0.531365 0.490664 0.113851 0.333622 0.969179 -TGGT -1.454518 -0.792846 -0.089510 0.996052 0.651477 0.457662 0.743815 -0.128825 -0.001146 -0.619295 -0.048653 0.021744 -GACT 0.386927 -1.203304 -0.373006 1.068954 0.155703 0.613795 0.334209 -0.381318 -1.119689 -0.489588 0.153834 -1.182194 -CCAA 0.685054 -1.080970 -1.232731 0.788369 -0.182844 -0.779287 0.604393 0.176338 0.351255 0.330579 1.254572 0.515354 -GACA 0.068857 -1.510417 -0.191427 1.075807 -0.344676 0.328218 -0.524212 -0.782119 -0.911615 -0.165855 -0.400124 0.457398 -ATAG -0.366368 -0.627492 -0.440166 1.769908 -0.092448 -1.398930 0.336267 -0.271132 -0.539775 0.327497 -0.666400 -0.044681 -ACCA 0.198436 -1.068893 -0.606791 1.396461 -0.314906 -0.131223 -0.639069 -0.036562 0.230078 0.251380 0.999855 0.712786 -CCTC 0.093093 -0.058428 -1.675271 0.356961 -0.041691 0.046170 0.333038 -0.720502 -0.380041 -0.278696 1.610886 -0.318524 -CCAC 0.126685 -1.017643 -1.268332 0.703520 -0.226767 0.601894 -0.572143 -0.573402 0.406626 0.070428 1.099014 0.173563 -GGGA -0.527714 -1.486984 -0.570200 0.804737 0.145126 -0.465542 0.370649 0.239912 -0.969240 -0.766644 -0.473195 -0.467542 -ATTCC -0.008591 -0.448220 -2.011458 1.398426 0.736965 0.608983 0.608951 -0.356485 0.249126 0.327761 0.611830 0.845764 -TATG -0.677661 -0.206193 -0.020709 1.575958 0.452720 -0.256977 0.518241 -0.528438 0.809739 -0.498064 -0.398132 -0.370874 -GCAA 0.457144 -1.521522 -0.098640 0.500552 -0.090351 -1.068264 0.934311 -1.167716 0.500297 -0.150587 0.234758 -0.607348 -GCAG -1.122806 -0.915666 -0.097226 0.234558 -0.586103 -0.940030 0.030862 -1.582450 -0.389425 -0.102287 0.319692 -0.255080 -ATGC 0.586760 -0.914717 -0.415936 1.015679 0.421922 -0.930113 0.536510 -1.174230 0.939111 -0.956455 0.252977 -0.427325 -CATA 0.043275 -0.512720 -0.681272 1.469891 0.041057 -0.537403 -0.458417 -0.901451 0.480528 0.718197 -0.339077 0.459616 -CAGT -1.252558 -0.545558 -0.426486 0.438212 -1.206436 0.163828 0.365694 -1.067069 0.234130 0.726306 0.361552 0.825115 -GCCT -0.572806 -0.021706 -0.886948 0.625928 0.076486 -0.548317 0.447485 -0.085231 0.254331 -0.468656 1.243474 -1.283026 -CATC 0.541153 -0.364352 -1.050242 0.760495 0.079471 -0.427914 0.140397 -1.861282 0.125337 0.119397 0.524872 0.840032 -GGTG -1.512410 -1.249773 0.163270 0.773266 -0.101062 0.272757 0.741621 -0.119500 -0.218641 -0.900274 -0.074766 0.188300 -GCAT -0.246476 -0.700944 -0.895568 0.529158 0.619868 -0.507351 0.302449 -1.594194 0.762784 -0.657799 -0.496960 0.265618 -AGCT -0.298192 0.025852 -1.000370 0.382705 -0.259977 -0.317678 0.290788 -0.918719 -0.961072 0.022437 0.104896 -1.272413 -GCTG -0.751907 -0.426726 -0.073578 0.634904 -0.064409 -0.132194 0.751140 -1.101032 -0.069140 -1.170738 0.416491 -1.357121 -GAGG -1.000022 -0.876700 -0.632361 0.609220 -0.752603 -0.757517 0.297358 -0.243789 -1.145673 -0.993119 -0.155655 -0.548163 -AGGG -1.198168 -1.624700 -0.970385 0.238636 -0.289904 -0.758031 0.413457 0.382064 -1.020128 -0.481492 -0.050261 -0.234504 -TGTC -0.612041 -0.166684 -0.088529 0.791553 -0.040624 0.635741 1.005789 -1.354065 0.144464 -0.340288 1.028962 0.926014 -CAGC -0.403621 -0.649286 -1.209251 0.247090 -1.010524 -0.871565 -0.623224 -1.580856 0.052663 0.182591 0.573097 -0.244249 -AGGC -0.673753 -0.787009 -1.127395 0.269597 -0.267675 -0.984946 -0.425303 -0.623268 -0.385925 -0.705954 0.090243 -0.504470 -GCTT -0.430081 -0.269113 -1.341773 0.118839 -0.261400 0.079375 0.947624 -0.598695 0.070368 -0.286378 -0.403322 -1.289933 -TCCC -0.294504 0.108053 -1.548946 0.739398 -0.228920 0.019080 0.446462 -0.151446 0.298601 0.132321 1.587317 0.197233 -CTTG -0.061611 -0.351245 -0.808465 0.792697 -0.294336 1.283275 0.899496 -0.308179 -0.084122 -0.880847 0.071975 -0.484856 -CTAT -0.110059 0.455861 -1.007758 1.611628 0.885673 0.442856 0.335364 -0.987115 0.245169 0.153495 -0.080020 -0.513586 -ACG -0.257226 -1.565960 -0.133300 0.763982 -0.670276 -0.050756 -0.125488 -0.145864 -0.316843 -0.485794 0.283524 0.048189 -CAAG -0.023073 -1.205261 -0.600446 0.105462 -0.506954 -0.916913 0.788470 -0.531307 -0.672447 0.487297 0.614908 0.253028 -AAAAT 0.899210 -1.187266 -0.412516 1.448437 0.162002 -0.779758 1.557003 -0.017498 0.108317 0.418791 0.102439 -0.037176 -CCCT -0.183533 0.082479 -1.618828 0.947152 -0.248561 0.296121 0.353452 0.235268 0.231499 -0.114031 1.394902 -0.799891 -CTAA 0.461747 -0.319918 -0.124609 1.446400 -0.150303 -0.022727 0.873242 -0.169806 -0.223231 0.844459 0.436220 -1.354047 -GAAC 0.359057 -1.430182 -0.273470 1.075120 -0.873262 0.281805 0.010666 0.191119 -0.518266 -0.382170 0.237645 -0.225188 -CACC 0.042034 -1.184440 -1.305898 0.539126 -0.382820 0.379151 -0.657784 -0.548344 0.449562 0.308456 1.493202 0.108859 -AGAC 0.245981 -0.928993 -0.565042 1.427715 -0.719183 0.091147 -0.739604 -0.290011 -1.195563 0.206271 -0.030671 -0.059144 -TTAC -0.293223 -0.941273 -1.084501 1.262310 0.116208 1.058749 -0.175271 -0.150956 0.445056 0.925389 -0.452340 0.008092 -GTAA -0.482014 -0.927464 0.514670 1.982713 -0.164362 -0.078449 1.131753 0.153405 0.240624 0.787996 0.217928 -0.101291 -TTGC -0.013335 -0.642411 -1.131836 0.396848 -0.111724 0.327279 0.915993 -1.006815 1.083116 -0.967319 -0.315638 -0.302280 -CCG -0.740045 -0.682607 -1.187982 0.460519 -0.471215 0.204925 -0.020057 0.204955 -0.101825 -0.609817 0.936802 0.079408 -TACT -0.076892 -0.554621 -0.594031 1.401210 0.354060 0.848323 -0.035772 -0.429452 0.375698 0.871741 -0.091949 -1.199446 -GATA 0.046306 -0.320925 -0.317452 1.957422 0.238862 -0.713661 -0.099788 -0.503182 -0.571409 0.138641 -0.757295 -0.178100 -ATTTT 0.169159 -0.629242 -1.239292 1.294969 0.575903 1.006875 1.052270 -0.315573 -0.316477 0.105680 -0.857997 0.746980 -GATG -0.544515 -0.322630 0.056075 1.408318 0.292508 -0.363936 0.691567 -0.972576 -0.157131 -1.377825 -0.223632 0.410901 -AGTA -1.130282 -0.593905 0.034732 1.758349 -0.466179 -0.352251 0.374597 0.180747 -0.355687 1.282973 -0.149751 0.110031 -GGAC -0.000108 -1.683305 -0.344353 1.228469 0.185881 0.410653 -0.118752 0.070699 -0.993777 -0.481991 0.175041 -0.828898 -TTAG -1.016379 0.073029 -1.211650 1.026815 -0.651755 -0.097834 0.488809 0.037017 -0.333538 0.755206 -0.818763 -0.372152 -ACTA 0.385030 -0.649221 -0.384203 1.798093 -0.307728 0.329191 -0.163546 -0.215215 -0.261978 1.081249 -0.133742 -1.420459 -TGCC -0.131320 -0.095338 -0.897466 0.973157 -0.120894 -0.058746 0.321474 -0.474250 0.986050 -1.096352 0.975105 -0.187983 -TTTCT -0.300314 0.115844 -1.715762 0.763663 0.201177 1.084983 1.604027 -0.756987 -0.146892 0.702698 0.037281 -0.503012 -AAGC 0.178618 -0.775827 -0.698988 0.457277 -0.948053 -1.385559 0.488590 -0.646424 -0.168035 0.380693 0.410376 -0.990552 -TATTT -0.247269 -0.113678 -1.339995 1.781228 0.193916 0.594397 1.121449 -0.440302 0.499763 0.454562 -1.353936 0.211436 -AGCC -0.359801 -0.141940 -1.203090 0.877792 -0.503802 -1.124558 -0.244246 -0.016623 -0.526949 -0.289995 1.316752 -0.389125 -CGG -0.671844 -1.396960 -0.608830 0.610310 -0.258283 -0.320922 0.022840 0.143374 -0.318740 -0.901428 0.253760 -0.158305 -TAGT -1.356239 0.007387 -0.382191 1.289106 -0.558755 -0.178135 0.805993 -0.228425 0.195484 1.166564 -0.197212 0.011907 -CGT -1.083601 -0.389806 -0.731484 0.361903 -0.457256 0.590738 0.289210 -0.584843 0.104277 -0.237191 0.603725 0.338704 -TTTTG -0.475513 -0.699963 -1.229136 0.878440 -0.108055 1.288275 1.440914 -0.305338 0.223216 -0.681078 -0.816540 0.068861 -AAATA 0.747199 -0.942960 -0.533430 1.880327 0.221634 -1.057023 0.876087 -0.029262 0.177322 0.756025 -0.164556 -0.339805 -GTCA -0.634797 -0.837379 0.002875 0.480319 0.003006 -0.240480 0.816233 -1.353531 -0.385773 0.193449 0.489861 1.305789 -ATCC 0.553146 0.044632 -1.398679 1.361217 0.295587 -0.477948 0.324298 -0.245634 0.143278 -0.254656 0.992526 0.640067 -GGAT -0.462847 -0.586044 -0.899258 1.033752 0.923187 -0.605835 0.585629 -0.358949 -0.468411 -0.911731 -0.803195 0.163794 -TAAG -0.743307 -0.354382 -0.155732 1.007422 -0.304512 -0.726739 1.025292 -0.198416 -0.372747 0.967605 -0.183708 -0.762905 -TGGC -0.657570 -1.113555 -0.725970 0.464601 0.149982 -0.125574 0.016220 -0.702227 0.475646 -1.374699 -0.048672 -0.315160 -ATAC 0.356086 -0.895207 -0.613338 1.804235 0.593161 0.060090 -0.736020 -0.358281 0.256506 0.466140 -0.158775 -0.214751 -GTCT -0.731636 0.102879 -0.311891 0.462435 0.091942 0.527910 1.332526 -1.145739 -0.482218 0.200362 0.757439 -0.273000 -GGCT -0.919817 -0.604373 -1.034135 0.085615 0.347669 -0.051242 0.389170 -0.753939 -0.560343 -0.683101 0.050691 -1.325872 -GGCA -0.431012 -1.817339 -0.518151 0.226457 0.298263 -0.782415 -0.196736 -1.167610 -0.036900 -0.742574 -0.059679 -0.001077 -AGGT -1.507185 -0.738026 -0.366022 0.396763 -0.136684 -0.226061 0.739274 -0.271641 -0.879395 0.213487 -0.170105 0.234736 -ACCT 0.016235 -0.474378 -0.620164 1.211912 -0.080268 0.684906 -0.232004 0.206141 0.271672 0.229724 1.216115 -0.765273 -TATC 0.102924 0.428990 -0.842668 1.410661 0.444734 -0.384649 0.529303 -1.155603 0.255399 0.662463 0.058941 -0.027102 -GCCA -0.181484 -0.807707 -0.779566 0.544935 -0.174822 -0.672287 0.098985 -0.430079 0.735108 -0.563579 1.077951 0.297257 -AAATG 0.709618 -1.441991 0.077209 1.364862 -0.100571 -0.668923 1.412395 -0.375204 0.474642 -0.434508 0.445913 0.107658 -AAAGA 0.482539 -1.350774 -0.328673 1.247911 -1.005734 -0.988013 1.038370 -0.201313 -1.025462 0.557845 -0.158047 -0.199176 -GTAT -1.111980 -0.047849 0.003674 1.907790 0.693932 0.013966 0.598040 -0.398437 0.366138 0.280789 -0.276577 0.283470 -GGGG -1.455498 -1.742717 -0.943494 0.214367 0.119241 -0.234344 0.423437 0.179700 -0.824210 -0.981349 0.092329 -0.548764 -GAGC -0.377081 -0.150745 -0.713097 0.570472 -1.168251 -0.671572 0.117288 -0.982876 -0.635453 -0.876295 0.293724 -0.561499 -AGAAA 0.579679 -1.237653 -0.408378 1.354080 -0.949799 -0.555702 0.821514 0.116452 -1.276577 0.513493 0.118320 -0.310040 -GTTG -1.062743 -0.375496 -0.216611 0.970890 -0.489315 0.771551 1.340800 -0.208825 -0.237321 -0.937651 -0.132353 0.130465 -CAAC 0.817161 -1.756716 -0.692054 0.379475 -0.548053 0.269489 0.069597 -0.665748 0.026053 0.354505 0.739927 0.019708 -TAAAA 0.463764 -0.976758 -0.267262 1.614435 0.015115 -0.211274 1.474624 0.169526 0.270816 1.244745 0.054797 -0.360742 -AACC 0.532139 -1.171995 -0.652462 1.239024 -0.576505 -0.155797 0.012150 0.697658 0.477433 -0.055178 1.203924 -0.415225 -CTTA -0.008628 -0.153371 -0.944459 1.098729 0.155027 0.591995 0.359583 -0.424523 0.035462 0.766136 -0.405183 -1.040087 -AGTC -0.838087 -0.138378 -0.691360 0.696058 -0.435974 -0.120985 0.856528 -0.644155 -0.763792 0.504762 0.887284 0.873673 -GGTT -1.514783 -0.880391 -0.948742 0.126178 0.239358 0.580685 1.046973 -0.094097 -0.585449 -0.054203 -0.374789 0.297025 -TCAAA 0.847908 -1.379524 -0.583683 0.492702 0.232680 -0.454967 1.533003 -0.740811 -0.425856 0.703359 0.574214 0.140093 -TTTTC -0.226418 -0.386950 -1.948164 0.602379 0.052462 1.086690 1.393495 -0.485085 -0.279975 0.657718 -0.156595 0.361902 -TCGA 0.377522 -0.374076 -1.112504 1.219278 0.212665 -0.533856 0.639118 -0.293446 -1.108381 -0.752610 0.439205 0.241389 -TCTTT -0.085051 -0.062208 -1.849497 0.584304 0.146708 1.065675 1.679292 -0.866566 -0.041070 0.481224 -0.114687 -0.423221 -AGAAT 0.197398 -0.502260 -0.537739 1.790744 -0.044806 -1.073381 0.718559 -0.183788 -1.033573 0.225164 -0.318921 0.192198 -GCTC -0.354689 -0.200588 -1.148672 0.000652 -0.112506 -0.033816 0.432823 -1.337667 -0.470807 -0.444681 0.965691 -0.894990 -GTTC -1.136960 -0.295530 -0.931844 0.181483 0.316866 0.561395 1.281020 -0.622610 -0.423473 0.315499 0.747331 0.455315 -TAAC 0.002540 -0.919713 0.117555 1.548922 -0.502205 0.336131 0.161532 -0.324708 0.530804 1.243637 0.088237 -0.442887 -GGAAA -0.097210 -2.087738 -0.176316 0.998159 -0.199190 -0.619044 1.152296 0.500952 -0.590250 -0.018246 0.143270 -0.355352 -AAAAG 0.132897 -1.418176 -0.352261 0.917709 -0.823965 -0.901311 1.465904 0.147168 -0.545305 0.921576 0.198754 -0.388041 -CAAAA 0.846309 -1.772519 -0.368285 0.666540 -0.403582 -0.346391 1.079455 -0.410475 -0.173712 0.878567 0.667997 0.278523 -TGAAA 0.508775 -1.052994 0.087402 1.338071 -0.757980 0.165662 1.548472 0.197430 -0.155703 -0.516524 0.275494 -0.135042 -TGAC 0.268082 -0.768257 0.069643 1.549356 -0.699755 1.142843 -0.281653 -0.469696 -0.166863 -0.826803 0.358630 0.088465 -TTTTA -0.330095 -0.573469 -1.203089 1.409420 0.027971 0.835046 1.155411 -0.235471 0.179759 0.889681 -1.308933 0.026533 -TTCTT -0.277432 0.001831 -1.789182 0.688298 -0.264737 1.140228 1.698396 -0.791789 -0.358884 0.518402 -0.288753 -0.368425 -GGCC -0.919724 -0.608749 -1.090339 0.453773 0.106428 -0.699015 -0.153415 -0.019313 -0.066994 -0.990923 0.997517 -0.571086 -CATTT 0.004030 -1.099933 -1.523750 0.731006 -0.215407 0.979298 0.510880 -0.821614 0.400458 -0.105372 -0.842476 1.066707 -CTTTT -0.065868 -0.384724 -1.589554 0.838124 -0.040916 1.774062 1.077503 -0.516445 -0.190848 0.157221 -0.246990 -0.459924 -ACCC 0.209630 -0.997222 -0.905713 1.337092 -0.761720 0.050787 -0.503296 0.359431 0.324818 0.008145 1.565819 -0.082345 -GAAAA 0.496625 -1.457567 -0.154855 1.226467 -0.332396 -0.523931 1.446296 0.377297 -0.700161 -0.044733 0.300609 -0.187460 -TTTGT -0.981923 -0.395527 -0.807523 1.115697 -0.038476 1.213666 1.819320 -0.305785 0.771188 -0.275403 -0.334907 0.144549 -GCAC -0.174062 -1.545494 -0.333261 0.353403 -0.265760 0.054183 -0.603142 -1.477762 0.344283 -0.130897 0.486969 -0.547904 -TTGAA 0.428353 -0.733891 -0.696232 1.174168 -0.878204 0.274787 1.844222 0.295868 -0.130843 -0.686749 -0.399774 0.020125 -TTTAT -0.336764 -0.248595 -1.324386 1.591462 0.600592 0.654098 1.106696 -0.431913 0.457075 0.372974 -1.241225 -0.055944 -AATTT 0.577855 -0.975878 -0.946389 1.122447 -0.032245 0.260527 1.669638 -0.083277 -0.108013 0.235646 -0.916002 0.416616 -ATAAA 0.953408 -1.134499 -0.242889 2.010489 0.127648 -0.596925 0.804316 -0.149245 0.377553 0.858667 -0.144571 -0.250084 -GGGT -1.810657 -0.962627 -0.573550 0.409020 0.374266 0.283599 0.771011 -0.091602 -0.401995 -0.600355 0.073194 0.098396 -CCCC -0.088523 -0.779170 -1.509170 0.988523 -0.675761 -0.230950 -0.331554 0.061999 0.466195 -0.163118 1.857703 0.024056 -CGC -0.313531 -0.713156 -1.065003 0.200491 -0.385720 -0.128167 -0.282232 -0.798215 0.195335 -0.733107 0.646336 -0.451062 -GTGC -0.970645 -0.652393 -0.076748 0.353880 -0.328885 -0.131374 0.752725 -1.141492 0.822857 -0.618279 0.617171 -0.309633 -AGGAA -0.071975 -1.739271 -0.671392 1.102203 -0.393297 -1.089498 0.965336 0.549910 -0.862850 0.132765 -0.144482 -0.208235 -AAGGA 0.106089 -1.898550 -0.536144 1.024804 -0.473136 -0.994234 1.031109 0.142495 -1.010502 0.209055 -0.250415 -0.547832 -ATTCT 0.182719 0.088073 -1.275742 1.095351 1.059300 0.378643 0.998807 -1.017222 -0.346594 0.468424 0.229886 -0.038126 -GTTA -1.128660 -0.595371 -0.022410 1.325278 0.066403 0.685849 0.823954 -0.125408 0.143623 1.060842 -0.298855 -0.077458 -GCG -0.852889 -0.785153 -0.708413 0.260143 -0.388097 -0.211093 -0.110406 -0.670527 -0.003472 -0.909010 0.439793 -0.369141 -AAATT 0.855447 -1.028186 -1.057900 1.245991 -0.111516 -0.044976 1.597924 0.114920 0.256278 0.602922 -0.336790 0.361498 -TAGG -1.328378 -0.696694 -0.730743 0.884658 0.296169 -0.805308 -0.006898 0.047267 -0.383520 0.133798 -0.789046 -0.664010 -CCTA -0.332578 0.332929 -0.987717 1.570257 0.101256 -0.507300 -0.074233 0.328899 0.192053 0.447496 0.932861 -0.903917 -CTAG -0.798388 0.241308 -0.633742 1.177792 -0.456254 -0.193298 -0.022614 -0.250851 -0.687404 0.774411 0.195484 -0.956138 -AAACA 0.832613 -2.323109 -0.314690 1.116866 -0.602192 -0.062914 0.499069 -0.158376 -0.024798 0.715740 0.040516 0.204536 -GTAG -1.606271 -0.187541 0.026881 1.521322 -0.538275 -0.438796 0.469638 -0.078320 -0.384747 0.391916 -0.194612 -0.191381 -TAGAA -0.082918 -0.764874 -0.531190 2.039316 -0.451698 -1.061095 0.722538 0.063236 -0.695613 0.405720 -0.805738 -0.195470 -ACAAA 0.868979 -2.273153 -0.294367 1.217702 -0.210227 -0.353241 0.316526 -0.239375 -0.050426 1.097295 0.272408 -0.044256 -TTTCC -0.543949 -0.275978 -1.879480 0.811779 0.019950 0.945450 1.046808 0.014947 0.553801 0.232374 0.566694 0.547459 -TTTCA -0.078778 -0.976860 -1.660272 0.131826 0.210023 0.338273 1.324173 -0.989729 -0.176852 0.727552 -0.444069 0.830497 -GTCC -1.016462 -0.149985 -1.112421 0.803094 -0.250942 0.115974 0.787012 -0.294791 -0.114692 -0.031631 1.381999 1.034080 -GAAAT 0.496212 -0.732949 -0.100676 1.565961 -0.149134 -0.560949 1.383887 -0.009942 -0.349666 -0.291288 -0.057635 0.074854 -AAGAA 0.510844 -1.317030 -0.293904 1.473187 -0.962295 -0.912430 1.282137 0.034602 -0.827358 0.553800 -0.069612 -0.237369 -CAAAT 0.916721 -1.200914 -0.390501 1.121673 0.307996 -0.514682 0.990531 -0.584723 0.000431 0.313603 0.457624 0.508070 -CGAA 0.455272 -0.937308 -0.593350 1.293901 -0.101133 -0.747953 0.723145 -0.265467 -0.773581 -0.578989 0.550976 -0.161121 -AAAGG -0.244319 -1.978903 -0.541185 0.566520 -0.459987 -0.925231 1.255803 0.232094 -0.714810 0.251044 -0.077723 -0.610343 -ACAGA 0.117827 -1.284155 -0.145788 1.613472 -0.826488 -0.429530 -0.559895 -0.837141 -1.291652 0.646072 -0.100168 0.395755 -TTTGA 0.230191 -0.283150 -1.159675 1.111616 -0.458936 0.863313 1.242313 -0.298925 -0.299539 -0.784433 -0.751866 0.164569 -ACACA 0.213421 -2.476958 -0.353769 1.254935 -0.300608 0.131271 -0.896098 -1.223510 -0.092599 0.844707 -0.100252 0.302419 -GTTTT -1.026669 -0.630554 -1.082665 0.784849 -0.149457 1.375513 1.356117 0.008663 -0.311363 0.277975 -0.371831 0.579378 -CTAC -0.054013 -0.384307 -0.698971 1.271585 0.216305 0.598910 -0.730182 -0.779401 -0.109899 0.998503 0.601490 -0.862883 -TGTTT -0.894041 -0.448369 -0.702718 1.020720 -0.043737 1.486429 1.707112 -0.358733 0.588190 -0.212570 0.020125 0.372551 -GAAAG -0.208640 -1.373100 -0.333001 0.930994 -0.696382 -0.793542 1.460067 0.182451 -1.118822 -0.054438 0.127367 -0.340569 -TTTAA 0.178928 -0.917425 -0.898039 1.241601 -0.173287 0.434634 1.667900 0.125520 0.240827 0.932609 -0.840598 -0.233272 -ATATT 0.209919 -0.449985 -1.104626 1.852090 0.870256 0.045161 0.679005 -0.256868 0.186840 0.234114 -1.056834 0.268384 -ATTTG 0.093377 -0.638750 -0.949986 1.275963 0.671335 0.889493 0.999071 -0.296928 -0.072492 -0.858117 -0.644149 0.589088 -TTATT -0.375894 -0.107415 -1.661720 1.700332 0.566317 0.760662 0.971646 -0.239105 0.340395 0.375318 -1.079510 0.181463 -AATAT 0.513460 -0.521551 -0.597435 1.930490 0.694840 -0.755343 1.020901 -0.273946 0.201703 0.415070 -0.561488 -0.118710 -TTAAA 0.452572 -0.977883 -0.852039 1.337854 -0.358018 0.353041 1.648307 0.401183 0.372224 1.048367 -0.477007 -0.366940 -TTCCT -0.484084 0.292358 -2.166203 1.185200 0.125004 0.980711 1.145466 -0.132648 0.352425 0.082127 0.634449 -0.187405 -AATAA 0.996714 -1.127003 -0.121026 2.293629 -0.055711 -0.790312 1.301273 -0.132007 0.189425 0.846124 -0.029638 -0.126401 -AAACT 0.960317 -1.248377 -0.399632 0.868621 -0.644554 0.573428 0.913761 -0.305212 -0.086094 0.468196 0.283464 -1.354878 -ATGAA 0.613391 -1.020438 0.111531 1.731196 -0.550481 -0.547240 1.231177 -0.178668 -0.154376 -0.688788 -0.012804 0.160121 -TGAAT 0.450415 -0.382329 -0.330065 1.774782 -0.157464 -0.001814 1.477627 -0.158650 -0.007437 -0.930524 -0.251726 0.130229 -AAAAC 0.972036 -1.963175 -0.436708 1.290331 -0.715180 0.075405 0.717521 0.223371 0.187168 0.907727 0.514247 -0.485739 -CCTTT -0.187540 -0.158677 -2.132848 0.885257 -0.199427 0.884744 0.806361 0.369252 0.401887 0.103573 0.341070 -0.383990 -ATAGA 0.081831 -0.863186 -0.671524 2.265115 -0.256719 -1.122666 0.510760 -0.229384 -1.010247 0.395145 -0.804655 -0.038050 -CAGAA 0.417873 -1.054013 -0.587238 0.965981 -1.266123 -0.915288 0.172452 -0.550077 -0.850805 0.268389 0.112487 0.431081 -GCCC -0.581473 -0.513362 -1.153001 0.658834 -0.601959 -0.618094 -0.080252 -0.122254 0.335118 -0.677970 1.597664 -0.308994 -AGAGA -0.105373 -0.818897 -0.212997 1.657225 -1.116344 -0.697817 0.019163 -0.616454 -1.769485 -0.005735 -0.297203 0.141785 -TCTGT -0.772201 0.283986 -0.322298 0.956259 0.397099 0.824837 1.599358 -1.404987 0.248736 0.132036 0.916054 -0.238909 -TACC -0.361608 -0.376891 -1.093036 1.574664 0.334703 -0.093901 -0.669100 0.330695 0.764684 0.728658 0.754986 -0.295251 -TCCTT -0.375180 -0.031402 -2.063104 0.920959 0.090476 0.936638 1.373907 -0.156427 0.377685 0.154412 0.529623 -0.181498 -TGGAG -1.157079 -0.881943 -0.258610 1.223230 -0.338493 -0.159277 0.653560 -0.107829 -0.903549 -1.039953 -0.301185 -0.283353 -GGTA -1.514869 -0.917608 0.086658 1.279582 0.477396 -0.293233 0.387596 0.073870 -0.089857 0.245194 -0.341540 -0.290835 -TTCAA 0.651484 -1.035902 -1.339376 0.358687 0.061836 0.096572 1.554060 -0.587256 -0.263749 0.578161 -0.104211 0.573806 -GGGC -1.228867 -1.361563 -1.132940 -0.099620 0.081381 -0.352679 0.013963 -0.517757 -0.381565 -1.123075 0.415909 -0.589068 -TTCTG -0.404440 0.274441 -0.889495 0.623611 0.212113 0.782330 1.322505 -1.101444 -0.184818 -0.391627 0.371629 -0.220768 -ATTTA 0.132345 -0.819245 -1.021398 1.761283 0.777001 0.468514 0.795717 -0.006744 -0.241429 0.595012 -1.206688 0.329424 -AGTTT -1.014349 -0.595430 -0.676800 0.710675 -0.746162 0.638537 1.287651 -0.017742 -0.708547 0.802259 -0.511495 0.378716 -TTCAT -0.138051 -0.212865 -1.586404 0.723511 0.389170 0.313634 0.975785 -1.266053 0.151771 0.127461 -0.252497 1.124450 -CTTTC -0.011538 -0.141221 -1.818371 0.516845 0.015137 1.197427 0.767535 -0.644438 -0.423880 0.438740 0.576080 -0.293132 -AATGT -0.101562 -0.832003 0.553585 1.693273 -0.016847 -0.149494 1.572036 -0.401635 0.552312 -0.012888 0.574724 0.577023 -GCTA -0.317196 -0.065365 -0.450689 1.203600 0.278158 -0.461328 -0.041763 -0.741577 0.276973 0.070855 0.051082 -1.672621 -AATGA 0.720091 -1.064115 0.213754 1.865788 -0.363102 -0.428866 1.126688 -0.360963 -0.280146 -0.682496 0.135481 0.155812 -AATAG -0.066552 -0.854498 -0.358083 1.861939 -0.149220 -1.240322 0.709746 -0.257286 -0.690982 0.460885 -0.542283 -0.168159 -GATC 0.300098 0.307053 -0.763721 1.093596 0.165424 -0.676751 0.361922 -1.053273 -0.987119 -0.600184 0.302329 0.463209 -TGTGT -1.360408 -0.425321 0.155457 1.399893 -0.176990 0.971665 1.316183 -0.830062 0.998671 -0.543122 0.437846 0.330601 -ATTTC 0.372122 -0.367815 -1.430034 0.910201 0.691933 0.524508 0.929271 -0.555118 -0.327903 0.425017 -0.049970 0.864539 -ATTCA 0.380595 -0.900542 -1.301016 0.769074 0.880454 -0.036872 0.761153 -1.172971 -0.511257 0.572017 -0.171505 1.055475 -TAAAT 0.525205 -0.539767 -0.382548 1.981108 0.358636 -0.300514 1.599758 -0.131793 0.521224 0.905225 -0.240199 0.065423 -TAGC -0.767710 -0.133238 -0.835174 0.788459 -0.362490 -0.770672 -0.171205 -0.748689 0.254534 0.651627 -0.206145 -0.842697 -TTCTA 0.007870 0.568079 -1.583811 1.558616 0.239398 0.653135 0.970199 -0.828888 -0.084582 1.033636 0.023524 -0.324140 -GAATA 0.006231 -0.953496 -0.405127 2.051947 -0.042569 -1.063677 0.510813 -0.001362 -0.474013 0.150198 -0.497226 -0.313582 -GACC -0.002185 -0.728585 -0.775052 1.263590 -0.446525 0.047746 -0.586711 0.401993 -0.354743 -0.561788 0.826044 0.101869 -ATTGA 0.539345 -0.618285 -0.450018 1.639800 -0.090699 0.334162 1.328823 -0.303000 -0.464339 -0.899858 -0.605107 0.221117 -AGAAG -0.381539 -0.997921 -0.268922 1.236233 -0.986772 -1.129686 0.593371 -0.198245 -1.518765 0.406854 -0.038678 -0.217074 -TGGAC 0.058408 -1.484793 -0.150309 1.479949 0.039637 0.298477 -0.003758 -0.085948 -0.580621 -0.818843 0.053799 -0.547600 -TTGTT -0.952107 -0.352571 -1.143597 1.149604 -0.111650 1.291126 1.863361 -0.121770 0.686539 -0.318580 -0.215834 0.303415 -AATTA 0.311806 -0.902762 -0.647841 1.654395 0.079581 -0.321753 1.068829 -0.078063 0.109470 1.022141 -0.830868 -0.066758 -TGCAA 0.812268 -1.401954 -0.123486 0.686173 -0.187346 -0.269429 1.071914 -1.090948 0.618219 -0.607279 0.080735 -0.327831 -GTGGA -1.130704 -1.238082 0.206729 0.975995 -0.186340 -0.406617 0.862130 -0.146054 -0.536634 -0.726509 0.143987 -0.027630 -AATTG 0.271697 -0.849752 -0.482198 1.353764 -0.325352 0.154487 1.600681 -0.169062 0.019097 -0.693136 -0.600890 0.231148 -TGTAA -0.418102 -0.726866 0.505137 1.873323 -0.123801 0.069498 1.371371 -0.059155 0.650298 0.300635 0.232416 -0.039319 -GGTC -1.138872 -0.540780 -0.649104 0.090076 0.351667 0.049819 1.011353 -0.675358 -0.569169 -0.443126 0.840015 0.534249 -CTTCT -0.130283 0.154037 -1.495029 0.536959 -0.026155 1.142820 1.078512 -1.018484 -0.320519 0.365674 0.659378 -0.970807 -GAATT 0.280935 -0.795612 -0.767000 1.341650 -0.058467 -0.117133 1.528659 0.077103 -0.564792 -0.343176 -0.759173 0.283862 -CTCCA 0.384326 -0.465614 -1.573883 0.646816 -0.398058 0.557570 -0.057063 -0.922102 -0.225249 0.187406 1.483234 0.237921 -TTCTC 0.035370 0.232855 -1.463734 0.466864 -0.250175 0.792409 1.206999 -1.224799 -0.426446 0.421646 0.535851 0.089810 -TCACA 0.259320 -1.252116 -0.849370 0.412371 0.083613 0.247846 0.013655 -1.595155 -0.163477 1.051219 0.215882 0.572722 -CACAC 0.189871 -2.165887 -0.830632 0.940529 -0.641361 0.492610 -1.020674 -1.531424 0.221431 0.578225 0.447630 0.184496 -CTTTG -0.184810 -0.336102 -1.118247 0.699522 -0.265366 1.505883 0.838478 -0.377531 0.041010 -0.781419 0.043298 -0.409909 -ATATA 0.220793 -0.482464 -0.452620 2.578520 0.791227 -0.636273 0.278364 -0.427707 0.335857 0.542992 -0.827126 -0.230088 -AACAA 0.955717 -2.364072 -0.208787 1.134451 -0.372018 -0.243489 0.765964 -0.148183 0.027309 0.788434 0.256218 -0.032706 -CAGAG -0.583599 -0.791894 -0.609972 0.715608 -1.294989 -0.485281 -0.336095 -1.030047 -1.242163 0.149856 0.067745 0.502710 -TGTGA -0.454727 -0.284013 0.304881 1.499343 -0.489131 0.785395 0.957742 -0.464320 0.137768 -1.001055 0.283754 0.243428 -AGTGG -1.419374 -1.399725 0.219688 0.954503 -0.507639 -0.351557 0.722401 -0.416980 -0.765678 -0.635131 0.050843 0.028368 -ACTTT 0.177080 -1.240803 -1.338982 0.468837 -0.536437 1.465509 0.428862 -0.222719 0.172647 0.463180 -0.614994 -0.843687 -AATCA 0.997314 -1.166248 -0.532655 1.128558 0.104273 -0.846167 1.121418 -0.914264 -0.383318 0.414029 0.174913 0.538842 -GAGAA 0.125811 -0.800329 -0.192257 1.338123 -0.994447 -0.598120 0.790366 -0.191232 -1.119948 -0.480335 -0.307755 -0.176948 -GAGTG -1.357511 -0.891412 0.317644 1.299134 -1.002430 -0.227010 0.878229 -0.466217 -0.707705 -0.745587 -0.007634 -0.063779 -TCTCT 0.081095 0.318635 -1.162508 0.624739 0.184044 0.615552 1.445914 -1.503389 -0.418919 0.473917 0.864208 -0.641010 -ACATT 0.169175 -1.257657 -0.921695 1.179631 0.227280 0.768356 0.042506 -0.510292 0.255938 0.413563 -0.716429 0.845369 -TATTC -0.311703 0.253743 -1.731181 1.450304 0.544390 0.204696 0.742531 -0.737992 0.243097 0.859010 -0.053019 0.166247 -TAATT 0.178352 -0.355669 -0.832520 1.833619 0.382370 0.124864 1.588915 -0.013169 0.332326 0.736494 -0.603852 0.219231 -CAAAG 0.307443 -1.414833 -0.387432 0.231057 -0.604082 -0.741981 0.800817 -0.635115 -0.711650 0.537577 0.608290 -0.101426 -TATAT -0.285049 0.119355 -0.674417 2.482647 0.749416 -0.116610 0.577492 -0.620579 0.686520 0.394887 -0.875084 -0.090636 -GGACT -0.020299 -1.361854 -0.319019 1.283213 0.093831 0.315756 0.133561 -0.315701 -1.173920 -0.595884 0.133176 -1.142498 -GAAAC 0.458769 -1.661795 -0.204199 1.009780 -0.868117 0.158440 0.352757 0.233895 -0.510803 -0.033778 0.376790 -0.315885 -TCATT -0.095257 -0.588870 -1.539737 0.741176 0.668419 0.449154 0.957065 -1.136710 0.237402 0.430944 -0.186788 0.938020 -ATGCA 0.485721 -1.427211 0.006599 1.064005 0.092965 -0.695539 0.513292 -1.240511 0.720647 -0.699609 0.071614 0.097036 -GGAGT -1.470075 -0.887433 -0.056550 1.135465 -0.413863 -0.162798 0.876224 -0.341660 -0.952539 -0.602663 -0.090056 -0.097685 -TCTCA 0.069378 -0.387859 -1.072776 0.009907 0.181042 -0.036102 1.043270 -1.553965 -0.684701 0.527024 0.688253 0.162567 -TGATT -0.084076 0.028767 -0.970240 1.563692 0.139681 0.679409 0.958265 -0.682765 -0.095895 -0.781135 -0.734963 0.586900 -AAAGT -0.533384 -1.175943 0.120194 0.803176 -0.737363 -0.356041 1.683821 0.101250 -0.190519 0.998077 0.449610 -0.055522 -TTGAG -0.588777 0.099071 -0.944752 0.953124 -0.880655 0.350599 0.942765 -0.324473 -0.878123 -0.960053 -0.641404 -0.145949 -TAATG -0.195867 -0.709159 0.142515 1.914239 0.310877 -0.164864 1.252819 -0.185372 0.549970 -0.209996 -0.242956 -0.216341 -CTGTG -0.903726 -0.459551 0.131812 0.888058 -0.224488 0.952297 0.798631 -1.081822 0.447508 -0.810877 1.022709 -0.570772 -AGACA 0.093857 -1.411412 -0.241215 1.471189 -0.781026 -0.354517 -0.630611 -0.697302 -1.062131 0.462356 -0.243795 0.164643 -TGAGA -0.037674 -0.046225 -0.050440 1.560796 -0.778475 0.150276 0.441179 -0.555119 -1.128067 -0.810788 -0.301432 -0.120689 -TGGGA -0.713204 -1.274993 -0.224521 1.141810 0.204582 -0.177845 0.314348 0.187098 -0.666198 -1.228821 -0.347182 -0.534976 -CTGCA 0.235109 -0.953498 -0.151653 0.335673 -0.041509 -0.123495 0.192595 -1.782373 0.162936 -0.487448 0.735029 -0.570719 -AATGC 0.764857 -1.194365 -0.195365 0.996553 0.084992 -0.728346 0.962507 -0.964526 0.646578 -0.788293 0.414392 -0.370949 -TTTGG -1.065600 -1.129054 -1.221910 0.333694 0.224622 0.850959 0.912053 -0.118320 -0.010624 -0.821231 -0.896572 -0.105862 -TCGAA 0.412415 -0.710810 -0.713709 1.263370 0.050419 -0.653503 0.683695 -0.278863 -0.896693 -0.524452 0.436740 -0.157690 -CACAG -0.348173 -1.536667 -0.600126 0.446655 -0.811357 -0.237863 -0.641685 -1.245073 -0.529145 0.595135 0.396203 0.449378 -TTATA -0.292682 -0.341096 -0.983533 2.041316 0.300792 0.152280 0.593846 -0.122860 0.361239 0.795802 -1.178368 -0.152726 -GTTTC -1.138438 -0.092348 -1.099219 0.581457 0.050403 1.011521 1.501094 -0.504377 -0.433528 0.251552 0.423668 0.520263 -CTGGA -0.190286 -1.059609 -0.382886 0.988086 0.444311 0.146349 0.434436 -0.248408 -0.807244 -0.762853 0.176997 -1.136405 -TTACA -0.332134 -1.345086 -1.055555 1.127176 0.333500 0.769461 -0.172515 -0.522497 0.384026 0.942373 -0.841434 0.387541 -CTTCA 0.298011 -0.683123 -1.404984 0.074994 0.099995 0.528134 0.434712 -1.316513 -0.457492 0.665848 0.244973 0.074597 -CACAT 0.173305 -1.206852 -0.657337 0.986038 0.178260 0.228713 -0.543835 -1.355662 0.724891 0.176615 0.058428 0.799864 -GAATC 0.557522 -0.539538 -0.557407 1.349170 0.142330 -0.855241 0.945379 -0.481296 -0.733288 -0.415354 0.259163 0.201763 -ATAAT 0.765172 -0.447650 -0.435677 2.460014 0.344878 -0.514861 0.895789 -0.458388 0.146559 0.496710 -0.619569 0.114256 -CTGAG -0.228909 0.061904 -0.320319 0.974024 -0.639778 0.108989 0.248237 -0.734428 -1.152190 -0.937795 0.545458 -0.911794 -AAGAT 0.284474 -0.430737 -0.308026 1.534877 -0.244070 -0.869561 0.780209 -0.519007 -0.666417 0.120831 -0.789580 0.152373 -CTCAA 0.775072 -0.996131 -0.700686 0.127134 -0.101218 -0.113116 1.092716 -1.043358 -0.744216 0.398346 0.897347 -0.301034 -AATTC 0.721292 -0.448803 -1.217509 0.919688 0.053936 -0.167850 1.374818 -0.445466 -0.290031 0.555130 0.196291 0.514145 -TGCAG -0.857839 -0.681823 -0.132822 0.429110 -0.625262 -0.205562 -0.065854 -1.592949 0.054792 -0.700963 0.198659 -0.070467 -TTGCA 0.095636 -0.916984 -0.838610 0.378558 -0.201903 0.356312 0.615905 -1.290069 0.783175 -0.691629 -0.461047 0.191887 -ATGTG -0.696488 -0.635409 0.418214 1.401909 0.145884 0.187990 1.024840 -0.728691 0.774509 -0.623770 0.249114 0.530622 -TCCAC 0.069420 -0.735158 -1.539434 0.626392 -0.220315 0.817939 -0.142695 -0.731829 0.292583 0.464994 1.330864 0.152861 -GAAGA 0.023656 -0.906802 -0.043449 1.448791 -0.924323 -0.811787 0.782637 -0.273131 -1.321268 -0.191074 -0.284533 -0.024675 -AACAT 0.785497 -1.533664 -0.396929 1.208746 -0.044107 -0.115042 0.276873 -0.589613 0.543083 0.399613 -0.222964 0.531265 -CTATT 0.028726 0.205099 -1.537920 1.594320 0.674479 0.760608 0.568730 -0.762535 0.152212 0.571453 -0.186956 -0.428005 -CTCTG -0.312027 0.027876 -0.560615 0.593926 0.100078 0.859465 0.647719 -1.252563 -0.386930 -0.667965 1.064290 -0.801989 -ATCTT 0.514615 0.187226 -1.206085 1.084081 0.215501 0.347658 0.875264 -1.068414 0.038078 0.329498 -0.359714 -0.075720 -AAGAG -0.122394 -1.017641 -0.165011 1.047385 -1.077528 -1.001525 0.810542 -0.361917 -1.365316 0.198924 0.038905 -0.147819 -AGATA -0.007240 -0.478926 -0.357405 2.128428 -0.146157 -0.966571 -0.049502 -0.507823 -0.778414 0.531616 -0.755737 0.066186 -TCTTC 0.074182 -0.001792 -1.748986 0.279344 0.191743 0.352240 1.357774 -1.210008 -0.080105 0.755427 0.568400 -0.220309 -GTAC -1.048434 -1.014694 0.097925 1.292217 0.023975 0.831432 -0.227499 -0.068564 0.348666 0.740496 0.236080 -0.125763 -CCAAA 0.842890 -1.289854 -0.994883 0.819495 -0.432902 -0.600272 0.565784 0.187929 0.248599 0.589536 1.462876 0.168162 -ATTAA 0.462453 -1.063785 -0.588194 1.582946 0.515583 -0.033168 1.078511 -0.023250 -0.001061 0.893977 -0.619239 0.078944 -GATTT -0.263216 -0.302911 -0.922737 1.130490 0.003203 0.254745 0.922782 -0.421772 -0.729016 -0.358027 -1.279564 0.244268 -TAATA 0.164160 -0.304984 -0.501941 2.298813 0.365001 -0.614547 0.829775 -0.142645 0.317812 0.968663 -0.363425 -0.192146 -TCAAT 0.686893 -0.756511 -0.990065 0.937929 0.666847 -0.157991 1.298519 -0.933851 0.042543 0.392445 0.231667 0.692941 -CTCAG -0.299519 -0.161187 -1.360818 0.113757 -0.284248 -0.239429 0.146101 -1.273965 -1.391124 0.071967 0.918090 -0.038538 -CTTTA -0.263544 -0.158155 -1.402183 1.168698 -0.071651 1.018556 0.483061 -0.074421 0.122325 0.869810 -0.180671 -0.846332 -TCCTG -0.662870 -0.080720 -0.970282 0.632898 0.195650 0.639790 0.888273 -0.528024 0.058907 -0.741974 1.558330 -0.545035 -AACAG -0.187989 -1.685076 -0.008406 1.159696 -0.823211 -0.515535 -0.131365 -0.371504 -0.578249 0.774402 -0.054789 0.091060 -TCCCA -0.017235 -0.218591 -1.356744 0.874862 -0.270837 -0.236673 0.190262 -0.220662 0.226341 0.249155 1.273337 0.965717 -CTCCT -0.129233 0.218916 -1.543113 0.780043 0.107313 0.728339 0.426080 -0.664725 -0.140304 -0.379835 1.271895 -0.967544 -TGCAT -0.114883 -0.580916 -0.712527 0.990930 0.282906 0.292884 0.256058 -1.550486 0.996659 -0.935636 -0.187094 0.461879 -CATCT 0.544472 0.012244 -1.148882 0.865533 0.197384 0.304692 0.472067 -1.859375 0.302692 0.246534 0.682107 0.350612 -CGAAT 0.400858 -0.818046 -0.567614 1.485425 0.089367 -0.722254 0.694200 -0.332530 -0.654239 -0.703226 0.431098 -0.114480 -ATTAT 0.131546 -0.533521 -0.686966 2.077908 1.142707 0.171792 0.722082 -0.693956 0.328827 0.480375 -1.043534 0.371570 -TTGTA -0.832615 -0.174488 -0.417763 1.611693 0.089143 0.499235 1.187992 0.096859 0.620997 0.217447 -0.374262 0.104276 -TATGT -0.863087 -0.110003 0.016169 2.005198 0.397503 0.366202 0.911490 -0.461962 1.008437 0.160434 -0.332131 0.278960 -TACAT -0.172514 -1.070629 -0.855200 1.498211 0.675840 0.462816 -0.105229 -0.764845 0.898425 0.620050 -0.588346 0.452497 -CTGTT -0.835629 -0.157180 -0.556653 0.736071 0.241891 1.252856 1.240515 -0.859871 0.442495 0.017281 0.545346 -0.144044 -ATCAA 1.127409 -1.156766 -0.750683 1.001370 0.179423 -0.698920 0.944307 -0.772995 -0.274582 0.277100 0.125973 0.498574 -CTCTT -0.030147 0.143971 -1.505457 0.457118 -0.221173 1.089561 1.049109 -1.082022 -0.225759 0.261020 0.443627 -0.805347 -GTAAT -0.385143 -0.554168 0.200995 1.880889 0.117856 -0.145340 1.291279 -0.078653 0.438267 0.184136 0.067694 0.088544 -AATCT 0.833643 0.122820 -0.366941 1.179505 0.019709 -0.313969 1.305217 -1.040201 -0.271143 0.423047 0.511599 -0.379398 -CACTG -0.094607 -1.334821 -0.181400 0.595567 -0.196129 0.898823 -0.203124 -1.374846 0.465656 -0.358308 0.810745 -0.547641 -CAATT 0.695409 -1.047048 -1.161194 0.936201 0.157748 0.241588 0.969754 -0.457923 0.109796 0.430410 -0.001709 0.913248 -CCACT 0.185943 -0.819799 -1.456253 0.672813 -0.088521 0.947996 -0.258267 -0.650946 0.266442 -0.023427 0.980129 -0.300007 -TATAA 0.330332 -0.451945 -0.487960 2.315979 0.151519 -0.359470 0.891479 -0.135798 0.575207 0.855119 -0.663356 -0.401496 -AAGTG -0.823947 -1.001260 0.620183 1.075782 -0.946547 -0.303996 1.345228 -0.199433 0.001186 0.120304 0.427201 -0.249012 -AAATC 1.209163 -0.511634 -0.743256 1.123754 -0.183435 -0.740957 1.408979 -0.525310 -0.279625 0.489417 0.713605 0.213773 -TTGAT -0.196830 0.204122 -1.031837 1.712691 0.184474 0.496914 1.341022 -0.668818 0.113596 -0.849053 -0.771278 0.398478 -TTAAT 0.062836 -0.292322 -0.624808 1.673266 0.077115 0.293478 1.569905 -0.214135 0.470134 0.420369 -0.717031 0.054534 -TTCG -0.261991 -0.039107 -1.610487 0.740882 -0.048272 0.183553 0.579124 -0.494880 -0.486413 -0.226475 0.048199 0.308688 -AACTT 0.711932 -1.171879 -1.037771 0.637769 -0.583423 0.850641 0.806797 -0.056897 -0.110219 0.618779 -0.307743 -0.950124 -CAGCA -0.187221 -1.314051 -0.691878 0.294692 -0.885702 -0.703813 -0.453473 -1.660249 -0.025324 0.257773 0.344910 0.048119 -TGGTG -1.486247 -0.958548 0.125404 1.074824 0.022341 0.563495 0.788959 -0.379784 0.063917 -1.103265 -0.166634 0.034232 -TCAGA -0.061485 -0.147811 -0.788991 0.646180 -0.224442 -0.751184 0.429391 -1.199651 -1.371865 0.371999 0.306645 0.543552 -TCTAT -0.183047 0.402214 -1.344674 1.529749 0.822947 0.267097 0.959524 -1.021770 0.189920 0.573258 0.171319 -0.290402 -GAGAG -0.681157 -0.810393 -0.180309 1.443415 -1.116898 -0.750601 0.300872 -0.731901 -1.729689 -0.701317 -0.430664 -0.181239 -TTGGA -0.510397 -1.023430 -0.721291 0.780940 0.168135 0.195746 0.967499 -0.022339 -0.466190 -0.811160 -0.845198 -0.008795 -ATATC 0.640291 0.132572 -0.841082 1.690952 0.551113 -0.534768 0.313818 -0.871627 -0.099601 0.412877 -0.069850 0.057033 -GCATT -0.320276 -0.753905 -1.015336 0.454236 0.286696 0.144427 0.376731 -1.226476 0.649607 -0.572638 -0.490518 0.421513 -TTCAC 0.190869 -0.948439 -1.386603 0.293956 -0.166199 0.884693 0.082529 -1.225838 0.114943 0.722694 0.159388 0.329336 -CAATG 0.466513 -1.353911 -0.068910 1.070559 0.060662 -0.416130 0.576240 -0.675348 0.523132 -0.651181 0.442532 0.468592 -TGCTT -0.398594 -0.164598 -1.108935 0.574991 -0.058427 0.845654 0.813652 -0.796275 0.477839 -0.707764 -0.110481 -1.100978 -AGATT -0.095050 -0.229007 -1.019596 1.190181 -0.015856 -0.237243 0.630249 -0.537013 -0.913224 0.157721 -1.175706 0.368506 -CTGGG -1.131017 -0.948070 -0.693078 0.440209 0.645859 0.310828 0.061984 -0.542265 -0.524911 -1.133117 0.669629 -0.806858 -CAGTG -1.364831 -0.944521 0.126043 0.447265 -1.118873 -0.108832 0.320715 -1.102192 0.008807 -0.244353 0.561393 0.480450 -ATGTA -0.354422 -0.810362 0.282132 2.210511 0.238462 -0.229774 0.896153 -0.114570 0.738213 0.211046 0.021467 0.177717 -ATACA 0.320631 -1.505557 -0.345183 1.757530 0.451357 -0.335618 -0.480285 -0.576168 0.092259 0.872377 -0.389696 0.348066 -ACTGG -0.495855 -1.594800 -0.185613 0.837686 0.333540 0.592847 0.066001 -0.116382 -0.431501 -0.692492 0.188714 -0.984136 -GACTC 0.419891 -1.004505 -0.727904 0.859096 -0.021650 0.200146 0.176166 -0.622073 -1.236652 -0.505115 0.557401 -0.656038 -ATGGT -1.159047 -0.673882 -0.069760 1.081394 0.767977 -0.263339 0.841100 -0.396729 0.154701 -0.495806 -0.234229 0.378438 -CATCA 0.537628 -0.951911 -0.939574 0.624119 0.057413 -0.481394 0.045651 -1.646529 0.003868 0.111081 0.322357 1.072156 -TATTA -0.288930 -0.321904 -0.950778 1.998231 0.405180 0.138567 0.592234 -0.281392 0.555345 0.888889 -1.158136 -0.232904 -ACATA 0.190094 -1.196272 -0.396670 1.691372 0.314599 -0.265208 -0.651022 -0.680145 0.231929 0.776359 -0.543943 0.247436 -GTGTT -1.453635 -0.605372 -0.147330 0.911004 -0.176124 0.914653 1.588904 -0.433391 0.452938 0.077131 0.274834 0.186754 -GATTC 0.002630 0.077049 -1.370018 1.021872 0.238322 0.068140 0.925634 -0.816723 -0.591542 -0.180586 -0.272353 0.579415 -AGAGT -0.975396 -0.268999 -0.165581 1.120901 -1.108333 -0.255543 0.700889 -0.472752 -1.259131 0.469459 -0.033427 0.245901 -GGAGA -0.646798 -1.171236 -0.321248 1.231295 -0.437863 -0.539503 0.193768 -0.176361 -1.478546 -0.824241 -0.571997 -0.266548 -TCCTC -0.040365 0.187446 -1.845760 0.638653 0.157823 0.239806 0.775969 -0.952407 -0.136283 0.208957 1.699502 0.014874 -CACAA 0.838920 -1.899632 -0.558378 0.706847 -0.282921 -0.138062 -0.075120 -0.864041 0.079145 0.567004 0.580695 0.319792 -AGAGG -1.004022 -1.157707 -0.521893 0.889753 -0.743424 -0.981202 0.125639 -0.382545 -1.615595 -0.360407 -0.091799 -0.082579 -TACAA 0.495853 -1.424046 -0.468025 1.428845 0.204044 -0.260550 0.093661 -0.260568 0.414892 1.242831 -0.039174 -0.137818 -TATCT 0.082510 0.473969 -0.665097 1.438926 0.599979 0.087891 0.904058 -1.266498 0.274352 0.630394 -0.020031 -0.482475 -CAGTT -1.002454 -0.554393 -0.705473 0.385580 -1.081047 0.512610 0.658912 -0.595647 -0.229356 0.631334 -0.055400 0.690460 -CTCG -0.092332 -0.676866 -0.775167 0.908227 -0.145199 -0.006596 0.216468 -0.541561 -0.971261 -0.810869 0.666282 -0.565651 -ATCG 0.265832 -0.586611 -0.730375 1.268497 0.070113 -0.808930 0.568925 -0.520752 -0.597815 -0.670428 0.291753 0.096057 -TCCAG -0.820164 -0.220049 -1.280055 0.570250 -0.437038 -0.046652 0.290728 -0.420430 -0.631162 0.439935 0.873175 0.797120 -TGCCT -0.330336 0.076112 -1.028822 0.959278 0.149511 0.313389 0.327179 -0.617383 0.765618 -1.039728 1.207857 -0.790035 -CACCA 0.184584 -1.477030 -1.242453 0.824631 -0.222713 -0.134226 -0.792183 -0.738846 0.555596 0.209619 1.066878 0.575906 -AGTGT -1.357635 -0.626700 0.348602 1.040022 -0.700424 0.077018 1.131142 -0.375594 0.071460 0.125105 0.363551 0.356127 -TAAAG -0.268784 -0.677161 -0.236208 1.157411 -0.320722 -0.655952 1.112139 -0.025486 -0.491618 1.066192 -0.226999 -0.626086 -CAGGA -0.375803 -1.204856 -1.089808 0.228660 -0.541577 -0.723783 -0.041481 -0.386009 -1.049340 -0.146040 -0.078274 0.179630 -GTGTG -1.657490 -0.857012 0.458870 1.090776 -0.295014 0.331246 1.386274 -0.719839 0.593039 -0.658533 0.510010 0.050802 -TGTCT -0.836288 0.190844 -0.291174 0.815340 0.152481 0.802857 1.481641 -1.359482 0.133653 -0.208067 0.725861 -0.115090 -CACTC 0.446652 -0.909776 -1.338187 0.392591 -0.382737 0.806690 -0.188507 -1.414662 -0.115407 0.406180 1.128325 -0.176949 -GCAAA 0.497033 -1.551610 -0.009224 0.480329 -0.351623 -0.792403 0.969146 -0.895673 0.108271 -0.037838 0.384048 -0.529948 -ATGTT -0.437112 -0.375783 -0.191945 1.172962 0.291980 0.319017 1.507790 -0.467350 0.593768 -0.065112 -0.079562 0.541061 -CCCAG -0.783740 -0.781873 -1.221364 0.649547 -0.693869 -0.724881 -0.412458 -0.156670 -0.344209 -0.060382 1.524391 0.146261 -TTCAG -0.768544 -0.389870 -1.464724 -0.014130 -0.423067 -0.115467 0.601550 -0.918516 -1.081104 0.487391 -0.224971 0.595855 -CCACA 0.041177 -1.395840 -1.108472 0.718255 -0.380070 -0.147760 -0.731147 -0.695798 0.430562 0.417748 0.919231 0.623530 -ACATG 0.058317 -1.572747 0.211446 1.394593 0.209446 0.040197 -0.274797 -0.659009 0.739898 -0.408237 0.021567 0.616248 -CTGAA 0.578828 -0.440478 -0.158773 0.944228 -0.437224 -0.097138 1.190498 -0.102410 -0.494202 -0.644278 0.946209 -0.885705 -TCATC 0.377636 -0.107214 -1.428554 0.827972 0.598927 -0.155229 0.794855 -1.710242 0.009713 0.403692 0.547319 0.858364 -TGAAG -0.157820 -0.520816 0.154898 1.137943 -0.776930 -0.399467 1.280309 -0.145351 -0.687987 -0.511515 0.201502 -0.107145 -AGGGA -0.600289 -1.399606 -0.584697 0.828285 -0.159057 -0.856935 0.366401 0.169797 -1.115574 -0.415218 -0.293583 -0.400385 -ATCTG 0.141085 0.173954 -0.337471 0.991021 0.531318 -0.144582 0.647700 -1.335039 -0.075661 -0.439254 0.480247 -0.187251 -TCTGA 0.200607 0.392869 -0.447123 0.922861 0.028166 0.257496 1.150787 -0.851861 -0.821821 -0.562327 0.524603 -0.490402 -GTGAA -0.556210 -0.929099 0.502136 1.193275 -0.643005 -0.238960 1.453362 -0.039153 -0.265628 -0.546460 0.284566 -0.058153 -TGTCA -0.655134 -0.674770 -0.020283 0.609932 0.031137 0.360569 0.817447 -1.404685 0.111903 -0.085521 0.544578 1.038311 -CACTT 0.110432 -1.141750 -1.274593 0.194220 -0.606176 1.083551 -0.034300 -0.851158 0.224811 0.423543 -0.150942 -0.516920 -GAACA 0.317582 -1.955646 -0.044685 1.194566 -0.644557 -0.227748 0.051025 -0.262748 -0.569638 -0.042621 -0.218144 0.219014 -CCAGG -0.967308 -1.150254 -1.406335 0.467644 -0.152656 -0.782736 -0.460593 0.094547 -0.525167 -0.319791 1.015815 0.172970 -CTTCC -0.074971 -0.081514 -1.942517 0.515898 -0.050574 0.945920 0.442420 -0.386433 -0.068643 0.149277 1.132501 -0.413623 -TGAGG -0.956262 -0.434839 -0.395260 0.913990 -0.443114 -0.136740 0.296564 -0.446594 -0.923424 -1.417938 0.077072 -0.560186 -TCCAA 0.627791 -0.772467 -1.117653 0.633059 -0.184579 -0.075520 1.005941 -0.113402 0.135351 0.544377 1.291286 0.453387 -CTGCT -0.396765 -0.220683 -0.925685 0.565399 0.239069 0.726449 0.444156 -1.317995 0.216252 -0.758816 0.947768 -1.291484 -TGGAT -0.446592 -0.510368 -0.731702 1.277726 0.741814 -0.250870 0.525187 -0.405515 -0.178173 -1.114339 -0.673362 -0.007794 -ATCAT 0.661182 -0.335031 -1.147845 1.213422 0.692755 -0.559900 0.509583 -1.190585 0.125535 -0.305555 -0.140702 0.907162 -CCTCA 0.250435 -0.426366 -1.562664 0.265188 -0.054708 -0.211965 0.081661 -0.996907 -0.329092 0.198190 1.386081 0.111156 -CCTCC -0.155765 -0.240145 -2.134054 0.676799 -0.283623 0.074545 0.216172 -0.330309 0.174560 -0.219558 2.080822 -0.217126 -AAGTT -0.527354 -0.651258 -0.368995 0.637354 -0.833307 0.094304 1.804994 0.124726 -0.552662 0.819374 0.086518 -0.018969 -AACAC 0.545158 -2.002093 -0.399720 0.755748 -0.567961 0.206988 -0.093251 -0.403489 0.063259 0.661474 0.441104 -0.202233 -GTGAG -1.231960 -0.332128 0.171289 1.012340 -1.030687 -0.314772 0.622172 -0.724973 -0.820003 -0.935870 0.314208 -0.090020 -TGATG -0.559679 -0.152939 0.110520 1.616820 0.085435 0.275958 0.941295 -0.808127 0.137055 -1.282550 -0.172624 0.138389 -TTTAG -1.077262 -0.183496 -1.259526 0.954160 -0.354967 0.255017 0.653975 -0.108892 -0.387011 0.729805 -0.971115 -0.228245 -GCCTG -0.990975 -0.497656 -0.385637 0.807227 -0.161864 -0.353383 0.250886 -0.618770 -0.065752 -1.358573 1.505136 -1.011761 -CAGAT -0.044974 -0.488021 -0.488700 1.347124 -0.397645 -0.688683 -0.226819 -1.042333 -0.557510 -0.016003 -0.611502 0.613600 -GATAT -0.164380 0.006449 -0.325073 1.815866 0.453598 -0.504603 0.435024 -0.598059 -0.253954 -0.247599 -0.825173 0.022485 -GAAGG -0.747082 -1.542126 -0.480971 0.864797 -0.323734 -0.890756 0.801310 0.174524 -1.254315 -0.373638 -0.313779 -0.455908 -CATGT -0.473421 -0.813871 -0.015182 1.141974 0.005233 0.371989 0.469514 -0.922070 1.014312 -0.216418 0.428039 1.226219 -GGGAA -0.609263 -1.875929 -0.199466 0.829292 -0.188483 -0.725825 0.832477 0.436285 -0.584919 -0.679014 0.026147 -0.352325 -TCCCT -0.483159 0.170571 -1.842693 0.756428 -0.105966 0.443041 0.725632 -0.220684 0.273287 0.035225 1.356799 -0.368817 -TTGTG -0.857088 -0.299169 -0.300438 1.019781 -0.196998 0.806971 1.324313 -0.465028 0.529975 -0.734082 -0.121063 0.125134 -CATTA 0.043359 -0.762588 -1.314779 1.232631 -0.001967 0.084386 0.121982 -0.612741 0.573910 0.915306 -0.478522 0.690820 -AAGCA 0.270158 -1.229761 -0.234247 0.608360 -0.817964 -1.032399 0.361202 -0.951289 -0.229086 0.334271 0.189445 -0.264589 -TATTG -0.365531 -0.251327 -0.559665 1.642158 0.290453 0.292505 0.988355 -0.245618 0.540357 -0.373933 -0.964312 -0.076650 -TTATG -0.486955 -0.292585 -0.342772 1.547322 0.464505 0.478135 0.821706 -0.431237 0.727113 -0.303415 -0.824498 -0.108489 -CCTGT -1.079149 -0.016839 -0.648845 1.095014 0.031919 0.749717 0.677836 -0.380362 0.824139 -0.342979 1.727236 -0.175612 -TCACT -0.010528 -0.713812 -0.959837 0.254155 0.200091 0.965794 0.254483 -1.823144 -0.007202 0.748702 0.521228 -0.281293 -AGCAG -0.830952 -1.025402 -0.407072 0.588030 -0.984499 -1.014839 -0.322795 -1.099673 -0.987000 0.081594 0.239632 -0.056722 -GGAAG -0.711204 -1.365165 -0.246617 0.932438 -0.293775 -0.874149 0.795669 0.032581 -1.153259 -0.446791 0.038922 -0.558512 -CAACA 0.640805 -1.916601 -0.793969 0.584843 -0.457474 -0.098042 -0.112088 -0.703955 0.187337 0.465925 0.494173 0.633496 -GGTGG -1.797605 -1.521150 -0.154310 0.612712 0.166385 -0.045204 0.599302 -0.233734 -0.414252 -1.108823 -0.041624 -0.211670 -CATTG -0.158565 -0.826040 -1.022755 0.830394 -0.098909 0.436653 0.486456 -0.738876 0.745836 -0.906436 -0.358896 0.752568 -ACTCA 0.842007 -1.102173 -0.850914 0.489941 -0.288227 0.286735 0.023643 -1.093745 -0.779230 0.494193 0.516592 -0.392053 -GAGAT -0.183454 -0.071099 -0.576797 1.356245 -0.409268 -0.568086 0.338296 -0.794419 -1.018227 -0.744406 -0.724277 0.272564 -GCTTT -0.670858 -0.285680 -1.273519 0.306132 -0.113700 0.546025 0.844206 -0.543324 0.034084 -0.169730 -0.452558 -0.926259 -GGGAG -1.236659 -1.128954 -0.458663 0.835898 -0.338197 -0.588207 0.271505 -0.249142 -1.255526 -1.018204 -0.338065 -0.480790 -TCTGC -0.179785 -0.130446 -0.827255 0.356472 0.341479 0.320810 0.699426 -1.679251 0.233870 -0.499814 0.892407 -0.866433 -TGCTG -0.617005 -0.378330 -0.323496 0.796541 0.142545 0.538259 0.576237 -1.105086 0.174376 -1.350924 0.482053 -1.029017 -TGTAT -0.816006 -0.056447 -0.105878 1.993886 0.472876 0.606073 0.653143 -0.487005 0.865541 -0.033916 -0.221567 0.252854 -CATAT 0.001473 -0.336997 -0.816182 1.534744 0.569774 -0.410614 -0.214204 -1.005262 0.677803 0.177239 -0.472513 0.483052 -CCCTT -0.262555 -0.090458 -2.014735 0.749346 -0.310771 0.619228 0.423857 0.096832 0.657958 0.125560 0.903627 -0.424653 -AGGAG -0.768375 -0.997928 -0.621082 0.885579 -0.736692 -0.893582 0.230130 -0.255660 -1.631490 -0.427626 -0.209751 0.000663 -ACAAT 0.903153 -1.363893 -0.184748 1.368677 0.193232 -0.023577 0.119987 -0.730575 0.354911 0.356597 0.008924 0.429295 -ATTGT -0.488051 -0.375940 -0.360031 1.417893 0.526798 0.549310 1.213053 -0.295687 0.512137 -0.250339 -0.241666 0.667179 -CTCCC -0.035895 -0.126948 -1.954792 0.693818 -0.307083 0.446860 -0.001102 -0.640000 0.066252 -0.235918 1.736822 -0.298432 -GCAAT 0.423080 -1.154795 -0.238281 0.899239 0.173742 -0.704556 0.763114 -0.983692 0.591530 -0.384271 0.140060 -0.186790 -ACTCT 0.422202 -0.345986 -0.756082 0.588903 -0.380305 1.042024 0.398156 -1.055069 -0.358397 0.547984 0.605763 -0.920338 -AACTG 0.392158 -1.419672 0.291486 0.879147 -0.227502 0.507500 0.595149 -0.469431 0.201930 -0.131647 0.551511 -1.290130 -TGGCA -0.492053 -1.518237 -0.334303 0.537301 0.132512 -0.438031 -0.030663 -0.917297 0.322783 -1.230824 0.015320 0.051677 -GGATT -0.631819 -0.753419 -0.946516 1.164607 0.548176 -0.080135 0.783821 -0.088446 -0.435961 -0.683840 -1.068516 -0.041460 -AACG -0.038935 -1.593294 -0.194817 0.842335 -0.553313 -0.312586 0.159785 -0.036224 -0.322005 -0.185953 0.354355 -0.257989 -TTTGC -0.153288 -0.675534 -1.257455 0.383777 -0.035144 0.739960 0.750379 -0.676043 0.754774 -0.771484 -0.425694 -0.393402 -ACTCC 0.316634 -0.613332 -1.532112 0.815432 -0.443029 0.868611 -0.291369 -0.708131 -0.025711 0.239909 1.288903 -0.343615 -TGTGG -1.539766 -1.019179 0.115298 0.804999 0.122294 0.397200 0.759147 -0.431686 0.138017 -1.081210 0.145793 -0.067643 -CCTGA 0.283083 -0.135901 -0.579129 1.384123 -0.458727 0.002735 0.038568 0.030649 -0.458321 -1.043368 1.187179 -0.600425 -AAGGG -0.862682 -1.832628 -0.425652 0.527330 -0.329683 -0.868889 0.775791 0.115711 -0.827142 -0.286953 -0.133036 -0.457790 -TGAGC -0.517607 -0.079337 -0.311363 0.782664 -0.829898 -0.120985 0.161527 -0.968960 -0.548953 -1.046653 0.555002 -0.464021 -AGTAA -0.665178 -0.715899 0.033902 1.613030 -0.480745 -0.396256 0.957530 0.111982 -0.311117 1.192455 -0.128437 0.051433 -CACG -0.347301 -1.214000 -0.600078 0.432835 -0.553922 0.129583 -0.574201 -0.903746 -0.107587 -0.276450 0.556728 0.127326 -AGTGA -0.742525 -0.659339 0.451950 1.465472 -1.210938 -0.152797 0.758470 -0.321331 -0.762310 -0.395022 0.134680 0.272840 -TTGCT -0.375027 0.003870 -1.147793 0.640117 0.175259 0.655398 1.068373 -0.941184 0.301691 -0.657383 -0.346684 -1.104603 -AAAGC 0.187736 -1.189493 -0.550271 0.438501 -0.577227 -1.050775 0.763230 -0.296275 -0.287950 0.589234 0.603485 -0.895029 -GAGTT -1.039205 -0.351389 -0.438886 0.761446 -0.742613 0.204229 1.062351 -0.145199 -0.886917 0.101483 -0.364821 0.148574 -GAGGC -0.938811 -0.796875 -0.747981 0.637172 -0.669577 -0.650229 -0.100186 -0.654043 -0.906433 -1.321706 0.205282 -0.717079 -CTAAA 0.809155 -0.508981 -0.382376 1.461741 -0.147914 -0.041805 0.795083 -0.185760 -0.122707 1.087956 0.520797 -1.143177 -ACTTC 0.354617 -0.826216 -1.335707 0.248606 -0.422236 0.888964 0.337248 -0.648505 -0.173595 0.682538 0.258522 -0.479032 -CCCCA 0.246449 -0.846711 -1.381328 1.101476 -0.737914 -0.285172 -0.295657 -0.175114 0.323622 0.010208 1.830877 0.264265 -AGCCT -0.452268 -0.072926 -1.278744 0.664870 -0.291818 -0.599538 -0.155267 -0.290209 -0.645931 -0.383519 1.193381 -0.817803 -CCACC 0.021151 -1.047060 -1.574750 1.032549 -0.356306 0.010134 -0.767022 -0.420916 0.444879 0.063928 1.916693 0.011540 -ACTGC 0.321283 -1.183609 -0.269192 0.642569 -0.300738 0.518280 -0.142468 -1.232139 0.532453 -0.519492 0.716655 -0.995656 -CCTGG -1.021472 -0.665763 -0.883852 0.589204 0.432212 0.159945 -0.058018 -0.057059 -0.083541 -1.020949 1.256593 -0.641055 -GGCTG -1.364688 -0.725720 -0.491062 0.524341 0.269128 0.010906 0.366569 -0.847849 -0.480332 -1.315866 0.278851 -1.101187 -TCTCC -0.114304 0.040905 -1.742583 0.443744 -0.065593 0.437406 0.781197 -0.917468 -0.020669 0.271061 1.483808 -0.002947 -TGACA 0.038507 -1.144303 0.182181 1.255875 -0.291979 0.564234 -0.291672 -0.813421 -0.196863 -0.503617 -0.024039 0.412245 -CCTTC -0.300308 0.046028 -2.078812 0.393701 0.013386 0.626217 0.701456 -0.548548 0.114280 0.241922 1.305479 -0.388763 -CAAAC 1.035283 -1.742560 -0.533630 0.848076 -0.614856 -0.051710 0.281481 -0.488528 0.095075 0.759738 0.852001 0.033602 -TATCA 0.072649 -0.184428 -0.935756 1.244581 0.457495 -0.620097 0.322682 -1.154243 -0.075978 0.863361 -0.353577 0.633101 -ATATG -0.192806 -0.472539 0.059937 2.115204 0.669979 -0.395947 0.342045 -0.475949 0.443522 -0.542268 -0.629475 -0.024939 -CTCAC 0.257071 -0.783601 -1.189068 0.204174 -0.157226 0.527715 -0.419595 -1.545697 -0.441157 0.157360 0.758859 -0.171483 -ACCAT 0.318809 -0.740375 -0.788029 1.519254 0.068107 0.171141 -0.442967 -0.317114 0.659257 0.135183 0.531113 0.810533 -GTGGG -1.881860 -1.359694 -0.008438 0.677506 -0.034995 -0.192022 0.750734 -0.168222 -0.455089 -0.823061 0.105925 -0.266037 -GTTCT -0.966596 0.108025 -0.784910 0.460939 0.042168 0.748214 1.561354 -0.908771 -0.377880 0.331352 0.514172 -0.250991 -AAACC 0.791267 -1.378205 -0.583680 1.317475 -0.674045 -0.558242 0.230269 0.519257 0.260067 0.319350 1.229977 -0.206380 -ATCCA 0.556789 -0.401283 -1.199828 1.285094 0.067088 -0.416184 0.092248 -0.394353 0.072919 0.068232 0.699892 0.929440 -TGTTG -0.855917 -0.423318 -0.173156 1.166918 -0.150600 0.948694 1.615487 -0.244925 0.484562 -0.997788 -0.085278 0.201901 -GAGGA -0.512066 -1.056166 -0.399171 1.105314 -0.478426 -0.893402 0.301863 -0.193629 -1.299121 -0.779783 -0.367562 -0.519487 -CTGCC -0.366944 -0.281863 -1.094149 0.652906 0.038677 0.228962 0.207994 -0.977314 0.446002 -0.921273 1.521215 -0.833628 -ATGCT 0.119924 -0.150349 -0.419604 0.936510 0.428049 -0.205290 0.568374 -1.042999 0.406246 -0.871172 -0.081613 -0.840566 -GTAAA -0.432669 -0.883789 0.335147 1.594679 -0.157688 -0.147513 1.249757 0.231403 0.290675 0.822020 0.129598 -0.145197 -AGATG -0.284027 -0.578959 0.129028 1.447884 -0.289355 -0.771361 0.357543 -0.640194 -0.569081 -0.729565 -0.347079 0.422917 -GGAGG -1.383200 -1.381891 -0.628971 0.667001 -0.179991 -0.551747 0.220203 -0.338769 -1.212006 -1.203036 -0.060879 -0.479051 -ATCTC 0.697286 0.009709 -1.268092 0.705490 0.154684 0.084522 0.681457 -1.410540 -0.170692 0.200699 0.747586 0.304032 -TGAAC 0.523105 -0.983705 -0.076356 1.180833 -0.839274 0.676219 0.495522 0.056001 -0.043166 -0.576626 0.261829 -0.201622 -CAGGC -0.834924 -1.267971 -1.070655 0.155925 -0.532470 -0.681534 -0.566423 -1.012042 -0.307799 -0.554036 0.755874 -0.271412 -TCAGG -0.738166 -0.797144 -1.187020 -0.123585 0.227223 -0.471341 0.297844 -0.868171 -1.200119 0.203857 0.363438 0.107755 -TTACT -0.321726 -0.590382 -0.968968 1.384226 0.213841 1.281198 0.166139 -0.417476 0.488665 0.877506 -0.485343 -0.751649 -AACTA 0.661861 -0.930582 -0.300865 1.555640 -0.211798 -0.034901 0.292292 -0.154134 -0.076606 0.908371 0.049226 -1.259638 -AGGCC -0.743697 -0.797297 -1.083084 0.294480 -0.475575 -0.748102 -0.174330 -0.228000 -0.613530 -0.828799 0.828889 -0.358519 -AAGTA -0.676040 -0.907018 0.034131 1.519491 -0.568353 -0.508253 0.908795 0.310049 -0.167802 1.176340 0.022125 -0.040240 -TCTAA 0.495364 0.069323 -0.744578 1.164859 0.180303 -0.064298 1.215756 -0.696567 -0.112200 1.057423 0.371999 -0.845976 -CTCAT 0.392984 -0.061759 -1.372761 0.694820 0.550734 0.283620 0.387765 -1.463106 0.170701 -0.073552 0.418879 0.352510 -ACACT 0.357931 -1.463284 -0.382979 0.802026 -0.306136 0.944490 -0.426376 -1.013699 0.261708 0.534221 0.397977 -0.567278 -GCAGT -1.422761 -0.738863 0.169974 0.444263 -0.781776 -0.122687 0.435122 -0.997597 -0.118946 -0.061930 0.216061 0.047700 -TTCCC -0.336713 -0.027518 -1.907007 0.711676 -0.348678 0.542468 0.636621 -0.138756 0.523119 0.195841 0.927624 0.312647 -TCTGG -0.733607 -0.241881 -0.808750 0.224431 0.836572 0.369948 0.878930 -0.752242 -0.634627 -0.669562 0.563716 -0.695955 -CGAG -0.591739 -0.206045 -0.958735 0.790950 -0.619410 -0.199966 0.216587 -0.499697 -0.920658 -0.350381 0.591127 0.223228 -AGCAA 0.476585 -1.430277 -0.330766 0.586078 -0.515625 -0.981104 0.345372 -0.754981 -0.576681 0.186422 0.310310 -0.330869 -AACTC 1.053706 -0.841442 -0.741849 0.625466 -0.400109 0.393003 0.515492 -0.673108 -0.265099 0.460676 0.830102 -0.587542 -TGTTC -0.809818 -0.048163 -0.659656 0.564694 0.063578 0.785043 1.403610 -0.954811 0.337952 -0.067788 0.476732 0.510828 -ACTGT -0.483134 -0.904065 0.374548 1.116035 -0.274601 1.174320 0.380879 -0.561754 0.415545 0.017838 0.610672 -0.377465 -CATAA 0.682685 -0.936776 -0.438980 1.387299 -0.072189 -0.420981 0.245407 -0.720917 0.590729 0.784770 -0.101221 0.257484 -TGTAG -1.443931 -0.153696 0.092161 1.513698 -0.230616 0.084040 0.512976 -0.160609 0.024614 -0.048177 -0.254339 -0.137283 -TGCCA -0.020712 -0.624259 -0.644743 0.723408 -0.096572 -0.147530 0.083191 -0.690368 0.699050 -0.862321 0.779491 0.221830 -GACAG -0.501337 -1.342903 -0.161859 1.008883 -0.819355 -0.378196 -0.413743 -0.633025 -1.143112 -0.037782 -0.082136 -0.093706 -AGGCA -0.471688 -1.427964 -0.628908 0.470344 -0.343368 -1.054302 -0.319219 -0.791997 -0.455318 -0.635778 0.077079 -0.051605 -CTAGA -0.022230 0.084027 -0.686641 1.482612 -0.517201 -0.341566 -0.202796 -0.309494 -0.957514 0.503170 0.002180 -0.729084 -CCTGC -0.562335 -0.403857 -1.313960 0.647052 -0.018792 0.342227 0.030300 -0.877162 0.507581 -1.057207 1.354322 -0.992810 -GGAAC -0.058534 -1.928167 -0.220516 0.943463 -0.343695 -0.176780 0.003988 0.103629 -0.443060 -0.338051 0.232017 -0.445086 -TAACA 0.104928 -1.406340 -0.019160 1.650714 -0.254474 0.033965 0.319422 -0.469291 0.337051 1.091482 -0.413681 0.310307 -GCTGG -1.215987 -0.879760 -0.444995 0.474788 0.489703 -0.086562 0.370734 -0.727743 -0.279926 -1.160508 0.217478 -1.071828 -TACTT -0.302900 -0.619471 -1.038790 1.228098 0.180041 1.178425 0.228498 -0.170313 0.423456 0.764688 -0.515241 -0.839245 -GACAT -0.063158 -1.158880 -0.331821 1.132137 0.034700 0.159641 -0.310566 -0.696762 -0.097360 -0.324807 -0.605471 0.600693 -GAAGT -0.821083 -0.668715 0.095627 0.980845 -0.819591 -0.409422 1.286049 0.001923 -0.765868 0.134163 0.052132 0.111912 -GATTG -0.443296 -0.485753 -0.600378 1.211242 0.032439 0.155454 0.883308 -0.421882 -0.310719 -1.155643 -0.819664 -0.040012 -GACTG -0.353164 -1.331085 0.104046 1.184157 0.031326 0.437968 0.170918 -0.496593 -0.476108 -0.832960 0.243149 -1.080190 -GTTTA -1.071237 -0.527702 -0.416102 1.208432 0.011646 0.569881 1.011807 -0.023447 0.003974 0.631271 -0.709496 0.050783 -AATCC 0.760618 -0.167629 -1.053388 1.326700 -0.078353 -0.565976 0.684455 -0.204669 0.122353 0.188640 1.087666 0.545535 -CTTGA 0.164737 -0.223220 -0.643712 0.948657 -0.546037 0.778854 0.658562 -0.302875 -0.754258 -0.785954 -0.081143 -0.613090 -GTTGA -0.440432 -0.253372 -0.095567 1.271533 -0.568670 0.497904 1.462830 -0.165886 -0.575910 -0.792243 -0.138989 0.177627 -ATTAC -0.023543 -0.997469 -0.906053 1.450888 0.789675 0.554498 -0.214483 -0.362536 0.369107 0.696036 -0.314051 0.257299 -TCATG -0.201010 -0.429277 -0.444497 0.785668 0.679449 -0.103526 0.684698 -1.237917 0.290891 -0.586836 0.191284 0.941791 -ACTGA 0.570442 -0.758553 0.091132 1.368878 -0.531718 0.554060 -0.018930 -0.575727 -0.442603 -0.470888 0.219734 -0.796711 -ACCTG -0.034076 -0.811163 -0.131277 1.094306 0.066205 0.326448 -0.145339 -0.160089 0.289338 -0.598715 1.236598 -0.746933 -GGTTT -1.432764 -0.861182 -0.862503 0.336248 0.280159 0.764453 1.148174 -0.208025 -0.357614 -0.009271 -0.537705 0.136068 -TAGTT -1.162088 0.102561 -0.674104 1.279525 -0.357872 0.304772 1.226066 -0.158314 -0.177328 0.777979 -0.571908 0.159599 -GCACA -0.198514 -1.784392 -0.236081 0.520575 -0.323182 -0.331263 -0.597030 -1.400865 0.201974 0.013615 0.452471 -0.063734 -TGTGC -0.970553 -0.582558 -0.115994 0.745967 -0.239783 0.663977 0.716873 -1.018935 0.869620 -1.084200 0.589643 -0.179229 -CAGCC -0.430205 -0.523047 -1.405582 0.443111 -0.619605 -0.789188 -0.321248 -0.960295 -0.156967 -0.248433 1.514123 -0.114202 -AGCTG -0.782279 -0.202830 -0.276462 0.804868 -0.243527 -0.252577 0.247736 -0.769701 -0.786243 -0.700792 0.355590 -1.035388 -GAGAC -0.193371 -0.963714 -0.385884 1.207993 -0.837524 0.112095 -0.644682 -0.348655 -1.122956 -0.556551 -0.166312 -0.230404 -CAAGT -0.430636 -0.939980 -0.106364 0.392547 -0.773662 -0.304647 0.921751 -0.449754 -0.262470 0.601056 0.931758 0.402138 -GATGG -0.891871 -0.963859 -0.083792 1.361213 0.315408 -0.546633 0.490527 -0.451035 -0.546931 -1.175353 -0.456766 0.114800 -ACGG -0.443767 -1.572051 -0.321411 0.825144 -0.371176 -0.214078 -0.201555 -0.083534 -0.355174 -0.561695 0.133633 -0.102536 -AACCT 0.445336 -0.771725 -0.597756 1.039688 -0.346976 0.243790 0.266226 0.377201 0.307191 0.180947 0.996240 -0.875333 -TGGCT -0.805849 -0.393295 -1.001068 0.357613 0.299201 0.533621 0.341183 -0.855756 -0.048046 -1.019951 0.042054 -0.904083 -ATACT 0.464425 -0.622728 -0.616788 1.644794 0.388753 0.464992 -0.253460 -0.395181 0.220137 0.589856 -0.276103 -0.773480 -TGTTA -0.885464 -0.537118 -0.020660 1.459402 -0.054311 0.885306 1.093520 -0.186071 0.700768 0.412658 -0.220993 0.046103 -ATTGG -0.488492 -0.856672 -0.771763 1.038255 0.680711 0.152298 0.750338 -0.144923 -0.318649 -0.843086 -0.700429 0.030773 -AGTCA -0.620158 -0.725113 -0.222881 0.527031 -0.233918 -0.471778 0.691716 -0.988872 -0.724334 0.685304 0.295017 0.797355 -AGCTT -0.419964 -0.242696 -1.224262 0.206032 -0.369293 0.018430 0.518822 -0.624854 -0.862979 0.121402 -0.364424 -1.096279 -CCTCT -0.011010 0.269441 -1.717209 0.643066 -0.058579 0.680195 0.392512 -0.852194 -0.107933 0.050629 1.494075 -0.768595 -GCCTC -0.411633 -0.360858 -1.394136 0.224028 -0.237690 -0.390657 0.258274 -0.739138 -0.373874 -0.581165 1.635242 -0.591204 -CCAAT 0.729267 -0.617044 -1.229706 1.097781 0.190161 -0.427941 0.396157 -0.084729 0.467003 -0.044180 0.838566 0.490220 -ACCTT 0.096063 -0.429227 -1.314254 0.913493 -0.355876 0.881595 0.058958 0.107464 0.375330 0.304490 0.437515 -0.437962 -CTCTC 0.219123 0.065298 -1.623072 0.436074 -0.068645 0.683080 0.632590 -1.495367 -0.391441 0.269994 1.327085 -0.606580 -GTGAT -0.900048 -0.008267 -0.029473 1.290955 0.190934 -0.021368 0.921841 -0.623125 -0.142322 -0.855803 -0.093087 0.282549 -TATGA 0.072328 -0.116767 -0.089976 2.062502 0.102205 -0.027598 0.582048 -0.348517 0.041284 -0.418202 -0.666577 -0.070968 -GGTGA -1.035265 -1.077481 0.229922 1.134791 -0.379390 0.077003 0.551316 -0.201588 -0.527933 -1.230446 -0.100846 0.045288 -CCATG -0.206197 -0.589486 -0.633296 1.090677 0.166954 -0.176390 -0.195082 -0.474633 0.687153 -1.033303 0.859089 0.803369 -CATGA 0.424121 -0.622599 -0.271694 1.234475 -0.279370 -0.191407 0.011006 -0.815450 0.085919 -0.921397 0.251962 0.670448 -ATCAC 0.679345 -0.818859 -0.926296 0.919859 0.152105 -0.175555 -0.538691 -1.305900 -0.292271 0.181464 0.116129 0.472920 -TATGG -0.928033 -0.557371 -0.256462 1.439700 0.797536 -0.236117 0.344832 -0.175796 0.357717 -0.459877 -0.606230 -0.343503 -TAGAG -0.964561 -0.028591 -0.471111 1.487843 -0.621130 -0.624709 0.239614 -0.352239 -1.065636 0.505534 -0.674235 -0.236980 -TGGGG -1.585668 -1.157918 -0.562987 0.565836 0.165101 0.187617 0.627890 -0.066280 -0.353719 -1.237724 -0.037176 -0.431190 -AGCAT -0.050195 -0.692387 -0.704220 0.729984 0.065762 -0.759022 -0.098651 -1.012179 -0.131166 0.002351 -0.487988 0.090712 -GTCCA -0.827315 -0.490449 -0.978194 0.644395 -0.247173 0.158692 0.503849 -0.480629 -0.050713 -0.038411 0.961416 0.995978 -GCAGA -0.365344 -0.993353 -0.223125 0.726044 -0.645313 -1.036556 -0.205089 -1.010568 -0.879741 -0.257756 0.313540 -0.293962 -CTGGT -1.424129 -0.549995 -0.487192 0.438863 0.506290 0.804050 0.456676 -0.567222 -0.045739 -0.417598 0.509953 -0.346889 -TGCTC -0.212786 -0.106992 -0.892442 0.326256 0.066675 0.368685 0.471233 -1.341567 0.045391 -0.810086 0.784973 -0.641072 -AACCA 0.553288 -1.410408 -0.561075 1.255144 -0.452465 -0.396769 -0.166602 0.147734 0.353555 0.348459 0.937287 0.105767 -GCTCC -0.419364 -0.180324 -1.284167 0.293196 -0.259853 0.154507 0.276496 -0.730886 -0.115447 -0.691188 1.321621 -0.595257 -GTTTG -1.165430 -0.525172 -0.369695 0.841673 -0.181150 0.924138 1.260343 -0.198374 -0.155140 -0.648701 -0.236311 0.103806 -CAATA 0.572532 -0.800487 -0.500469 1.521146 0.243399 -0.748119 0.143387 -0.473934 0.253104 0.613396 -0.081949 0.161809 -ATGAT 0.264004 -0.191753 -0.162864 1.968917 0.277746 -0.442179 0.659598 -0.603634 0.127618 -0.891971 -0.364969 0.441595 -GGACA -0.155302 -1.834615 -0.218627 0.947136 0.018242 -0.015164 -0.507120 -0.472880 -0.538330 -0.231647 -0.337411 0.010182 -AGGCT -0.964102 -0.654023 -0.943322 0.335051 -0.230340 -0.236279 0.206415 -0.606341 -0.935768 -0.754871 0.006864 -1.051623 -CCTTG -0.409527 -0.198245 -1.400608 0.633615 -0.253857 0.861276 0.909627 0.026601 0.435872 -0.810601 0.577819 -0.374719 -CGGA -0.379428 -1.224405 -0.606710 0.782091 -0.361277 -0.433604 0.033169 -0.005170 -0.677016 -0.662371 0.076732 -0.157352 -GGCAT -0.476355 -1.008094 -0.612174 0.660620 0.481923 -0.582740 -0.065039 -1.021629 0.199372 -0.978988 -0.211787 0.260462 -AGGTG -1.569135 -1.101546 0.098041 0.727241 -0.367719 -0.337327 0.338873 -0.348900 -0.616736 -0.505723 0.019584 0.052033 -GTATT -0.900634 -0.195003 -0.487300 1.640216 0.638115 0.457777 1.020306 -0.172740 0.242495 0.216703 -0.688893 0.334419 -ATGTC -0.395905 -0.237516 -0.106391 0.974047 0.402905 0.130858 0.911641 -1.231885 0.411875 -0.209678 0.641531 0.773216 -ATGAG -0.065743 -0.406786 0.149089 1.588758 -0.311256 -0.640572 0.453265 -0.539346 -0.551858 -0.922903 -0.319817 0.197580 -GAGCT -0.581523 -0.108750 -0.751238 0.535629 -0.560387 -0.183534 0.481103 -0.900724 -0.977009 -0.707241 0.070607 -0.993884 -TGAGT -0.878382 0.193902 -0.037160 1.276285 -0.700232 0.346805 0.980127 -0.363531 -0.720273 -0.375865 0.132897 0.075154 -GTAGA -0.946242 -0.217257 -0.063576 1.648026 -0.344366 -0.373286 0.347468 -0.148264 -0.643885 0.238729 -0.448044 0.131666 -CTGTA -0.722001 -0.066825 0.176564 1.521370 0.323357 0.465980 0.372442 -0.649071 0.612696 0.265861 0.522176 -0.508310 -GGCCT -0.871693 -0.479395 -1.051870 0.204837 0.029217 -0.339696 0.073864 -0.373062 -0.256367 -0.837411 0.903186 -0.699543 -TTTAC -0.170806 -0.895679 -1.293139 1.176683 0.258424 1.166817 0.063458 -0.353981 0.446867 0.825430 -0.616950 -0.182086 -GCTCA -0.175604 -0.730891 -0.900227 -0.141401 0.100806 -0.127090 0.349688 -1.471994 -0.246094 -0.179082 0.603494 -0.365003 -TAAAC 0.461879 -1.222314 -0.150018 1.451098 -0.364174 0.221421 0.523994 -0.140086 0.449644 1.156639 0.054704 -0.292508 -GTTCA -0.685718 -0.765452 -0.551139 0.131616 0.087876 0.262509 0.993182 -0.846935 -0.259152 0.422716 0.327987 0.803624 -TCATA -0.154138 -0.206135 -0.636154 1.118348 0.509684 -0.403785 0.304984 -1.195043 0.025175 0.908779 -0.149224 0.495612 -GAGCA -0.348290 -0.891254 -0.284200 0.675749 -0.814316 -0.848733 0.024189 -1.112226 -0.591925 -0.466292 -0.148042 -0.040724 -CGTT -0.719064 -0.314791 -1.127153 0.495812 -0.224918 0.741334 0.612980 -0.322281 0.104558 -0.017386 0.264911 0.256134 -TGTCC -0.950818 -0.124940 -0.777910 0.802055 -0.125970 0.526897 0.813567 -0.448191 0.431160 -0.520805 1.353281 0.629819 -TGATA 0.023405 -0.044329 0.036722 1.999660 0.103531 -0.140778 0.551925 -0.427851 -0.006042 -0.302855 -0.552027 -0.273131 -TAAGA 0.006115 -0.511884 -0.207612 1.529714 -0.515387 -0.611430 0.676269 -0.034962 -0.719694 0.766180 -0.326725 -0.282325 -TGGGT -1.717809 -0.796769 -0.530478 0.687924 0.409085 0.560219 0.780100 -0.154112 -0.104540 -0.880397 -0.030197 -0.141054 -CAGCT -0.449873 -0.427497 -1.161572 0.205199 -0.490269 -0.283372 -0.357754 -1.345685 -0.362573 0.201539 0.736202 -0.867691 -TCTTA -0.103473 -0.062242 -1.148667 0.823749 0.030323 0.432978 1.098055 -0.621830 0.190091 0.958043 -0.167326 -0.524239 -ACCCA 0.170252 -1.238315 -0.820268 1.158350 -0.590704 -0.385770 -0.626588 0.110433 0.260890 0.222206 1.305305 0.289975 -TGGTT -1.400245 -0.523175 -0.623043 0.763745 0.402633 0.989668 1.160663 -0.221193 -0.050616 -0.312349 -0.321435 -0.119187 -GTCTC -0.622744 -0.122293 -0.636129 0.156120 -0.115653 0.291180 1.193586 -1.224701 -0.422633 -0.135532 1.159838 0.097155 -CAACT 0.923829 -1.224982 -0.738708 0.559812 -0.422481 0.647794 0.283159 -0.769118 0.017246 0.433461 0.362574 -0.533983 -TTGGT -1.474863 -0.660147 -0.684271 0.639633 0.266719 0.684144 1.274129 -0.232120 0.081121 -0.727487 -0.400690 0.093941 -GTGTA -1.438966 -0.498106 0.318300 1.595139 0.072040 0.169449 0.981941 -0.202486 0.428466 0.026525 -0.004786 0.116326 -CAAGG -0.221292 -1.692601 -0.753502 -0.087871 -0.235784 -0.802608 0.646725 -0.223162 -0.820560 0.067482 0.396434 0.030663 -ACTAA 0.432540 -0.826236 -0.267148 1.542685 -0.352331 0.161741 0.385925 -0.193081 -0.235157 0.980984 0.117688 -1.121930 -CGTG -1.010178 -0.863966 -0.227247 0.439890 -0.371922 0.193691 0.137052 -0.720685 0.123400 -0.836648 0.761328 -0.119927 -TTAGT -1.119355 -0.147982 -0.748748 1.291785 -0.481494 0.390104 0.870039 -0.072097 -0.137574 0.951858 -0.477843 -0.073630 -CCATC 0.561576 -0.194691 -1.592681 0.946028 0.165288 -0.142422 0.105612 -1.092830 0.188905 0.116062 1.190820 0.680477 -CAGGG -0.979220 -1.467497 -0.901900 0.155989 -0.384014 -0.512200 -0.180818 -0.309127 -0.629363 -0.576095 0.408349 0.046647 -CATGG -0.518675 -1.190145 -0.477662 0.740364 0.532956 -0.317751 -0.017862 -0.672502 0.292324 -0.959792 -0.059736 0.730757 -GACAA 0.532487 -1.841223 -0.060104 0.962107 -0.403377 -0.286231 0.017880 -0.383998 -0.487552 0.145673 0.015033 -0.070550 -CCCAT 0.065819 -0.187390 -1.298514 1.231616 0.142632 -0.211853 -0.040002 -0.448522 0.780793 -0.073338 1.092188 0.862325 -GATGT -0.755503 -0.266811 0.184370 1.325250 0.021162 0.193391 1.071878 -0.737194 0.015351 -0.663633 -0.003874 0.584125 -AGCAC -0.177275 -1.373700 -0.605745 0.480377 -0.681807 -0.082475 -0.704355 -1.125485 -0.255566 0.211388 0.514087 -0.458817 -AGTCC -0.794449 -0.181317 -1.092611 0.804836 -0.480040 0.041302 0.543723 -0.346721 -0.434961 0.326620 1.126366 0.599069 -TCAAG -0.067739 -0.795459 -0.783765 -0.024679 -0.237142 -0.553399 1.128771 -0.718942 -0.855361 0.719617 0.647305 0.231048 -AAGCT -0.052103 -0.445836 -0.695555 0.271711 -0.591558 -0.525179 0.759811 -0.519207 -0.633983 0.375764 0.423095 -1.164608 -ATTGC 0.160832 -0.722694 -0.882739 0.847180 0.530504 0.432500 0.486868 -0.948312 0.685647 -0.674562 -0.262773 -0.037295 -ACAGT -0.855159 -1.195465 0.050100 0.796347 -0.632329 0.452277 0.047070 -0.511333 -0.153858 1.012498 0.193335 0.491441 -CTTGT -0.802366 -0.106745 -0.790672 0.965248 -0.119405 1.314893 1.204230 -0.561654 0.432207 -0.393374 0.316091 -0.151629 -TACAG -0.865557 -1.007823 -0.463364 0.945280 0.037779 -0.163763 -0.579862 -0.619265 -0.258003 0.888053 -0.505215 -0.050074 -ACAGG -0.808244 -1.941698 -0.592411 0.520115 -0.102741 -0.249488 -0.696285 -0.497678 -0.753159 0.159465 -0.155474 0.037171 -GCTTC -0.445256 -0.259223 -1.421159 -0.094342 -0.023107 0.120876 0.667043 -0.960837 -0.230822 -0.068276 0.430235 -0.730126 -CATGC 0.082100 -0.830417 -0.644866 0.783492 0.081580 -0.280814 -0.187698 -1.347186 0.997444 -0.845766 0.523161 0.192617 -TGACT 0.236815 -0.430103 -0.306880 1.187433 -0.312366 1.071291 0.174852 -0.613732 -0.235306 -0.524462 -0.019554 -0.737858 -CCAAG -0.038951 -0.836484 -0.899140 0.542681 -0.712601 -0.759913 0.209325 0.030803 -0.360932 0.345541 1.128834 0.112175 -CTTAT -0.039331 0.113212 -1.217954 1.421125 0.472352 0.743598 0.346444 -0.498230 0.570248 0.344483 -0.323963 -0.524842 -AGGTT -1.274876 -0.778654 -0.716908 0.286002 -0.300296 0.157436 0.904503 -0.104857 -0.734544 0.193385 -0.360494 0.166659 -AAGAC 0.328160 -1.258587 -0.253777 1.126986 -0.913662 -0.315309 -0.054581 -0.232747 -0.774818 0.633776 0.156059 -0.143650 -TCAGC -0.350413 -0.435293 -1.310981 0.024617 -0.114048 -0.426704 0.154215 -1.497157 -0.614747 0.327762 0.834614 -0.084203 -GCATG -0.357971 -1.083962 0.032409 0.850439 0.056962 -0.520525 0.033145 -1.240270 0.486587 -1.069187 0.203197 0.173122 -AGTTA -0.947200 -0.569638 -0.217385 1.239122 -0.436624 0.132357 0.722234 -0.069488 -0.422720 1.138163 -0.426546 -0.009090 -TCAGT -0.959335 -0.333599 -0.412823 0.367184 -0.319244 0.028648 0.938523 -1.020036 -0.439089 0.633175 0.503199 0.656440 -CCAGC -0.292050 -0.735759 -1.264469 0.572440 -0.570245 -0.563668 -0.505521 -0.653994 -0.230275 -0.036906 1.545829 -0.285179 -TTAGA -0.305469 -0.174145 -1.001808 1.345889 -0.472727 -0.077934 0.522203 -0.010171 -0.765665 0.561681 -0.991914 -0.019660 -TCTTG -0.579759 0.003922 -1.040429 0.364459 0.090015 0.707071 1.547612 -0.741125 -0.192471 -0.564774 0.068884 -0.505186 -CTGAC 0.209266 -0.610277 -0.376258 1.103780 -0.366146 0.767935 -0.363196 -0.799604 -0.310016 -0.697203 0.806020 -0.712637 -TCACC 0.141264 -0.861872 -1.325835 0.466598 0.055609 0.365499 -0.238770 -0.899908 0.345104 0.481124 1.157944 0.271715 -CAAGA 0.662298 -0.962323 -0.692178 0.909924 -0.710228 -0.773544 0.236299 -0.580904 -0.968546 0.426549 0.063430 0.317812 -ACTTG -0.001659 -0.747183 -0.700452 0.717870 -0.536073 1.016979 0.303958 -0.333588 0.191605 -0.404896 -0.333265 -0.643723 -GAACT 0.426911 -1.036335 -0.267776 0.819843 -0.619710 0.501495 0.488043 -0.068166 -0.538449 -0.132660 0.114624 -1.074431 -CTGTC -0.593180 -0.070521 -0.623775 0.540922 0.131189 0.751168 0.875684 -1.238310 0.226834 -0.117268 1.414574 -0.021051 -AATAC 0.565497 -1.078757 -0.336464 1.752296 0.109198 -0.220744 0.056098 0.006374 0.243647 0.880895 -0.021525 -0.274077 -ACAAG 0.026732 -1.719419 -0.199160 0.696217 -0.656912 -0.414407 0.038979 -0.429581 -0.751202 0.792769 0.143345 0.032516 -CCCG -0.658587 -0.584469 -1.101695 0.715884 -0.443638 -0.108489 -0.079358 0.037402 0.006512 -0.734721 1.383510 -0.185904 -TTAAG -0.351864 -0.629945 -0.694227 1.082546 -0.409656 0.009358 0.995826 0.231757 -0.521477 0.774970 -0.794262 -0.256478 -CCAGT -1.063866 -0.277354 -0.907299 0.701897 -0.620486 0.152270 0.222047 -0.306437 -0.078037 0.560032 1.102295 0.710093 -AGGAC -0.155110 -1.295171 -0.618873 0.849542 -0.517783 -0.141081 -0.308768 -0.060167 -1.092999 -0.011666 -0.018209 -0.655161 -ACCAG -0.341484 -0.961612 -0.549897 1.074730 -0.661010 -0.610434 -0.689909 -0.139525 -0.384130 0.318045 0.967188 0.191408 -TCTAG -0.705201 0.533464 -0.825213 0.962080 0.074621 -0.257362 0.633827 -0.705141 -0.635276 0.737114 0.259978 -0.690562 -ATGGG -0.625442 -1.226585 -0.321748 0.899957 0.662684 -0.603040 0.368792 -0.215259 -0.120388 -1.039384 -0.501424 0.003825 -TTGGG -1.349507 -0.869254 -0.941384 0.525679 0.247081 0.515357 1.011155 -0.065704 -0.402578 -0.903817 -0.788336 -0.326898 -CCCTC -0.013120 -0.250393 -1.756389 0.490161 -0.207987 0.140742 0.100579 -0.701111 0.007206 0.032326 1.924987 -0.297727 -TGGTA -1.264784 -0.657958 0.018779 1.378561 0.516439 -0.021160 0.489476 -0.110125 0.285849 -0.212302 -0.267013 -0.043554 -GGCAG -1.040088 -1.347810 -0.476342 0.391080 -0.441019 -0.903396 -0.260349 -0.933633 -0.718771 -0.656668 0.403882 -0.203314 -GCTGA -0.315943 -0.380219 -0.162529 0.901743 -0.367370 -0.370067 0.486021 -0.836336 -0.734761 -1.195976 0.316312 -1.178028 -GACTT 0.149075 -0.710178 -0.958185 0.667191 -0.438373 0.839625 0.333354 -0.167564 -0.654472 -0.189321 -0.416062 -0.857394 -AGAAC 0.374025 -1.345993 -0.313219 1.298198 -0.881907 -0.417132 -0.148880 -0.073384 -0.835871 0.297013 0.094582 -0.153530 -AGCCA -0.158272 -0.865519 -0.781378 0.864726 -0.652015 -0.938044 -0.494495 -0.209945 -0.389618 -0.288782 0.945050 0.175578 -GCACT -0.094633 -1.164693 -0.521723 0.280593 -0.351308 0.503970 -0.329190 -1.216111 0.099833 -0.089215 0.422974 -0.896692 -ATTCG -0.159351 -0.265250 -1.450416 0.959774 0.391648 0.113731 0.499075 -0.579706 -0.267971 -0.227382 0.224714 0.462147 -CGGG -1.125805 -1.220599 -0.707711 0.380590 -0.172199 -0.008988 0.033889 -0.170599 -0.427463 -0.949063 0.422847 -0.229077 -GTCTT -0.819956 0.042075 -0.884764 0.459184 -0.125104 0.888763 1.408747 -0.752913 -0.181432 0.108926 0.226989 -0.292006 -GCCG -0.839149 -0.628080 -0.861666 0.423549 -0.548103 -0.425999 -0.090391 -0.371210 -0.215666 -0.861453 0.819944 -0.608438 -CAGGT -1.301716 -0.857173 -0.531621 0.238847 -0.412305 -0.176833 0.093367 -0.612649 -0.471107 -0.041639 0.205207 0.380934 -CGAT -0.071018 -0.099462 -1.160651 1.067407 0.263599 -0.121490 0.303348 -0.653286 -0.205084 -0.516388 -0.026685 0.377241 -CTTAA 0.510406 -0.420483 -0.727673 1.015026 -0.196684 0.444718 0.956797 -0.300727 0.092833 0.809552 0.045428 -0.726178 -TGCAC 0.041940 -1.057798 -0.507811 0.585705 -0.314391 0.732966 -0.337767 -1.176135 0.560990 -0.651245 0.362627 -0.348021 -GTCCT -1.003918 0.142307 -0.945328 0.650842 0.006470 0.541871 0.870063 -0.294016 0.033414 -0.128359 1.238261 -0.086268 -CCGT -0.839014 -0.394689 -0.899058 0.500229 -0.296336 0.359384 0.236882 -0.268078 0.191378 -0.319403 0.973682 0.317715 -ATAGT -0.842272 -0.205152 -0.094642 1.568509 -0.040146 -0.439018 0.691034 -0.361786 -0.148301 0.809568 -0.372188 0.197198 -AGTTC -0.834473 -0.059196 -0.855190 0.433938 -0.583532 0.331009 1.097602 -0.447021 -0.710967 0.740083 0.321635 0.299387 -ATCAG 0.105950 -0.286855 -0.908941 0.750961 0.046765 -0.809587 0.078897 -1.127743 -0.743449 0.257974 0.164625 0.682042 -ACGT -0.681999 -0.803889 -0.226212 0.617555 -0.388411 0.530463 -0.027937 -0.571822 0.034014 -0.000578 0.297355 0.103717 -CCCAA 0.391467 -1.048108 -0.930268 0.873058 -0.568979 -0.593214 0.218962 0.132067 0.279439 0.338060 1.575505 0.226503 -GATTA -0.378132 -0.565597 -0.656475 1.447602 0.323703 -0.054882 0.384227 -0.269664 -0.240256 0.067182 -1.288543 0.015919 -CTGAT 0.215290 0.191123 -0.415205 1.319548 0.380605 0.298355 0.417772 -0.993590 -0.211703 -0.947465 -0.022114 -0.446077 -CCAGA 0.024601 -0.596368 -0.862471 1.145487 -0.737143 -0.827856 -0.558916 -0.124617 -0.772901 0.038190 0.896304 0.296968 -ATTAG -0.331713 -0.384166 -0.848791 1.372612 0.255767 -0.246379 0.455002 -0.122847 -0.511873 0.761518 -0.738843 0.084155 -TGGCC -0.885442 -0.738670 -0.846994 0.498095 -0.008683 -0.014675 0.038878 -0.202447 0.321203 -1.303990 0.915991 -0.317520 -GAGGT -1.523408 -0.814367 -0.252093 0.635300 -0.421753 -0.348397 0.597156 -0.249355 -1.040948 -0.586093 -0.086863 -0.058836 -AGCTC -0.371996 -0.213087 -1.247686 0.310378 -0.389358 -0.225756 0.054282 -1.080930 -0.950366 -0.028907 0.750223 -0.782892 -ATCGA 0.228663 -0.716589 -0.670721 1.288848 0.017153 -0.694224 0.631627 -0.326873 -0.693408 -0.490046 0.271534 -0.009625 -ACTTA 0.277225 -0.905974 -1.035953 1.067690 -0.313731 0.768194 -0.013228 -0.241755 0.126906 0.954461 -0.454749 -0.745759 -CTCTA 0.344434 0.289385 -0.947718 1.173168 0.106003 0.347410 0.380863 -1.065285 -0.145636 0.872360 0.685511 -0.936944 -GGTGT -1.845336 -0.904174 0.035048 0.836998 0.074573 0.445835 0.935271 -0.331305 0.192557 -0.604366 0.120888 -0.000129 -CTTGC -0.274615 -0.301285 -1.249154 0.457787 -0.093317 0.848176 0.352494 -0.941267 0.388413 -0.854575 0.337478 -0.974786 -GTGCA -0.878406 -1.023286 0.142931 0.471312 -0.365201 -0.149192 0.390630 -1.105605 0.471795 -0.659713 0.357139 0.090147 -CATAG -0.544575 -0.394392 -0.632878 1.243281 -0.133669 -0.712544 -0.453885 -0.682713 -0.023644 0.506893 -0.324267 0.327462 -GCAGG -1.111165 -1.526115 -0.600597 0.286843 -0.337753 -0.785916 -0.217027 -0.820056 -0.659672 -0.718294 0.269537 -0.427739 -AGTTG -0.880916 -0.539891 -0.046615 0.864559 -0.737310 0.147276 1.244142 -0.093741 -0.581175 -0.289486 -0.185421 0.216777 -ATCCT 0.445072 0.322401 -1.253624 1.187695 0.446173 -0.179244 0.433010 -0.532197 0.236475 -0.036734 0.970746 0.048715 -GATGA -0.052671 -0.666754 0.057492 1.603654 -0.126328 -0.425897 0.372959 -0.452739 -0.654886 -0.968268 -0.430517 0.155645 -CTACA 0.162256 -0.731044 -0.524062 1.100247 0.103709 0.303419 -0.604539 -0.947233 -0.130757 0.891419 0.248327 -0.530292 -GCAGC -0.768555 -1.038648 -0.541708 0.277613 -0.545939 -0.670505 -0.374804 -1.469882 -0.304295 -0.503384 0.901766 -0.708555 -ATCTA 0.525882 0.109619 -0.561241 1.549766 0.213766 -0.315143 0.528871 -0.818248 -0.066789 0.694160 0.029329 -0.466991 -AATCG 0.250381 -0.878688 -0.645901 1.212769 0.004325 -0.818258 0.703908 -0.362381 -0.600168 -0.489419 0.215865 -0.023622 -GTGCT -1.114413 -0.288217 -0.328616 0.411014 -0.046142 0.310819 0.821676 -0.979442 0.229628 -0.780339 0.513387 -0.890109 -TAGAT -0.308512 0.050398 -0.615811 1.700043 0.145501 -0.526971 0.288073 -0.606378 -0.400442 0.263763 -0.801444 -0.081418 -CAATC 0.696235 -0.539297 -0.909562 0.831663 -0.016421 -0.472545 0.450059 -0.711833 0.049352 0.147327 0.901704 0.435068 -TTCGA -0.103411 -0.125596 -1.421548 0.997308 0.043604 0.056745 0.489947 -0.535304 -0.460423 -0.318367 0.161916 0.354382 -AGGGG -1.318960 -1.422985 -0.583627 0.538552 -0.201182 -0.652509 0.285143 0.047242 -0.939892 -0.682715 0.087439 -0.286759 -GGGTG -1.754319 -1.213059 -0.170509 0.557533 -0.187883 -0.086493 0.602237 -0.414335 -0.381867 -1.046987 0.263997 -0.153687 -CTAAT 0.662186 0.000820 -0.526609 1.617575 0.388553 0.089753 0.809661 -0.442051 0.254826 0.411704 0.104827 -0.681439 -CACCT 0.050098 -0.743369 -1.089476 0.671264 -0.064530 0.420279 -0.386617 -0.416291 0.445541 0.253960 1.100099 -0.364309 -GATAA 0.356196 -0.430087 -0.099321 1.899730 0.039782 -0.634356 0.646083 -0.210328 -0.439747 0.194962 -0.502316 -0.243621 -CCATA 0.044162 -0.342856 -0.986084 1.477647 0.311637 -0.359330 -0.334805 -0.225529 0.482867 0.409316 0.295775 0.373886 -GGAGC -0.727378 -0.836418 -0.602892 0.454409 -0.352366 -0.687990 0.003540 -0.590301 -0.933109 -0.788597 0.313496 -0.581595 -CTGGC -0.729500 -0.862856 -0.835982 0.205268 0.295351 0.167375 -0.028802 -1.014164 0.040717 -1.054439 0.840767 -0.748714 -CGCT -0.512800 -0.372800 -1.053321 0.361748 -0.266262 0.216111 0.013694 -0.632139 0.015632 -0.465405 0.717330 -0.742672 -ATAAC 0.865593 -0.990860 -0.339537 1.682438 0.042537 0.019191 0.071273 -0.427570 0.489267 0.707401 -0.134364 -0.262346 -GAGGG -1.160220 -1.414589 -0.476174 0.785545 -0.413922 -0.717094 0.217203 -0.260938 -1.181811 -1.051007 -0.236246 -0.387678 -ATCCC 0.271692 0.020901 -1.240290 1.212589 0.021144 -0.509918 0.097980 -0.219880 0.216850 -0.293582 0.968940 0.654601 -GAGTC -0.778540 -0.204626 -0.706641 0.630674 -0.415524 -0.173300 0.740200 -0.650748 -0.822471 -0.084707 0.473056 0.375118 -AGAGC -0.272502 -0.612951 -0.415936 0.832093 -0.879110 -0.993791 -0.077949 -0.839350 -1.202091 -0.086954 0.417020 -0.449535 -ATGGC -0.242085 -1.158748 -0.414184 0.669277 0.434798 -0.708802 0.248622 -0.643735 0.239791 -0.952745 -0.022951 -0.118120 -TAATC 0.458343 0.151751 -0.747734 1.495330 0.252428 -0.505829 0.895907 -0.456304 0.165797 0.734580 0.460305 0.189270 -GGCG -1.033679 -1.213144 -0.669122 0.320485 -0.272941 -0.424104 -0.030556 -0.376856 -0.443190 -0.892966 0.389450 -0.410021 -ACACC 0.182665 -1.615995 -0.797892 0.934793 -0.379708 0.188259 -0.838990 -0.430394 0.420675 0.444035 0.994774 -0.053876 -GGGGA -1.032729 -1.537399 -0.390813 0.656141 0.000892 -0.438535 0.330720 -0.007248 -0.871664 -0.893789 -0.211073 -0.561331 -AGTCT -0.645661 -0.023032 -0.352265 0.407291 -0.443296 0.219460 1.078156 -0.784367 -0.751660 0.444406 0.485795 -0.049835 -ACATC 0.688048 -0.894536 -0.756546 0.914946 -0.018813 -0.004589 -0.137588 -1.166402 0.033710 0.342653 0.325257 0.548516 -AGACT 0.092670 -0.579336 -0.603917 0.949840 -0.722285 0.301000 -0.245736 -0.471275 -1.135876 0.279192 -0.076028 -0.726559 -GAGCC -0.568264 -0.376028 -0.805942 0.778575 -0.756731 -0.704140 -0.171888 -0.351775 -0.510143 -0.958082 0.937364 -0.430489 -CTCGA 0.199349 -0.657477 -0.688274 0.975916 -0.206043 0.010069 0.282238 -0.429246 -0.976272 -0.537752 0.542777 -0.442929 -GTGGC -1.517715 -1.107166 -0.223680 0.228669 -0.081196 -0.010968 0.366679 -0.844667 0.096852 -0.874781 0.447054 -0.205175 -GGCAA -0.039306 -1.713069 -0.169298 0.321670 -0.114216 -0.672895 0.250940 -0.488051 -0.238996 -0.540156 0.286105 -0.315346 -TAACT 0.446552 -0.615814 -0.355637 1.291253 -0.246084 0.662627 0.553685 -0.376686 0.202152 0.715772 0.040839 -0.999245 -GAAGC -0.100931 -0.856856 -0.321824 0.622334 -0.683889 -1.052605 0.348742 -0.455493 -0.719710 -0.162502 0.372377 -0.549237 -ACCCC 0.391521 -0.990365 -1.116862 1.091317 -0.769838 0.091154 -0.373281 -0.166111 0.340788 0.102902 1.726132 0.123092 -TCCG -0.679483 -0.250616 -1.262292 0.420989 -0.135653 0.073070 0.387354 -0.265364 -0.212277 -0.303337 0.950777 0.173210 -ACCAC 0.231783 -1.332570 -0.625706 0.954926 -0.454575 0.387736 -0.641507 -0.547536 0.383488 0.236133 0.982394 -0.019462 -TAGCA -0.356404 -0.576935 -0.425258 0.815109 -0.358184 -0.625506 0.028533 -0.907724 0.037073 0.520493 -0.428869 -0.308356 -ATAGG -0.923872 -0.711421 -0.362531 1.247692 0.217679 -0.759213 -0.046681 -0.253233 -0.437897 -0.078017 -0.695005 -0.240083 -TACAC -0.037188 -1.325577 -0.652368 1.140649 0.097724 0.497360 -0.644136 -0.645827 0.641890 0.916117 -0.092088 -0.106586 -TAGTA -0.933710 -0.250514 -0.378235 1.724270 -0.247138 -0.098144 0.674780 -0.095295 -0.026144 1.113626 -0.567644 -0.145957 -CTATG -0.438568 0.088853 -0.223305 1.284104 0.428997 0.300804 0.260913 -0.604241 0.357773 -0.361885 0.146937 -0.566975 -AGCCC -0.315899 -0.390046 -1.157500 0.627749 -0.614792 -0.823371 -0.238767 -0.372352 -0.368325 -0.255543 1.377329 -0.138537 -ACGA 0.258094 -1.220586 -0.397373 0.972180 -0.542232 -0.191039 0.009617 -0.050917 -0.471444 -0.178459 0.263012 -0.141403 -TCTAC 0.051890 -0.232890 -0.918322 0.981969 0.314318 0.577439 0.044564 -0.947529 0.189338 1.027856 0.412783 -0.436934 -CTTGG -0.760525 -0.540675 -0.961137 0.385326 0.159451 0.732717 0.645313 -0.319263 -0.339486 -0.895197 0.024098 -0.675987 -GCTGC -0.801109 -0.465452 -0.684217 0.426532 -0.047037 -0.087500 0.131852 -1.225821 0.094890 -1.051509 0.691057 -1.172265 -CCCTG -0.394329 -0.359880 -0.811914 0.930770 -0.177613 0.177364 -0.013181 -0.270602 0.172628 -0.808335 1.548270 -0.556251 -CCGA -0.199371 -0.493800 -0.718870 0.836656 -0.565255 -0.327749 -0.246767 -0.198634 -0.417202 -0.556875 0.834482 -0.149051 -AAGGT -1.027794 -1.160733 -0.019283 0.497833 -0.365042 -0.372401 0.987588 -0.004151 -0.505004 0.307951 -0.116183 -0.148528 -ACCCT 0.024684 -0.552813 -1.098703 1.070642 -0.328903 0.433259 -0.280868 -0.121991 0.371881 0.104510 1.340204 -0.463521 -AGTGC -0.864074 -0.585837 0.065676 0.489773 -0.687680 -0.142479 0.521953 -0.706874 -0.014343 -0.350547 0.469831 -0.240906 -GGTCT -1.092863 -0.348004 -0.486747 0.164095 0.258639 0.149691 0.940651 -0.967316 -0.720444 -0.014226 0.455014 -0.343265 -TCAAC 0.685192 -1.072424 -0.784209 0.502479 -0.113136 0.152333 0.293170 -0.891515 0.042376 0.737547 0.534628 0.314710 -ACTAT 0.239596 -0.343611 -0.632887 1.634126 0.205437 0.443747 -0.133901 -0.537197 0.282022 0.505489 -0.322462 -0.649758 -ACCAA 0.634109 -1.479272 -0.571107 1.161032 -0.503034 -0.299225 -0.059692 0.050755 0.108767 0.541413 1.017016 0.242148 -GCCAA 0.261781 -1.085075 -0.551254 0.485408 -0.244988 -0.747969 0.562973 -0.021378 0.194639 -0.364218 0.977338 -0.085895 -AGTAT -0.892994 -0.236790 -0.239197 1.578772 0.120399 -0.234378 0.653582 -0.134098 -0.106683 0.659994 -0.549310 0.178826 -CTACT -0.055477 -0.185668 -0.827490 0.993772 -0.009165 0.818824 -0.028745 -0.750164 -0.141861 0.759706 0.419410 -1.150167 -TTGGC -0.658388 -0.625036 -1.183862 0.234200 0.195553 0.382085 0.455010 -0.505638 0.154921 -1.134932 -0.286798 -0.298601 -CCCAC -0.014085 -1.081228 -1.219572 0.959127 -0.468347 0.091779 -0.691348 -0.434155 0.416239 0.128006 1.570547 0.208356 -ACAGC -0.360296 -1.389984 -0.704710 0.660220 -0.495886 -0.419101 -0.858582 -1.008697 -0.228160 0.434527 0.587366 -0.272230 -TATAC -0.080031 -0.646535 -0.635142 1.885887 0.344727 0.152533 -0.342594 -0.353947 0.723723 0.833841 -0.431215 -0.121569 -TCCCC -0.290356 -0.206921 -1.727009 0.532088 -0.393030 0.244013 0.258559 -0.270027 0.433071 0.002944 1.509529 0.097397 -AGGAT -0.473681 -0.757415 -0.403897 1.168041 0.191511 -0.949981 0.279987 -0.116762 -0.756133 -0.624904 -0.527014 -0.012070 -CGAC 0.076502 -0.697575 -0.895408 0.797552 -0.488573 0.296807 -0.410566 -0.425267 -0.252677 -0.375446 0.857099 -0.346548 -GGCCA -0.757485 -1.130831 -0.850613 0.479532 -0.155737 -0.629406 -0.403564 -0.215236 -0.076212 -0.921678 0.884062 0.001662 -GGGGT -1.775486 -1.193305 -0.574735 0.326037 0.123002 0.042013 0.738341 -0.231108 -0.468823 -0.783600 0.069420 -0.105321 -GTTCC -1.065045 -0.098618 -1.195563 0.621523 -0.049310 0.344043 0.830772 -0.013665 -0.005116 -0.019061 0.745663 0.466842 -AACCC 0.429208 -1.243414 -0.764869 1.105741 -0.750185 -0.415779 -0.039461 0.290536 0.256284 0.017896 1.392606 -0.152189 -GCAAG -0.255381 -1.222175 -0.052715 0.275507 -0.498967 -0.795954 0.439984 -0.910604 -0.308147 -0.195114 0.460471 -0.567771 -GCTCT -0.493514 -0.028748 -1.012824 0.311821 -0.018027 0.419605 0.778272 -1.266189 -0.261817 -0.366880 0.689716 -1.047456 -CGTC -0.526361 -0.383267 -0.800862 0.223701 -0.263904 0.294880 0.529505 -0.881202 -0.086571 -0.109585 1.182401 0.074076 -GCTGT -1.072849 -0.385428 -0.089937 0.626532 0.011039 0.409227 0.798542 -0.891678 0.340728 -0.550173 0.655922 -0.709294 -CCGG -1.039750 -0.938067 -0.914692 0.349931 -0.264030 -0.234507 -0.089121 -0.031160 -0.282689 -0.768507 0.751327 -0.156072 -ATAAG -0.042417 -0.702157 -0.027282 1.674084 -0.206600 -0.847952 0.503891 -0.193812 -0.347734 0.614736 -0.508469 -0.445262 -TTGTC -0.567986 -0.062508 -0.954488 0.600021 0.166421 0.757929 1.335696 -0.857082 0.338855 -0.320587 0.299311 0.514652 -TGGGC -0.919500 -0.995069 -0.447469 0.510147 0.191303 -0.274807 0.013176 -0.595318 -0.094222 -1.265470 0.299128 -0.345053 -ATGCC 0.076892 -0.382952 -0.661961 1.050879 0.272226 -0.607609 0.154736 -0.607172 0.835257 -0.921155 0.875520 -0.114365 -TAAGT -0.942022 -0.378890 0.125144 1.355263 -0.406037 -0.109911 1.257784 -0.113632 -0.098128 0.913508 -0.063432 -0.263066 -GTCTG -1.152106 -0.069019 -0.062933 0.588909 -0.004532 0.273513 1.150656 -0.921461 -0.354384 -0.439382 0.768632 -0.279286 -GCCAC -0.220954 -1.064407 -0.770295 0.551054 -0.449148 -0.153761 -0.565356 -0.644038 0.253688 -0.260688 1.165166 -0.289243 -GTCAG -1.273576 -0.469373 -0.479243 0.282097 -0.305624 -0.314364 0.687550 -0.940230 -0.732845 -0.110201 0.499803 0.688848 -TACCA -0.077196 -0.741017 -0.905511 1.310927 0.050484 -0.270492 -0.656011 -0.028339 0.379972 0.742224 0.345647 -0.014380 -ACAAC 0.646748 -1.781473 -0.441017 0.935901 -0.458356 0.241050 -0.260982 -0.383927 0.099021 0.441908 0.409811 -0.309281 -CACCC 0.089436 -0.991691 -1.426017 0.745476 -0.458484 0.174427 -0.525036 -0.515024 0.388625 0.217406 1.525411 0.090162 -AAGTC -0.286493 -0.520032 -0.366722 0.442692 -0.584152 -0.297772 1.217790 -0.458908 -0.412324 0.710336 0.836939 0.271133 -GTCAT -0.534257 -0.178060 -0.529130 0.804802 0.404467 -0.080439 0.745152 -1.046534 0.101518 0.039789 0.157523 0.917358 -ACCG -0.346620 -1.088097 -0.609384 0.668478 -0.498614 0.086112 -0.392239 -0.105169 -0.057259 -0.389323 0.897978 -0.155876 -TAGCT -0.821003 0.040828 -0.790760 0.808945 -0.013946 -0.217453 0.411441 -0.704817 -0.353483 0.406461 -0.145984 -1.119609 -GTTAA -0.433702 -0.583086 0.049643 1.328675 -0.174415 0.263759 1.523977 0.024508 0.123936 0.711919 -0.201743 0.020324 -GCCTT -0.555299 -0.217182 -1.398062 0.318632 -0.186018 0.164349 0.523956 -0.139245 0.262594 -0.301998 0.672054 -0.729706 -CAGTC -0.662255 -0.397255 -0.819484 0.328914 -0.521324 0.076490 0.424398 -0.948831 -0.334433 0.410263 0.971774 0.627419 -TACTA 0.159245 -0.491544 -0.677156 1.611160 0.195102 0.283527 0.177930 -0.220392 0.192219 1.167779 -0.022220 -1.159510 -AAGGC -0.294241 -1.279180 -0.535996 0.159579 -0.350106 -0.946893 0.417590 -0.304444 -0.479387 -0.242783 0.394416 -0.766492 -GTGTC -1.305979 -0.328961 -0.129680 0.600924 -0.142860 0.401416 1.191805 -0.837990 0.086563 -0.237237 0.850266 0.374875 -TCCTA -0.099563 0.458600 -1.150218 1.298119 0.240188 0.089142 0.457761 -0.355360 0.158009 0.614823 0.787706 -0.485838 -AAGCC 0.103273 -0.860759 -0.652376 0.653050 -0.665951 -1.156406 0.391501 -0.026268 -0.207812 0.130611 1.107293 -0.438682 -GACAC 0.143479 -1.657565 -0.261340 0.992582 -0.505990 0.079208 -0.642066 -0.642401 -0.439098 -0.024881 0.143038 -0.077568 -GCCCT -0.508996 -0.094053 -1.104382 0.787775 -0.281837 -0.041306 0.159764 -0.228559 0.184254 -0.587760 1.300550 -0.784427 -GGATG -0.781104 -0.936448 -0.098021 1.180206 0.309785 -0.600327 0.453539 -0.354598 -0.220601 -1.251845 -0.264584 -0.001013 -CGCC -0.588990 -0.611539 -1.282322 0.682788 -0.312956 -0.162125 -0.213434 -0.312089 0.138252 -0.721100 1.346116 -0.375249 -GGCTC -0.961381 -0.672073 -1.118632 -0.029148 0.104789 0.081064 0.192132 -0.941794 -0.618636 -0.717635 0.786291 -0.509766 -CATCC 0.204071 -0.240826 -1.334330 0.804143 -0.021555 -0.198004 -0.082635 -0.863874 0.353517 0.021064 1.007832 0.554955 -AGTAG -1.252034 -0.414124 -0.245079 1.210877 -0.547222 -0.587334 0.370731 -0.097588 -0.702458 0.544203 -0.171244 -0.103109 -GCCCA -0.450459 -0.906310 -1.004236 0.520067 -0.680256 -0.727866 -0.252629 -0.222710 -0.019608 -0.264358 1.271653 -0.058144 -GGGCA -0.865913 -1.588867 -0.457358 0.267199 -0.102620 -0.438703 -0.138401 -0.898866 -0.339412 -1.003877 0.221324 -0.189018 -GGATA -0.664859 -0.727466 -0.272243 1.423983 0.415849 -0.617630 0.004232 -0.128960 -0.410953 -0.332402 -0.731198 -0.415753 -GGGTT -1.549791 -0.942629 -0.784607 0.271504 0.032435 0.367641 1.036994 -0.093778 -0.471761 -0.521237 -0.238302 0.025426 -ACCTC 0.357869 -0.471074 -0.934995 0.705845 -0.315536 0.293877 -0.006657 -0.572515 -0.006897 0.187714 1.350253 -0.286937 -TTATC 0.097183 0.137332 -1.250216 1.222194 0.501157 0.300741 0.735348 -0.828285 0.190697 0.702684 -0.263528 0.101783 -CCGC -0.502891 -0.617981 -1.138986 0.654684 -0.366345 -0.120719 -0.214563 -0.358104 0.214995 -0.687524 1.358294 -0.543371 -TGACC 0.000215 -0.393001 -0.490682 1.194326 -0.471030 0.487434 -0.169815 -0.161722 0.173565 -0.611551 0.974852 0.008474 -GTGAC -0.505848 -1.009171 0.276191 1.058309 -0.482209 0.575259 -0.085249 -0.550503 -0.126735 -0.685309 0.310767 0.085694 -TATCC 0.115877 0.274507 -1.220692 1.382371 0.286641 -0.126333 0.152898 -0.367153 0.369652 0.376840 0.478237 0.215818 -TGGTC -1.046581 -0.433188 -0.491929 0.339511 0.301996 0.225436 0.911164 -0.731902 -0.072617 -0.696351 0.425702 0.168504 -GACCC 0.063093 -0.810287 -0.865162 1.003592 -0.537774 -0.154901 -0.423348 0.098704 -0.072660 -0.481055 1.286412 -0.167648 -AGCG -0.691632 -0.710254 -0.376285 0.364057 -0.354940 -0.340031 0.043359 -0.660549 -0.544669 -0.407138 0.514823 -0.332806 -TTAAC 0.437340 -0.995951 -0.743106 1.153347 -0.224027 0.802033 0.458211 -0.144145 0.421714 0.958804 -0.303941 -0.293424 -AGCTA -0.215920 -0.239311 -0.705079 1.137594 -0.087608 -0.589657 -0.212412 -0.400065 -0.569225 0.438681 0.212069 -1.214462 -AGACC -0.049895 -0.658517 -0.552193 1.309767 -0.666767 -0.444088 -0.543674 0.012411 -0.599536 -0.086532 0.761576 -0.028402 -TAGTG -1.406024 -0.094960 0.059219 1.171897 -0.308980 -0.091862 0.602091 -0.391607 -0.000867 0.175819 -0.091416 -0.261398 -CTAAG -0.357585 -0.207367 -0.253201 0.923398 -0.437663 -0.138862 0.632392 -0.303819 -0.585679 0.683237 0.201462 -0.900246 -GATAG -0.559180 -0.456010 -0.337576 1.653029 -0.265105 -0.884526 -0.024870 -0.389359 -0.779480 0.266012 -0.647729 -0.214881 -GTTGG -1.563298 -0.802704 -0.265232 0.616111 0.001594 0.475258 1.189458 -0.125107 -0.178234 -0.656492 -0.179176 -0.070801 -GACCA 0.041895 -1.000504 -0.481776 1.163723 -0.457628 -0.344789 -0.615176 -0.122360 -0.219340 -0.218527 0.674754 0.295425 -TAGAC -0.187046 -0.455799 -0.473107 1.381074 -0.396760 -0.137459 -0.467762 -0.316637 -0.491310 0.551026 -0.155697 -0.278742 -CAGAC 0.132514 -1.182313 -0.638855 0.862303 -0.779414 -0.133834 -0.664331 -0.904179 -0.552478 0.251156 0.280863 0.121563 -GCTTG -0.643194 -0.322475 -0.795082 0.464079 -0.317229 0.470650 0.772820 -0.469936 0.104094 -0.928932 -0.072718 -0.859026 -TAGGA -0.699246 -0.873209 -0.395790 1.174982 -0.011245 -0.677491 0.265743 0.046546 -0.677489 0.010976 -0.743414 -0.417403 -GAACC 0.230957 -1.050372 -0.466676 0.998057 -0.581532 -0.186699 0.063213 0.423425 -0.129540 -0.484618 0.776576 -0.218058 -TTGAC 0.093727 -0.600126 -0.562428 0.934229 -0.375268 0.878901 0.306547 -0.387735 -0.034458 -0.616201 -0.252341 -0.060756 -TCGG -0.652570 -0.624286 -0.720396 0.348342 0.089593 -0.094761 0.186471 -0.407804 -0.409964 -0.587867 0.440838 -0.363832 -GCGA -0.322932 -0.705718 -0.527728 0.595536 -0.454703 -0.136226 -0.153025 -0.458574 -0.350184 -0.776403 0.404677 -0.460670 -ACTAG -0.166869 -0.511703 -0.363987 1.200807 -0.520376 -0.163485 -0.156961 -0.177061 -0.465358 0.663697 0.095544 -0.937442 -AGATC 0.190308 0.119935 -0.670531 1.000339 -0.289422 -0.708094 0.162957 -0.998337 -0.972743 -0.156067 0.115006 0.290921 -CATAC 0.167927 -0.907524 -0.729767 1.249830 0.154678 0.143464 -0.609837 -0.799092 0.464217 0.685254 -0.059582 0.104583 -GCCAG -0.888849 -0.895086 -0.647531 0.551392 -0.722245 -0.749618 -0.294763 -0.380241 -0.310425 -0.295782 1.165228 -0.108329 -GATCA 0.150585 -0.540236 -0.542358 0.808989 0.169137 -0.551603 0.049043 -1.120374 -0.750566 -0.294622 -0.062335 0.544916 -GTTAT -0.940623 -0.178036 -0.460977 1.518963 0.515746 0.436576 0.668605 -0.378475 0.232411 0.512572 -0.624298 0.132624 -GGCTT -0.873364 -0.411168 -1.297654 0.163855 0.093648 0.394745 0.546361 -0.512344 -0.327838 -0.554681 -0.313110 -0.793099 -TACTG -0.364820 -0.610212 -0.134597 1.193726 0.330179 0.531362 -0.039112 -0.424455 0.350878 -0.036569 0.079256 -1.047537 -TACCT 0.034574 -0.204863 -1.108897 1.392954 0.292869 0.417175 -0.146418 0.013890 0.635365 0.584340 0.476220 -0.650929 -GTATA -0.836894 -0.327158 -0.077813 1.909096 0.347199 -0.098738 0.463298 -0.176394 0.254517 0.485378 -0.625076 0.037396 -AGGTA -1.215094 -0.689018 -0.171192 1.106305 -0.028085 -0.453577 0.305611 -0.037806 -0.410594 0.438336 -0.174632 -0.081004 -GCATA -0.279814 -0.657671 -0.259797 1.107671 0.286028 -0.759903 -0.268150 -1.013745 0.360703 -0.014924 -0.344031 -0.096558 -TGTAC -0.783629 -0.792072 0.053323 1.445971 0.177045 0.760873 -0.017232 -0.328435 0.734070 0.159907 0.016223 -0.018598 -CAACC 0.610877 -1.237830 -0.963817 0.739098 -0.445271 -0.209927 -0.188334 -0.203181 0.148353 0.219843 1.287943 0.077250 -CTATA 0.275707 -0.040581 -0.545368 1.794276 0.447935 0.167422 0.072482 -0.542813 0.259388 0.621646 -0.133381 -0.837333 -TTAGG -1.173868 -0.492403 -0.864919 0.774147 -0.011793 0.118256 0.482008 0.077474 -0.471053 0.299770 -0.952315 -0.434505 -GTCTA -0.648868 0.351727 -0.358697 1.041348 0.096960 0.224751 0.803008 -0.855875 -0.162279 0.560798 0.390859 -0.414566 -TCGT -0.842925 -0.126354 -0.780483 0.492958 0.063213 0.470546 0.651049 -0.648306 -0.044714 -0.041471 0.473260 0.159004 -TTAGC -0.647642 -0.155500 -0.857959 0.771896 -0.255098 -0.042773 0.250319 -0.431613 0.007368 0.549384 -0.411403 -0.694993 -TAAGG -0.625021 -0.790239 -0.347278 0.952873 0.034118 -0.684276 0.738125 0.095287 -0.435246 0.350973 -0.437358 -0.443665 -GGGAT -0.762194 -0.743875 -0.468974 0.916001 0.462697 -0.460205 0.325809 -0.201867 -0.411866 -0.743267 -0.504582 -0.070299 -GTACA -0.873993 -1.224583 0.144360 1.160921 0.039781 0.215068 -0.292599 -0.472112 0.261618 0.569777 -0.156052 0.228635 -GATCC -0.072677 0.047054 -0.831173 0.954065 -0.006027 -0.495309 0.195272 -0.289494 -0.384559 -0.627776 0.568412 0.337901 -GACCT -0.105903 -0.424872 -0.686133 0.870457 -0.192506 0.230428 -0.190770 -0.061366 -0.200427 -0.495160 0.779028 -0.622841 -TGCTA -0.327100 0.096408 -0.537213 1.107276 0.221350 0.275249 0.338986 -0.654732 0.348733 -0.277602 -0.102802 -0.952185 -GCGT -1.053368 -0.539496 -0.404069 0.336843 -0.253780 0.009928 0.269324 -0.703024 -0.050541 -0.451157 0.469754 -0.156228 -TTGCC -0.376462 -0.223419 -1.123573 0.612238 0.021048 0.437573 0.492655 -0.364660 0.790551 -0.900525 0.504246 -0.101704 -CGGC -0.766476 -0.843445 -1.000827 0.258945 -0.213522 -0.228783 -0.212354 -0.644228 -0.108496 -0.833015 0.727058 -0.480088 -GGTTC -1.250445 -0.575823 -0.945290 0.005134 0.077148 0.332598 0.784735 -0.389318 -0.475839 -0.133303 0.370492 0.092618 -TATAG -0.827663 -0.010280 -0.467629 1.896197 0.002130 -0.400357 0.326372 -0.295705 -0.219755 0.524155 -0.885282 -0.110528 -GGATC -0.392076 -0.335815 -0.642456 0.699520 0.462366 -0.572440 0.404536 -0.580310 -0.587011 -0.731570 0.067470 0.121087 -CAGTA -0.895578 -0.607840 -0.147234 1.068882 -0.486604 -0.124083 -0.010077 -0.403224 -0.059559 0.893114 0.129314 0.371406 -GGGCT -1.166725 -0.813633 -1.036268 0.160151 0.042051 -0.127091 0.118045 -0.570967 -0.547367 -0.906634 0.244531 -0.822530 -CCCCC -0.130511 -0.654473 -1.505783 0.823267 -0.622438 0.015406 -0.080185 -0.134317 0.330916 -0.132890 1.670122 -0.068293 -GTGGT -1.752522 -0.798113 0.141511 0.928371 0.131784 0.280556 0.950890 -0.505302 0.170291 -0.657915 0.112153 0.033407 -AGGGT -1.363854 -1.192329 -0.276799 0.500050 -0.173057 -0.300190 0.575294 -0.135197 -0.689228 -0.480660 -0.155926 -0.132419 -GTCAC -0.642843 -0.823413 -0.279189 0.422137 -0.121903 0.490171 0.126536 -1.139174 0.132385 0.022491 0.665227 0.578014 -CTTAG -0.567366 -0.015848 -1.002660 0.734826 -0.278548 0.363064 0.213416 -0.260447 -0.456804 0.596590 -0.146376 -0.622432 -GCGG -1.052272 -1.045695 -0.632068 0.373385 -0.189068 -0.415494 -0.012286 -0.490844 -0.143604 -0.959017 0.458522 -0.438133 -ACGC -0.099008 -1.043283 -0.635113 0.422858 -0.389538 -0.079602 -0.431146 -0.747681 -0.073542 -0.398484 0.791724 -0.194329 -ATACC 0.174405 -0.506005 -0.774351 1.620989 0.094462 -0.141526 -0.500679 0.006812 0.441455 0.324862 0.419541 0.010968 -GCAAC 0.311609 -1.550064 -0.397455 0.454522 -0.432119 0.017344 -0.127104 -0.661929 0.236758 -0.115729 0.629314 -0.445497 -GCCAT -0.181060 -0.346092 -0.864822 0.948515 0.162602 -0.362587 -0.125299 -0.572016 0.656320 -0.628717 0.615345 0.310265 -ATGAC 0.428346 -0.787603 -0.119251 1.474985 -0.085190 0.170422 -0.224265 -0.491481 0.124991 -0.429951 0.045621 0.002080 -GATCT 0.079026 0.356813 -0.637369 0.872626 0.237810 -0.109576 0.788133 -1.032368 -0.556761 -0.261851 0.162184 -0.170312 -CTATC 0.308565 0.314127 -1.074367 1.188266 0.481243 0.114435 0.312841 -0.973747 0.075972 0.477969 0.540386 -0.437226 -CCTTA -0.194363 0.012004 -1.395182 1.024070 0.111947 0.215178 0.109305 0.007005 0.356915 0.648740 0.311187 -0.667248 -AGGGC -0.952125 -1.056840 -0.876524 0.253724 -0.346319 -0.434758 -0.066734 -0.429322 -0.644728 -0.795126 0.325593 -0.393856 -GTAGT -1.399258 -0.115130 -0.056354 1.208261 -0.257262 0.025136 0.810305 -0.251734 -0.172606 0.235274 -0.068913 0.034104 -CCAAC 0.483961 -1.283948 -0.994593 0.761738 -0.503504 0.026768 -0.284590 -0.245498 0.345330 0.215037 1.169996 0.033549 -TGCCC -0.455449 -0.318024 -1.189666 0.762420 -0.206260 0.235028 0.065222 -0.441951 0.534430 -1.031760 1.264105 -0.315685 -GCTAT -0.456989 0.019016 -0.653950 1.113193 0.565802 -0.107190 0.295023 -0.709469 0.411037 -0.084314 -0.251570 -0.991138 -CCTAA 0.308887 -0.067747 -0.844839 1.292726 -0.123978 -0.195911 0.498875 0.140250 0.303920 0.648975 0.815489 -0.599650 -CCCCT -0.356033 -0.140336 -1.470172 0.691627 -0.368165 0.155042 0.118168 -0.242336 0.245182 -0.260125 1.540196 -0.347660 -GGGAC -0.814400 -1.394391 -0.468581 0.652342 -0.135271 -0.003844 -0.374418 -0.093040 -0.566703 -0.699783 0.078569 -0.522963 -TAGTC -0.777506 0.084681 -0.573310 0.845781 -0.133328 -0.219521 0.574860 -0.506464 -0.119442 0.742765 0.380991 0.095194 -GACTA 0.015840 -0.707326 -0.327975 1.202009 -0.090718 -0.049412 0.023972 -0.212766 -0.624275 0.306594 -0.133174 -0.905241 -GAGTA -1.018214 -0.562079 -0.013569 1.417739 -0.375243 -0.415709 0.457060 0.029740 -0.661246 0.233790 -0.355963 -0.055821 -GTGCC -0.948154 -0.388169 -0.501265 0.714839 -0.159842 0.095865 0.303119 -0.478308 0.512257 -0.903726 1.091400 -0.272076 -TACTC 0.040526 -0.259213 -1.046409 0.773285 0.151863 0.489357 0.002615 -0.846634 -0.019283 0.812974 0.425098 -0.633595 -CTAGT -1.021421 0.086793 -0.538353 0.840474 -0.283585 0.202357 0.445371 -0.342844 -0.250983 0.618874 0.332535 -0.422057 -GTATG -0.913017 -0.390965 0.167023 1.471225 0.347760 -0.016678 0.658518 -0.367374 0.302833 -0.297901 -0.314526 -0.021061 -CAAGC 0.167678 -1.084150 -0.757156 0.366086 -0.550133 -0.817538 -0.084521 -0.774361 -0.332770 0.221890 0.821531 -0.295780 -CCTAG -0.759995 0.157217 -0.907175 1.077390 -0.315782 -0.430214 -0.197845 -0.105973 -0.278213 0.130667 0.753296 -0.586177 -GATAC 0.033856 -0.605349 -0.509979 1.460932 0.144987 -0.327831 -0.463703 -0.270811 -0.392325 0.217504 -0.316254 -0.186919 -GTTGT -1.346503 -0.374441 -0.217783 1.012774 -0.108255 0.716044 1.205071 -0.226063 0.308392 -0.320457 0.000338 0.234127 -ACTCG -0.021615 -0.884053 -0.695059 0.908407 -0.251078 0.079765 0.112050 -0.453518 -0.747210 -0.504020 0.477220 -0.517519 -CGCA -0.261433 -0.905913 -0.475104 0.456032 -0.346727 -0.295638 -0.251201 -0.869247 -0.070498 -0.419526 0.360276 0.112266 -TGCG -0.758524 -0.481350 -0.380906 0.529867 -0.158580 0.223187 0.176931 -0.739664 0.143811 -0.918459 0.400471 -0.323977 -CCTAT -0.174000 0.160090 -0.906220 1.267337 0.334320 0.037062 0.083348 -0.224899 0.444897 -0.005348 0.388476 -0.574982 -GGGGG -1.511150 -1.412910 -0.629891 0.500493 -0.108373 -0.311956 0.463441 -0.272290 -0.702817 -1.012081 0.046982 -0.388344 -CACTA 0.327654 -0.592233 -0.710533 1.059768 0.007629 0.196310 -0.354191 -0.675333 0.172752 0.760967 0.270263 -0.466483 -GACG -0.441350 -1.016478 -0.427385 0.590521 -0.308132 -0.012015 -0.161691 -0.364642 -0.444954 -0.544045 0.320730 -0.272302 -GGTAA -0.888651 -1.076834 0.270660 1.113908 0.048640 -0.337417 0.813221 0.086474 -0.034585 0.133175 -0.252892 -0.199170 -TATGC -0.085501 -0.308444 -0.339417 1.244274 0.330628 -0.201757 0.122791 -0.743868 0.770966 -0.392376 -0.023457 -0.247887 -GGTAG -1.647704 -0.575099 -0.246248 0.981507 -0.072389 -0.352717 0.335975 -0.085949 -0.490418 -0.166217 -0.229085 -0.249944 -GCATC 0.120230 -0.457610 -0.705523 0.504662 0.197181 -0.415850 0.163687 -1.395325 0.156333 -0.435880 0.550041 0.042635 -GCTAA 0.090064 -0.337179 -0.353746 0.922159 -0.064879 -0.336302 0.483080 -0.399658 -0.048433 0.412009 0.215299 -1.102975 -GTCAA -0.089957 -0.918324 -0.334561 0.257933 -0.207590 -0.179930 1.157069 -0.575610 -0.248850 0.337573 0.639846 0.522463 -GCCTA -0.491077 -0.002718 -0.674980 0.873593 -0.011359 -0.321954 0.000575 -0.224719 0.115852 -0.046968 0.717404 -0.824956 -GGTCA -1.006838 -0.971731 -0.585819 0.038627 -0.037562 -0.113068 0.622501 -0.799810 -0.551898 -0.148901 0.208393 0.526546 -GTTAC -0.850532 -0.600879 -0.383593 1.114362 0.113186 0.884135 0.212887 -0.299071 0.404628 0.626359 -0.089766 -0.094402 -GTAAC -0.404457 -0.864489 0.127824 1.385920 -0.433674 0.243107 0.335283 -0.153888 0.176413 0.880534 0.142960 -0.114894 -GATGC -0.306733 -0.281503 -0.305134 0.972839 -0.015972 -0.438265 0.103352 -0.847143 0.002690 -1.005814 0.190497 -0.317229 -TAGGC -0.701847 -0.526307 -0.533386 0.638771 -0.059152 -0.493565 -0.132948 -0.390093 -0.213661 -0.079189 -0.075506 -0.491612 -ACCTA 0.150446 -0.442507 -0.589389 1.380629 -0.180652 -0.044853 -0.274872 -0.042028 0.253086 0.628739 0.648060 -0.656525 -GCGC -0.568048 -0.583807 -0.784887 0.350740 -0.255173 -0.126428 -0.057539 -0.643572 0.018401 -0.681175 0.680931 -0.434453 -TGATC 0.031735 0.244094 -0.562034 1.093550 0.130059 0.085450 0.618572 -0.760011 -0.102498 -0.588083 0.313246 0.256304 -TAGGT -1.270698 -0.350657 -0.428695 0.920042 0.075888 -0.113847 0.560057 -0.173841 -0.188922 0.223043 -0.411672 -0.002725 -CTTAC -0.012619 -0.643602 -1.072504 0.978063 0.167046 0.946646 -0.186954 -0.456780 0.259569 0.735009 0.180938 -0.528547 -CGATT -0.086424 -0.230728 -1.338960 0.905650 0.195939 0.175963 0.596090 -0.530799 -0.198198 -0.194475 0.072084 0.282792 -TCGAT -0.076594 -0.148487 -1.296178 0.837071 0.300634 0.106963 0.421737 -0.590391 -0.173893 -0.225826 0.172879 0.249144 -GTAGG -1.429170 -0.791061 -0.166964 0.883351 0.044556 -0.431162 0.403738 0.033930 -0.425992 -0.074607 -0.130015 -0.329506 -AGGTC -0.935570 -0.492301 -0.578635 0.255938 -0.087145 -0.294864 0.473366 -0.566837 -0.711492 0.047098 0.281056 0.032682 -GGCAC -0.503778 -1.470535 -0.503852 0.265401 -0.151554 0.077463 -0.445319 -0.791570 -0.086293 -0.547204 0.366369 -0.357590 -TAAGC -0.106243 -0.441545 -0.652136 0.826925 -0.091342 -0.755554 0.296068 -0.343811 -0.278275 0.551028 0.152893 -0.778799 -GGCTA -0.605000 -0.477514 -0.520726 0.745834 0.221728 -0.128469 -0.043362 -0.522086 -0.095043 -0.226856 -0.003073 -1.023118 -GGGGC -1.253998 -1.167142 -0.757279 0.279373 -0.106999 -0.261417 0.132900 -0.446682 -0.424117 -1.040117 0.310955 -0.443714 -ACTAC 0.192868 -0.819373 -0.559247 1.220707 -0.064672 0.431969 -0.430386 -0.386985 0.085871 0.767824 0.308790 -0.872820 -GCTTA -0.514247 -0.340066 -0.769918 0.752776 0.059950 0.178564 0.421881 -0.377570 0.307114 0.139027 -0.367415 -0.864020 -GGTAT -1.067881 -0.337929 -0.334545 1.284292 0.515536 -0.050704 0.560407 -0.239733 0.130648 -0.130542 -0.500126 0.062102 -GTAAG -0.789026 -0.592749 0.157775 1.182458 -0.275541 -0.286673 0.884161 -0.084665 -0.371372 0.409578 -0.091736 -0.204216 -ATAGC -0.172113 -0.333607 -0.496989 1.173573 0.055224 -0.777220 -0.042218 -0.645358 -0.192362 0.185538 -0.148941 -0.375868 -GTCCC -0.810283 -0.164184 -0.973098 0.680144 -0.336171 0.069539 0.396677 -0.200421 0.208923 -0.207119 1.344657 0.268434 -GTAGC -1.207947 -0.208023 -0.254969 0.840482 -0.166144 -0.289065 0.153028 -0.495056 -0.151388 0.003450 0.292274 -0.600046 -CTAAC 0.429600 -0.771829 -0.542444 1.019381 -0.253879 0.400829 -0.004188 -0.434466 0.221538 0.673858 0.453879 -0.744482 -TAGGG -1.286687 -0.871674 -0.460516 0.671111 0.026078 -0.373768 0.326092 0.020929 -0.460159 -0.085010 -0.285680 -0.439539 -CTACC 0.013374 -0.159277 -1.043742 1.213625 0.036030 0.330907 -0.294627 -0.351221 0.406874 0.502144 0.901803 -0.495215 -CTAGG -0.783355 -0.353651 -0.601972 0.642503 -0.005496 -0.127079 0.035876 -0.168556 -0.571983 0.079881 0.133429 -0.773136 -GGGCC -1.027024 -1.119186 -0.941740 0.320329 -0.201726 -0.414971 -0.202327 -0.333942 -0.180323 -0.972067 0.850283 -0.426167 -GGACC -0.393993 -0.993419 -0.506955 0.789611 -0.183385 -0.226234 -0.405541 -0.054193 -0.234475 -0.592631 0.672148 -0.282344 -TCGC -0.319218 -0.325660 -0.844172 0.363173 -0.054280 -0.028503 0.185196 -0.782920 0.003522 -0.425826 0.576831 -0.345078 -GCACC -0.282883 -1.041841 -0.708712 0.550624 -0.300565 -0.148153 -0.480194 -0.617078 0.248663 -0.293982 1.149351 -0.289367 -CCTAC -0.199424 -0.283430 -1.106156 1.038898 -0.012148 0.114063 -0.521600 -0.289796 0.424213 0.389345 0.937090 -0.572866 -AAACG 0.072829 -1.380047 -0.237226 0.797319 -0.408421 -0.339174 0.355842 0.022808 -0.329388 -0.076242 0.286411 -0.244245 -GTTGC -0.926230 -0.357312 -0.449725 0.493887 -0.093518 0.462110 0.782828 -0.672504 0.284371 -0.767031 0.163471 -0.273015 -GGGTC -1.247936 -0.618028 -0.682925 0.193747 0.153944 0.152602 0.654966 -0.526593 -0.486484 -0.659995 0.520846 0.009731 -ACGGA -0.273857 -1.103841 -0.367101 0.783272 -0.365586 -0.290369 0.096025 -0.070206 -0.513375 -0.410419 0.185385 -0.136720 -CGGT -1.140708 -0.633247 -0.427353 0.442389 -0.110015 0.074489 0.222283 -0.388729 -0.058291 -0.453630 0.369481 -0.100225 -TTACC -0.203104 -0.373380 -1.112447 1.130777 0.089670 0.594548 -0.151965 -0.065474 0.494756 0.435335 0.310413 -0.132686 -GGTTG -1.352546 -0.677329 -0.387213 0.538478 -0.118193 0.334822 0.990577 -0.270109 -0.310158 -0.831364 -0.131423 -0.070000 -CGCG -0.700150 -0.861808 -0.675985 0.458603 -0.240535 -0.125051 -0.098586 -0.523563 -0.103982 -0.797024 0.729324 -0.290613 -GGCCC -0.641056 -0.720031 -0.964607 0.532374 -0.237140 -0.219688 -0.164855 -0.244831 0.042221 -0.768905 1.163453 -0.223204 -GGTGC -1.191547 -0.932504 -0.317601 0.493087 -0.141554 -0.104121 0.195190 -0.590336 -0.043182 -0.891308 0.328683 -0.301506 -TAGCC -0.601893 -0.057910 -0.839010 0.908572 -0.106936 -0.455558 -0.163809 -0.185867 0.154558 0.023801 0.561576 -0.484584 -TCACG -0.331694 -0.756158 -0.611528 0.382169 -0.060906 0.240165 -0.048151 -0.978595 -0.151751 -0.119307 0.524874 0.004476 -GTTAG -1.211526 -0.245601 -0.362296 1.016249 -0.304541 0.045837 0.701337 -0.129555 -0.251028 0.427330 -0.259695 -0.000441 -CGGAA -0.193777 -1.109334 -0.375152 0.801438 -0.275697 -0.409404 0.437466 0.029565 -0.390232 -0.349916 0.233074 -0.156516 -GCCCC -0.543179 -0.536612 -1.114306 0.667932 -0.481622 -0.266310 -0.258603 -0.238947 0.202117 -0.581706 1.575316 -0.320104 -TCGAG -0.400636 -0.214896 -0.839600 0.727111 -0.267275 -0.129320 0.353460 -0.501178 -0.597706 -0.087421 0.352267 0.249841 -AACGG -0.229920 -1.198721 -0.362757 0.744683 -0.285831 -0.232610 0.180440 -0.093999 -0.414665 -0.319347 0.153013 -0.206474 -GGTCC -1.029087 -0.401944 -0.878039 0.306388 -0.020188 0.282316 0.536416 -0.267302 -0.150312 -0.551952 0.866736 0.116088 -GAACG -0.188986 -1.106388 -0.276724 0.881456 -0.475167 -0.340324 0.150064 -0.034145 -0.479223 -0.312507 0.168404 -0.240975 -CCCTA -0.062157 -0.121319 -1.101618 1.091502 -0.182320 -0.104856 -0.127645 -0.020292 0.309634 0.413395 0.865699 -0.573650 -AGTAC -0.681305 -0.710719 -0.202419 1.091855 -0.239656 -0.004369 -0.046954 -0.067777 -0.111452 0.711158 0.071853 -0.026318 -TAACC 0.400545 -0.607713 -0.675800 1.387002 -0.161264 -0.151748 0.025016 0.177150 0.461740 0.611894 0.605894 -0.181712 -GGGTA -1.329334 -0.849705 -0.152728 0.943814 0.138591 -0.271005 0.362596 -0.056568 -0.230316 -0.265998 -0.312831 -0.150704 -GTATC -0.452514 0.001361 -0.250960 1.143183 0.413589 -0.039476 0.447791 -0.663490 0.149985 0.022048 0.175171 0.150709 -TACCC -0.133141 -0.431599 -0.945203 1.276265 -0.014671 0.001568 -0.308156 0.015174 0.610404 0.445626 0.781542 -0.122414 -CGAAA 0.102822 -0.992728 -0.455612 0.717579 -0.382381 -0.497190 0.434715 -0.020288 -0.373273 -0.018840 0.407733 -0.194739 -CTAGC -0.295030 -0.115588 -0.777854 0.700932 -0.167783 -0.222328 -0.068082 -0.680382 -0.261413 0.304389 0.488086 -0.800260 -GGTTA -1.063436 -0.543723 -0.405846 0.869414 0.115840 0.277529 0.597117 -0.094302 -0.049425 0.221094 -0.442276 -0.171734 -GTACT -0.547393 -0.443837 -0.330419 1.006660 -0.009204 0.602387 0.155667 -0.323536 0.209008 0.260433 0.123488 -0.398673 -TACG -0.368413 -0.605276 -0.338741 0.897797 0.028411 0.036714 0.046810 -0.235390 0.128427 0.112522 -0.029195 -0.157940 -GTCG -0.724763 -0.477590 -0.463750 0.585480 -0.195914 -0.108756 0.394619 -0.450790 -0.358102 -0.363147 0.413264 0.048780 -CCCCG -0.375266 -0.573682 -1.233529 0.635793 -0.404026 -0.045286 -0.115574 -0.244039 0.131680 -0.488027 1.352546 -0.171418 -CACGT -0.520192 -0.790287 -0.443412 0.527398 -0.325077 0.329281 -0.083708 -0.783537 0.166098 -0.060181 0.456837 0.060547 -CGAGT -0.589556 -0.319755 -0.582026 0.784610 -0.318111 -0.052504 0.441998 -0.430102 -0.459019 -0.075109 0.436624 0.130173 -CGTA -0.408521 -0.532135 -0.298638 0.901749 -0.104564 0.017570 0.112967 -0.242331 0.078879 0.184698 0.129042 -0.069725 -GCTAC -0.174262 -0.508808 -0.657724 0.873402 -0.062157 0.032478 -0.251073 -0.616789 0.032184 0.339855 0.381037 -0.734582 -TCCGT -0.536947 -0.321903 -0.954732 0.446924 -0.117954 0.303076 0.404911 -0.423617 0.049534 -0.067890 0.690258 0.104640 -GCTAG -0.804189 -0.093107 -0.493666 0.834158 -0.285267 -0.510244 0.185819 -0.595046 -0.522343 -0.008508 0.044244 -0.852153 -TTCCG -0.511965 -0.270216 -1.180581 0.459000 -0.133351 0.370074 0.438129 -0.286542 -0.021052 -0.081989 0.439939 0.104487 -CGGAG -0.719178 -0.939722 -0.484738 0.550398 -0.346917 -0.285305 -0.021201 -0.317161 -0.636255 -0.564429 0.216419 -0.260795 -AACGA 0.149778 -1.069527 -0.359851 0.882328 -0.426000 -0.338530 0.152856 -0.122873 -0.425076 -0.082954 0.198139 -0.181903 -CGTGG -0.873154 -0.979990 -0.335730 0.478329 -0.196557 -0.036425 0.116799 -0.270355 -0.113384 -0.674938 0.422740 -0.180763 -GTACC -0.607947 -0.471478 -0.343051 1.029783 -0.159998 0.093809 -0.145651 -0.052249 0.118954 0.182023 0.612431 -0.103676 -TTTCG -0.231938 -0.289031 -0.967404 0.512151 -0.032645 0.333852 0.610534 -0.394823 0.023959 0.016481 0.082527 -0.047843 -CCTCG -0.377913 -0.252912 -0.947920 0.493249 -0.136534 -0.052474 0.143583 -0.480184 -0.242457 -0.453040 0.845000 -0.391427 -CGTGA -0.521036 -0.686320 -0.183936 0.716711 -0.484820 -0.027326 0.115270 -0.565061 -0.262784 -0.557440 0.420688 -0.097739 -CACGC -0.127388 -0.980128 -0.671412 0.475919 -0.383216 -0.075794 -0.336366 -0.787249 0.014089 -0.174688 0.685969 -0.107888 -ACGAA 0.205398 -1.055826 -0.300626 0.888046 -0.326606 -0.302242 0.201296 -0.097452 -0.356158 0.021863 0.222277 -0.195192 -ACGTG -0.585974 -0.847456 -0.217989 0.609915 -0.265743 0.274918 0.054310 -0.604133 0.058043 -0.299446 0.413109 -0.001336 -CCCGT -0.419841 -0.436764 -0.885970 0.589471 -0.312090 0.189188 0.151307 -0.224743 0.031249 -0.227089 1.024117 -0.056643 -CCGCC -0.345426 -0.434015 -1.204026 0.595684 -0.245033 -0.117360 -0.097869 -0.373252 0.165582 -0.599016 1.346913 -0.273665 -CGACC -0.166326 -0.632692 -0.825299 0.801059 -0.403804 0.062711 -0.313445 -0.167800 -0.079550 -0.333790 0.943130 -0.184030 -TTCGT -0.643166 -0.191774 -0.884835 0.547137 -0.029743 0.388291 0.563181 -0.413282 0.103828 -0.130923 0.172091 0.052708 -CCCGC -0.244432 -0.524302 -1.138211 0.612042 -0.371739 -0.053532 -0.130462 -0.298863 0.213391 -0.400231 1.401134 -0.386383 -CACCG -0.206368 -0.821779 -0.729557 0.454959 -0.358086 0.133321 -0.236557 -0.430161 0.061014 -0.151694 0.860965 -0.070934 -GGCCG -0.797742 -0.815253 -0.739779 0.482782 -0.285686 -0.354930 -0.106343 -0.436871 -0.314524 -0.550706 0.602963 -0.286204 -GGTAC -0.829336 -0.880713 -0.270901 0.823419 0.116432 0.056804 -0.096335 -0.122218 0.006555 0.017807 0.102380 -0.134206 -CCGGG -0.867805 -0.749133 -0.717289 0.374862 -0.108617 -0.127655 0.121524 -0.244151 -0.302449 -0.653319 0.561792 -0.258347 -CCGTT -0.494501 -0.222600 -0.919294 0.530618 -0.194967 0.277630 0.374470 -0.323524 0.043561 -0.110205 0.463619 0.181359 -CGTTT -0.517253 -0.323088 -0.867398 0.469776 -0.082596 0.519946 0.657605 -0.378574 0.061220 0.004971 0.109022 0.134902 -CGTCT -0.480298 -0.157736 -0.622934 0.416529 -0.087258 0.357001 0.544606 -0.836662 -0.158761 -0.066779 0.717294 -0.183547 -CGCCT -0.429550 -0.292227 -1.062510 0.608611 -0.149747 0.103371 -0.027934 -0.391369 0.055607 -0.484675 1.113053 -0.440792 -CCGTC -0.357375 -0.335956 -0.893649 0.426339 -0.186191 0.172594 0.339778 -0.507567 0.065013 -0.008045 1.048594 0.081269 -ACACG -0.081719 -1.182680 -0.432653 0.670728 -0.231654 0.067067 -0.341269 -0.606723 -0.076468 0.097727 0.304015 -0.040509 -CCACG -0.149409 -0.819499 -0.676335 0.622940 -0.334620 -0.062970 -0.304201 -0.495227 -0.013420 -0.190371 0.762221 -0.059601 -CCGTG -0.588261 -0.695104 -0.439736 0.552531 -0.250261 0.021377 0.110306 -0.339608 -0.002809 -0.555859 0.663567 -0.098860 -CAGCG -0.512082 -0.844876 -0.436958 0.368685 -0.447656 -0.299540 -0.106542 -0.845080 -0.231326 -0.468797 0.681552 -0.181559 -CGACT -0.201901 -0.543268 -0.713634 0.551645 -0.312790 0.382379 0.017375 -0.502457 -0.233378 -0.286894 0.470475 -0.453402 -CTTCG -0.286357 -0.383937 -0.965047 0.373331 -0.152414 0.197196 0.157872 -0.388389 -0.132482 -0.114664 0.518216 -0.364880 -CGAGA -0.165410 -0.436352 -0.471485 0.801252 -0.330484 -0.243850 -0.021742 -0.421763 -0.643137 -0.229712 0.146589 -0.106799 -GCCGA -0.407111 -0.602637 -0.529294 0.602087 -0.434476 -0.366684 -0.068828 -0.329131 -0.424397 -0.478287 0.541047 -0.365314 -CCGAG -0.399968 -0.438499 -0.558031 0.657959 -0.381229 -0.215392 -0.026804 -0.318095 -0.368507 -0.390165 0.478317 -0.092120 -CACGA -0.122931 -0.905882 -0.503564 0.632138 -0.279625 -0.021412 -0.157577 -0.338502 -0.162197 -0.142467 0.276022 -0.112294 -CGCTT -0.473551 -0.358934 -0.834581 0.441408 -0.202657 0.256149 0.301242 -0.411218 0.003701 -0.308324 0.254918 -0.408152 -CGGAT -0.289932 -0.604723 -0.408101 0.762684 0.015697 -0.197890 0.236037 -0.270392 -0.212218 -0.433359 -0.045932 -0.043860 -CTCGC -0.472592 -0.309421 -0.931825 0.391964 -0.182415 0.086413 0.254330 -0.764379 -0.194554 -0.326012 0.637058 -0.508468 -AACCG -0.070254 -0.932400 -0.342850 0.746811 -0.289201 -0.197483 0.054653 -0.058776 -0.095364 -0.124877 0.419608 -0.225960 -TCCGG -0.677184 -0.497100 -0.766141 0.346089 -0.158717 0.001503 0.347875 -0.157484 -0.232535 -0.372260 0.503631 -0.097252 -ACGTT -0.298152 -0.486043 -0.563967 0.559169 -0.091828 0.435663 0.325300 -0.451966 0.101245 0.064762 0.113744 0.030657 -AGGCG -0.693029 -0.887536 -0.468456 0.473046 -0.314892 -0.366654 0.015299 -0.438797 -0.484534 -0.464563 0.259882 -0.256579 -TCCCG -0.351780 -0.293988 -1.000387 0.492485 -0.184104 0.079477 0.133300 -0.386972 -0.005645 -0.309175 0.873770 -0.130330 -TCGTT -0.518812 -0.230222 -0.835267 0.497064 0.042455 0.418355 0.502562 -0.453511 0.017724 0.003985 0.269426 0.051241 -GCGTG -0.787393 -0.703127 -0.349594 0.503886 -0.107014 0.031416 0.205509 -0.552862 -0.062251 -0.565686 0.422272 -0.095304 -TGCCG -0.523509 -0.406063 -0.605171 0.564071 -0.112236 0.010295 0.179925 -0.520324 0.128643 -0.743783 0.586912 -0.329640 -CACGG -0.358781 -0.860549 -0.579621 0.466104 -0.242156 -0.175153 -0.167504 -0.474892 -0.141570 -0.273364 0.354026 -0.016941 -GGCGG -0.836954 -0.918718 -0.500624 0.420732 -0.135050 -0.250781 0.106635 -0.427398 -0.306385 -0.657943 0.215625 -0.304415 -TCTCG -0.451575 -0.283146 -0.584183 0.403733 0.065349 0.139809 0.502512 -0.670341 -0.193487 -0.198483 0.556544 -0.197696 -CGTTC -0.423946 -0.273342 -0.856143 0.545901 -0.082457 0.229129 0.397699 -0.467744 0.010213 -0.066457 0.416456 0.098559 -CGGTG -0.818737 -0.728966 -0.221138 0.561676 -0.214117 -0.075706 0.277083 -0.332494 -0.104761 -0.623444 0.296884 -0.102865 -CTCGG -0.451754 -0.501510 -0.709068 0.367947 -0.107260 0.018473 0.122404 -0.484472 -0.254195 -0.393008 0.517602 -0.390354 -TGGCG -0.665187 -0.659684 -0.450084 0.447280 -0.043475 0.011956 0.196510 -0.418927 -0.000670 -0.551770 0.334049 -0.257389 -CGATG -0.362892 -0.404994 -0.437503 0.666855 -0.053045 -0.172691 0.209754 -0.525939 0.023969 -0.525281 0.293128 -0.157228 -CTCCG -0.408807 -0.357918 -0.912604 0.476411 -0.258892 0.085532 0.118504 -0.439525 -0.083794 -0.351206 0.852738 -0.269190 -GAGCG -0.543680 -0.584256 -0.417622 0.516684 -0.317377 -0.239642 0.080388 -0.443544 -0.344651 -0.379205 0.219868 -0.202799 -CATCG -0.063246 -0.489738 -0.632789 0.629149 0.000188 -0.085039 0.220922 -0.585589 -0.081607 -0.140393 0.272174 0.038675 -GTCGA -0.382934 -0.452094 -0.376470 0.754287 -0.221703 -0.123545 0.393221 -0.417440 -0.335597 -0.175288 0.344645 -0.046984 -AGCCG -0.474147 -0.483733 -0.525696 0.662010 -0.375254 -0.262476 -0.016008 -0.369004 -0.417538 -0.373559 0.418480 -0.338331 -TCGGC -0.466938 -0.454863 -0.820575 0.290655 -0.010339 0.093387 0.194906 -0.474234 -0.065728 -0.301291 0.438121 -0.323361 -GCGGC -0.648872 -0.717351 -0.649468 0.454086 -0.168109 -0.133933 0.042648 -0.524051 -0.138949 -0.521092 0.351407 -0.287102 -CGCCA -0.214474 -0.622017 -0.715060 0.561129 -0.246632 -0.133836 -0.227705 -0.417287 -0.024690 -0.233869 0.748698 -0.065573 -ACGGG -0.466752 -0.962560 -0.444257 0.552617 -0.148012 -0.121576 0.035144 -0.182743 -0.342718 -0.374328 0.134276 -0.190192 -GCCGC -0.496839 -0.594066 -0.763507 0.530384 -0.244060 -0.058745 -0.051718 -0.450387 0.010869 -0.520913 0.769574 -0.382824 -TCGCT -0.375630 -0.263814 -0.817717 0.399889 -0.061507 0.127424 0.314318 -0.698099 -0.132152 -0.302845 0.528710 -0.483039 -GCCGG -0.751778 -0.774378 -0.539492 0.460410 -0.218413 -0.313424 -0.010063 -0.386277 -0.233104 -0.649928 0.512788 -0.308681 -CGGGT -0.820998 -0.736557 -0.445165 0.439127 -0.028262 0.024860 0.233374 -0.308633 -0.122696 -0.410855 0.389114 -0.106407 -ACCCG -0.201484 -0.727324 -0.628361 0.633656 -0.303473 -0.000396 -0.119276 -0.208138 -0.021043 -0.292065 0.810670 -0.233412 -ACCGT -0.193468 -0.802036 -0.456515 0.650912 -0.178569 0.042936 0.083358 -0.185900 0.009414 -0.016566 0.509371 -0.039892 -AACGT -0.098498 -0.829323 -0.301959 0.651808 -0.259874 0.017177 0.280198 -0.245330 -0.027202 0.071291 0.204441 -0.068710 -CGCTC -0.237850 -0.362871 -0.806219 0.417680 -0.156572 0.105298 0.128349 -0.552845 -0.022362 -0.172157 0.602789 -0.207898 -CGGCT -0.597821 -0.458727 -0.733738 0.345803 -0.090892 0.120735 0.232628 -0.596288 -0.152259 -0.430876 0.368100 -0.516306 -AAGCG -0.107023 -0.725251 -0.339551 0.583578 -0.354191 -0.368159 0.276933 -0.349388 -0.280713 0.077151 0.313137 -0.253413 -ACGCA -0.065004 -0.889227 -0.507359 0.536459 -0.342211 -0.120726 -0.135337 -0.653929 -0.101773 -0.137492 0.382333 -0.107558 -GGCGA -0.576070 -0.773203 -0.448228 0.547380 -0.183657 -0.219968 0.048481 -0.338812 -0.324336 -0.419298 0.183633 -0.261075 -CGTCA -0.277317 -0.475235 -0.739739 0.373455 -0.115517 0.126889 0.289785 -0.703365 -0.073504 0.075245 0.417738 0.178110 -GCACG -0.434685 -0.879033 -0.440400 0.468149 -0.213391 -0.202550 -0.129117 -0.563991 -0.037815 -0.296861 0.387920 -0.221875 -AGTCG -0.527948 -0.482043 -0.460461 0.621831 -0.215525 -0.188825 0.358044 -0.359918 -0.338849 -0.299293 0.320548 -0.046467 -CGCAG -0.460630 -0.809394 -0.548707 0.443045 -0.361781 -0.196276 -0.195451 -0.678124 -0.270389 -0.247754 0.438964 -0.130203 -GGACG -0.415584 -0.783275 -0.422665 0.581951 -0.174896 -0.082147 0.014989 -0.320799 -0.306517 -0.398263 0.212434 -0.092576 -CGGGG -0.914592 -0.827977 -0.486573 0.406177 -0.151291 -0.147256 0.216434 -0.282415 -0.429042 -0.592139 0.291483 -0.301775 -AGCGA -0.341911 -0.656392 -0.462366 0.656375 -0.327727 -0.330030 -0.113359 -0.410396 -0.436376 -0.134014 0.301270 -0.263321 -CCCGG -0.514651 -0.598900 -0.828988 0.493712 -0.175403 -0.071567 -0.129275 -0.257059 -0.011617 -0.360405 0.860788 -0.148468 -TACGT -0.322860 -0.461412 -0.531163 0.740162 -0.029723 0.184191 0.212093 -0.315109 0.112549 0.198279 0.012706 -0.127175 -TGACG -0.370288 -0.485748 -0.360608 0.698843 -0.261336 0.206244 0.177460 -0.346554 -0.213162 -0.284042 0.279599 -0.149088 -CGCAA 0.102098 -0.822021 -0.433089 0.552336 -0.226742 -0.121775 0.168317 -0.464523 -0.095527 -0.027097 0.272132 -0.165823 -GGGCG -0.820353 -0.866756 -0.487652 0.428756 -0.080873 -0.144092 0.138153 -0.389427 -0.259378 -0.586749 0.240294 -0.237797 -GCGAT -0.289120 -0.324762 -0.476519 0.673496 -0.042171 -0.070639 0.296068 -0.356293 -0.136547 -0.205721 0.119970 -0.066805 -CGAAC 0.039353 -0.797154 -0.369228 0.709876 -0.377979 -0.120363 0.147874 -0.279900 -0.256929 -0.086633 0.285723 -0.172980 -TCGGG -0.524786 -0.572979 -0.609160 0.434972 -0.056750 0.068840 0.183531 -0.351442 -0.168098 -0.316283 0.453335 -0.250833 -CGGCC -0.476041 -0.642754 -0.745019 0.440230 -0.230813 -0.155961 0.011777 -0.348004 -0.010666 -0.422632 0.620876 -0.223809 -CCGCT -0.325854 -0.466549 -0.829710 0.478538 -0.165270 0.102004 0.122351 -0.355520 0.049354 -0.324870 0.628762 -0.357981 -ACCGA -0.106413 -0.653308 -0.486087 0.694842 -0.275842 -0.102149 -0.070441 -0.286930 -0.109147 -0.091236 0.427159 -0.098101 -ACGTC -0.245764 -0.579713 -0.554009 0.496065 -0.179395 0.176125 0.232766 -0.548613 -0.136213 0.051879 0.418830 -0.083276 -TCGTG -0.486318 -0.336027 -0.404054 0.643320 -0.097331 0.184259 0.412504 -0.451609 0.007926 -0.187325 0.248747 -0.003926 -CTGCG -0.462734 -0.413082 -0.506776 0.496259 -0.029565 0.043741 0.104200 -0.630981 -0.100978 -0.454367 0.628039 -0.404546 -ATGCG -0.343472 -0.502302 -0.458071 0.585624 -0.040570 -0.101655 0.125397 -0.556467 0.097517 -0.379726 0.257367 -0.024566 -CCGGA -0.436555 -0.574759 -0.550428 0.537936 -0.192829 -0.151823 0.103784 -0.193655 -0.392899 -0.296846 0.362026 -0.176557 -ACCGC -0.241132 -0.620586 -0.608078 0.520657 -0.226606 -0.023836 -0.033685 -0.358251 -0.025987 -0.265500 0.694271 -0.220920 -GACGC -0.222254 -0.568510 -0.538240 0.586999 -0.272968 -0.071521 0.014148 -0.390597 -0.247012 -0.265979 0.468874 -0.193858 -CGTCC -0.413655 -0.393947 -0.746927 0.487635 -0.149193 0.179423 0.288193 -0.407237 0.027138 -0.141794 0.744205 -0.062148 -CCGAC -0.206956 -0.596627 -0.574444 0.668589 -0.358016 0.061100 -0.181831 -0.338690 -0.147103 -0.227192 0.586331 -0.215455 -CGCAT -0.222156 -0.519996 -0.536831 0.614073 0.079099 -0.117892 0.118352 -0.552488 0.141444 -0.379140 0.108631 0.049529 -CGGGA -0.503616 -0.747185 -0.418299 0.590156 -0.083306 -0.154221 0.097930 -0.260557 -0.373248 -0.441265 0.117802 -0.201074 -GCGCT -0.399782 -0.377957 -0.632020 0.472533 -0.139734 0.015527 0.161598 -0.456340 -0.147475 -0.273635 0.363751 -0.366090 -CGCTG -0.386916 -0.479070 -0.451738 0.497235 -0.128430 0.001409 0.163675 -0.572252 -0.209647 -0.494481 0.456245 -0.411336 -TTCGG -0.334295 -0.454279 -0.694869 0.434252 -0.088603 0.232162 0.306453 -0.384733 -0.113634 -0.061941 0.198542 -0.235188 -ACGTA -0.230057 -0.639951 -0.309659 0.829603 -0.076099 0.003958 0.190226 -0.230896 0.046032 0.169321 0.033017 -0.005992 -CGTGT -0.585202 -0.446854 -0.241588 0.706166 -0.080938 0.219999 0.411893 -0.382718 0.128682 -0.141867 0.309192 0.060145 -AGCGC -0.331692 -0.442645 -0.524431 0.475463 -0.226426 -0.164670 0.007598 -0.509975 -0.160724 -0.219240 0.421503 -0.261139 -TCGCA -0.108844 -0.538712 -0.547176 0.492145 -0.132100 -0.057331 0.193284 -0.505977 -0.043940 -0.008726 0.286018 -0.014408 -CCGGC -0.624980 -0.703551 -0.791814 0.358113 -0.155101 -0.168302 -0.023914 -0.427890 -0.116399 -0.497477 0.598436 -0.356566 -CGGCA -0.549784 -0.712728 -0.632042 0.316846 -0.210475 -0.165791 -0.014484 -0.592061 -0.079596 -0.415977 0.340938 -0.196027 -AGACG -0.237824 -0.770035 -0.315898 0.682984 -0.368620 -0.294596 0.004862 -0.316529 -0.499754 -0.162102 0.181643 -0.145873 -ATCGG -0.205183 -0.532325 -0.444740 0.632507 -0.116898 -0.223943 0.363334 -0.266608 -0.232768 -0.179178 0.160390 -0.038234 -TGTCG -0.394660 -0.326422 -0.385729 0.648810 -0.010913 0.087345 0.384130 -0.488847 0.019455 -0.250753 0.343488 -0.022074 -GCGAC -0.276846 -0.787767 -0.546925 0.564363 -0.254891 -0.119595 -0.188500 -0.506448 -0.273106 -0.342379 0.417883 -0.219653 -CGTTG -0.514559 -0.418284 -0.542235 0.507408 -0.096386 0.250994 0.464462 -0.297132 -0.002143 -0.354689 0.127427 -0.028524 -CCCGA -0.199981 -0.526285 -0.609366 0.680859 -0.262893 -0.221363 -0.033971 -0.241492 -0.152580 -0.307536 0.590239 -0.111345 -CTCGT -0.366445 -0.320675 -0.586321 0.483631 -0.101957 0.198749 0.357367 -0.502450 -0.063385 -0.048287 0.441496 -0.080085 -TCGAC -0.124443 -0.449670 -0.652815 0.559104 -0.144946 0.121261 0.166282 -0.423387 -0.190685 -0.080188 0.376097 -0.106939 -ACGCT -0.131364 -0.531940 -0.660891 0.465052 -0.137893 0.166441 0.048176 -0.616965 -0.129943 -0.189144 0.486461 -0.240088 -GCGGG -0.775289 -0.793892 -0.455817 0.390369 -0.082674 -0.164991 0.190708 -0.320110 -0.172838 -0.562905 0.360130 -0.285912 -CGTGC -0.487339 -0.618893 -0.454838 0.471791 -0.276626 0.035122 0.174924 -0.518460 0.113068 -0.372686 0.527474 -0.135066 -ATCCG -0.225181 -0.334098 -0.697559 0.647802 -0.025000 -0.090607 0.129362 -0.312538 -0.139745 -0.150950 0.350897 -0.025859 -CGACA -0.171179 -0.736149 -0.368703 0.671755 -0.314250 -0.081645 -0.100074 -0.381362 -0.216151 -0.085109 0.264272 0.011279 -TGCGT -0.448648 -0.426062 -0.486615 0.493534 -0.148527 0.181927 0.353644 -0.471349 -0.036136 -0.304185 0.337245 -0.214360 -AGCGT -0.547396 -0.558434 -0.445338 0.431446 -0.196502 -0.000196 0.246238 -0.471807 -0.237977 -0.242323 0.318185 -0.137158 -TCGGA -0.136931 -0.545748 -0.366424 0.697801 -0.069058 -0.195543 0.344069 -0.222305 -0.232200 -0.121701 0.022942 -0.019696 -CGTAT -0.330300 -0.413187 -0.375205 0.837034 0.056382 0.008324 0.243181 -0.294948 0.055837 -0.011830 0.037057 -0.100891 -TATCG -0.030397 -0.324937 -0.505290 0.844141 0.087780 -0.206492 0.250227 -0.360220 -0.034874 0.059162 0.075553 -0.000705 -CCGAA -0.039838 -0.616373 -0.446593 0.726173 -0.344115 -0.194678 0.071255 -0.119306 -0.218562 -0.130705 0.463780 -0.162279 -GGCGT -0.692751 -0.663109 -0.376886 0.495399 -0.150556 -0.033506 0.179091 -0.462294 -0.161648 -0.400980 0.383446 -0.136001 -CCGCG -0.445701 -0.563728 -0.660316 0.524868 -0.245792 -0.170549 -0.005687 -0.306010 -0.089015 -0.426736 0.580933 -0.167557 -ACCGG -0.500297 -0.613309 -0.414532 0.582121 -0.159215 0.027882 0.036008 -0.287005 -0.164711 -0.224234 0.350922 -0.127628 -GCGCC -0.458258 -0.503787 -0.659363 0.504774 -0.125089 -0.129464 -0.047900 -0.390018 -0.041555 -0.330261 0.618429 -0.268691 -GCGAG -0.429487 -0.538236 -0.442563 0.557076 -0.239196 -0.169389 0.089661 -0.412147 -0.370539 -0.340398 0.206790 -0.256814 -CGAGG -0.529151 -0.625227 -0.487002 0.527319 -0.231172 -0.265040 0.087981 -0.330248 -0.428651 -0.416714 0.237409 -0.158720 -CGATA -0.202388 -0.270716 -0.476478 0.823153 -0.030098 -0.122800 0.076992 -0.343948 -0.055396 -0.090411 0.090902 -0.034086 -CGCAC -0.146793 -0.811000 -0.574032 0.542049 -0.296246 -0.072195 -0.179313 -0.575347 0.023579 -0.036885 0.450647 -0.089615 -ACGAC 0.013636 -0.600292 -0.558943 0.684728 -0.317206 0.000319 -0.052488 -0.321856 -0.132987 -0.061904 0.453903 -0.154850 -CGGGC -0.628906 -0.710473 -0.599429 0.352253 -0.065310 -0.121376 0.116042 -0.413046 -0.204551 -0.524099 0.416913 -0.290506 -TAACG -0.205286 -0.593172 -0.311684 0.806915 -0.134833 -0.012945 0.252400 -0.239332 -0.035998 0.175860 0.046032 -0.108639 -CGGCG -0.570450 -0.624876 -0.524466 0.477089 -0.175960 -0.086276 0.052300 -0.457448 -0.160185 -0.488376 0.403401 -0.241904 -GCTCG -0.424778 -0.346559 -0.587795 0.506885 -0.156728 -0.038100 0.213100 -0.596222 -0.197716 -0.329253 0.379913 -0.323988 -ATCGC -0.086935 -0.362953 -0.532490 0.623308 -0.047160 -0.112215 0.132953 -0.383721 -0.071413 -0.128753 0.370196 -0.148924 -GCGTC -0.449757 -0.314394 -0.583210 0.427762 -0.099097 0.055907 0.276969 -0.584386 -0.117283 -0.181784 0.493039 -0.193354 -GCGAA -0.145101 -0.736295 -0.370081 0.578694 -0.249691 -0.225724 0.277664 -0.232927 -0.251546 -0.163728 0.296752 -0.170030 -GACCG -0.321978 -0.624212 -0.492239 0.654836 -0.190396 -0.014365 0.011373 -0.260058 -0.193456 -0.324356 0.344492 -0.173260 -ACGCC -0.247960 -0.528749 -0.619486 0.588517 -0.127053 -0.012326 -0.008774 -0.376959 -0.024281 -0.249685 0.480366 -0.243875 -CGAGC -0.304625 -0.483243 -0.521851 0.480970 -0.301243 -0.224238 0.027212 -0.484041 -0.184893 -0.224424 0.474282 -0.212485 -CCGCA -0.271072 -0.519650 -0.540071 0.499525 -0.157119 -0.029133 0.057450 -0.461024 0.023288 -0.187676 0.495086 -0.134637 -ACGAG -0.246347 -0.627337 -0.317545 0.680256 -0.314233 -0.115720 0.069530 -0.282214 -0.310904 -0.135673 0.115775 -0.043477 -TCGTC -0.452266 -0.279708 -0.605305 0.447262 -0.010431 0.148419 0.373534 -0.543568 -0.088910 -0.089723 0.460159 -0.055217 -CAACG -0.152266 -0.699951 -0.439540 0.562573 -0.244537 -0.136161 0.082546 -0.357494 -0.161112 -0.078742 0.346981 -0.066433 -AGCGG -0.489858 -0.640975 -0.465372 0.470190 -0.190990 -0.100803 0.073985 -0.330791 -0.290839 -0.257061 0.314311 -0.183214 -CGTAA -0.151968 -0.543396 -0.236758 0.838595 -0.092529 -0.078159 0.320904 -0.226204 0.042648 0.172675 0.121151 -0.098718 -GCGGA -0.355915 -0.507745 -0.427571 0.549315 -0.082162 -0.238483 0.115367 -0.338415 -0.284694 -0.304129 0.205628 -0.146251 -CGAAG -0.265007 -0.602787 -0.369779 0.525654 -0.298096 -0.253067 0.245993 -0.207375 -0.354787 -0.116810 0.264749 -0.189595 -TTGCG -0.370081 -0.384818 -0.554628 0.552149 -0.072119 0.217068 0.386252 -0.430115 0.017340 -0.175700 0.083546 -0.158808 -GCGCA -0.283215 -0.548327 -0.414151 0.514201 -0.129973 -0.190355 0.084170 -0.500736 -0.029676 -0.257405 0.352888 -0.113105 -ATCGT -0.163909 -0.286558 -0.536350 0.681639 0.065614 0.044971 0.289047 -0.402536 -0.016284 0.026779 0.154998 -0.046284 -GCGGT -0.572750 -0.595085 -0.397541 0.526164 -0.105336 -0.050888 0.183004 -0.339857 -0.121871 -0.216447 0.109514 -0.188267 -TGCGA -0.320173 -0.439298 -0.439605 0.533407 -0.167121 0.055506 0.129666 -0.455497 -0.064979 -0.324903 0.307430 -0.221642 -GACGG -0.384768 -0.671104 -0.388056 0.533526 -0.255000 -0.099066 0.053290 -0.427142 -0.328877 -0.251776 0.203875 -0.139466 -TGCGC -0.365066 -0.443468 -0.487557 0.480764 -0.147466 0.009267 0.142632 -0.513327 -0.026978 -0.279984 0.384722 -0.189068 -GCGTT -0.481588 -0.439378 -0.452654 0.468470 -0.120060 0.117795 0.391710 -0.382168 -0.060303 -0.146511 0.129365 -0.093408 -AACGC -0.068652 -0.630813 -0.408677 0.606049 -0.180178 -0.096160 0.134059 -0.299133 -0.069403 -0.066432 0.287667 -0.182353 -ACGAT -0.128705 -0.430522 -0.376936 0.763564 -0.090634 -0.028745 0.184111 -0.299371 -0.083293 -0.073737 0.074782 -0.003800 -GACGT -0.255488 -0.540996 -0.400066 0.639803 -0.154867 -0.034693 0.208084 -0.396021 -0.180244 -0.085050 0.113966 -0.040065 -CGGTA -0.516894 -0.516273 -0.310716 0.684687 -0.064245 -0.130207 0.204610 -0.313069 -0.099518 -0.061256 0.167653 -0.135116 -GGCGC -0.457896 -0.550814 -0.552023 0.496862 -0.073760 -0.052175 0.133296 -0.368140 -0.106947 -0.300028 0.327231 -0.191664 -CGCGC -0.308852 -0.513625 -0.624583 0.493432 -0.156753 -0.084863 0.038175 -0.380130 -0.035033 -0.332173 0.531959 -0.191982 -ACGGT -0.402440 -0.623446 -0.395231 0.526788 -0.122882 0.068701 0.163061 -0.336590 -0.088629 -0.156998 0.233991 -0.139912 -CGCCC -0.293241 -0.471797 -0.729331 0.587407 -0.167596 -0.056450 -0.016141 -0.365633 0.068527 -0.302596 0.688650 -0.105246 -CTACG -0.280715 -0.428821 -0.401387 0.661560 -0.039642 0.075632 0.205912 -0.322726 -0.122753 0.065898 0.181970 -0.199822 -ACGGC -0.401424 -0.657139 -0.479933 0.542158 -0.156242 -0.051359 0.037696 -0.446217 -0.189606 -0.304853 0.337240 -0.163319 -GACGA -0.189915 -0.590707 -0.360642 0.625276 -0.241461 -0.236704 0.199881 -0.223505 -0.414000 -0.119173 -0.013003 -0.129538 -CGGAC -0.164330 -0.671596 -0.441421 0.578510 -0.199645 0.111430 -0.031580 -0.324589 -0.136593 -0.088614 0.177204 -0.139191 -GTTCG -0.402944 -0.342850 -0.479852 0.514347 -0.154924 0.082607 0.410178 -0.292603 -0.142243 -0.075073 0.169080 -0.020085 -ATACG -0.090094 -0.580180 -0.457058 0.721754 -0.024197 -0.068668 0.138086 -0.322184 -0.032424 0.040156 0.029166 -0.042486 -CGTTA -0.223553 -0.457377 -0.431272 0.720331 -0.086273 0.066946 0.351557 -0.214420 0.015445 0.149532 0.019111 -0.055375 -CCGTA -0.303075 -0.362178 -0.557315 0.619327 -0.056978 0.040030 0.182999 -0.255614 0.024865 0.007383 0.317119 -0.113736 -GCCCG -0.384530 -0.520979 -0.608213 0.541541 -0.158863 -0.045162 0.051376 -0.377724 -0.023441 -0.317445 0.545197 -0.211064 -TACGG -0.370160 -0.504998 -0.388306 0.587421 0.022069 0.027711 0.069857 -0.327986 0.020104 -0.133897 0.105236 -0.114708 -CGTAG -0.476094 -0.346519 -0.366748 0.634262 -0.170504 -0.104015 0.179189 -0.276805 -0.207465 -0.024654 0.170021 -0.197149 -TGCGG -0.398999 -0.504536 -0.432285 0.537358 -0.085261 0.034087 0.226994 -0.367840 -0.108131 -0.356557 0.221077 -0.145243 -TTACG -0.236292 -0.473604 -0.475913 0.631354 -0.088015 0.081631 0.215500 -0.314287 -0.039519 -0.003339 0.074504 -0.119621 -GGTCG -0.574984 -0.524829 -0.377737 0.501951 -0.038983 -0.042634 0.250995 -0.399930 -0.200999 -0.263265 0.210451 -0.073444 -TCGCC -0.185772 -0.409393 -0.594569 0.539231 -0.024437 -0.058715 0.093158 -0.442920 0.033101 -0.126059 0.406434 -0.110027 -TTCGC -0.102819 -0.366246 -0.614786 0.541889 -0.052502 0.048734 0.291639 -0.319630 -0.038650 -0.104914 0.195208 -0.085077 -ACGCG -0.242859 -0.635343 -0.475397 0.479896 -0.165585 -0.047275 0.038539 -0.416084 -0.079165 -0.109469 0.330991 -0.125055 -GATCG -0.226121 -0.456905 -0.399446 0.581662 -0.188968 -0.147126 0.134721 -0.395740 -0.273143 -0.208277 0.140676 -0.094014 -GTCGG -0.508656 -0.494334 -0.365415 0.521685 -0.156713 0.007489 0.220145 -0.371615 -0.182905 -0.167573 0.213623 -0.059781 -CCGGT -0.561139 -0.517116 -0.538092 0.459412 -0.088515 -0.076652 0.236603 -0.248306 -0.110348 -0.331555 0.344215 -0.078907 -CCGAT -0.099588 -0.332917 -0.605246 0.631191 -0.069362 0.070462 0.138640 -0.290114 0.006033 -0.095653 0.243154 -0.017623 -CGCCG -0.344761 -0.526319 -0.593243 0.513440 -0.167029 -0.016897 0.021763 -0.313657 -0.030754 -0.279858 0.500250 -0.160639 -TACGA -0.092660 -0.536912 -0.400560 0.751541 -0.079845 -0.078189 0.120846 -0.305334 -0.040610 0.032943 0.135429 -0.125256 -CGATC -0.108838 -0.251626 -0.593071 0.578051 -0.063068 -0.051605 0.252947 -0.469414 -0.140421 -0.095956 0.415250 -0.067044 -TCGGT -0.369767 -0.407088 -0.509585 0.470972 0.003509 0.125707 0.336480 -0.418337 -0.002470 -0.066973 0.235102 -0.031148 -GTGCG -0.383415 -0.430995 -0.314286 0.501182 -0.129276 -0.027896 0.289689 -0.359260 -0.067150 -0.219632 0.245757 -0.152424 -TCCGA -0.194751 -0.404632 -0.511424 0.545884 -0.088762 0.003023 0.176736 -0.277164 -0.127272 -0.133996 0.324471 -0.057588 -TCGTA -0.283059 -0.312990 -0.478522 0.666979 -0.005333 0.040512 0.291851 -0.348557 -0.025542 0.074121 0.078577 -0.056705 -GTCCG -0.353658 -0.449425 -0.421777 0.576208 -0.189285 0.072155 0.339138 -0.345316 -0.032824 -0.099695 0.296039 0.035040 -TCCGC -0.293458 -0.333518 -0.591953 0.524476 -0.063405 0.087426 0.193304 -0.332580 0.022918 -0.141085 0.417638 -0.133040 -TAGCG -0.407904 -0.396619 -0.404420 0.540912 -0.126083 -0.028343 0.199246 -0.382565 -0.143010 -0.087278 0.249347 -0.198207 -CGGTT -0.384998 -0.407548 -0.563982 0.444301 -0.148289 0.136485 0.306651 -0.321811 -0.081101 -0.130750 0.127250 -0.075119 -TCGCG -0.270429 -0.383314 -0.412022 0.501183 -0.105265 -0.080888 0.198538 -0.404948 0.001442 -0.194031 0.323984 -0.085535 -GTCGT -0.388617 -0.303313 -0.379626 0.499071 -0.072940 0.154594 0.303000 -0.357849 -0.011791 -0.189455 0.238224 -0.042206 -CGCGG -0.366069 -0.512628 -0.505562 0.461765 -0.128645 -0.042312 0.153577 -0.353670 -0.102785 -0.266521 0.333164 -0.188495 -CGCGT -0.374582 -0.462558 -0.315097 0.450726 -0.090603 -0.025118 0.159500 -0.397991 -0.073113 -0.177188 0.309968 -0.012666 -GTCGC -0.314364 -0.365752 -0.471445 0.492944 -0.078124 0.028717 0.219388 -0.412248 -0.124863 -0.208654 0.307030 -0.133129 -CGTAC -0.231989 -0.515924 -0.405067 0.551381 -0.090281 0.049059 -0.003500 -0.369985 0.031692 0.052212 0.189546 -0.123739 -CGCGA -0.263242 -0.464715 -0.458153 0.516283 -0.143764 -0.100829 0.083957 -0.379679 -0.158062 -0.215566 0.210149 -0.140516 -TACGC -0.129164 -0.485399 -0.350983 0.508205 -0.070275 0.000955 0.058663 -0.313882 -0.024150 0.027333 0.213847 -0.124891 -GTACG -0.305750 -0.440867 -0.293031 0.584459 -0.097787 0.021012 0.265455 -0.205004 -0.059021 0.051935 0.123577 -0.093836 -GCCGT -0.344722 -0.386229 -0.381525 0.457609 -0.132258 0.028346 0.227654 -0.227541 -0.039381 -0.099687 0.224988 -0.101407 -CGCTA -0.246201 -0.356035 -0.442264 0.492778 -0.066687 -0.004836 0.059976 -0.301553 -0.064673 -0.107613 0.229363 -0.158818 -CGGTC -0.271231 -0.438458 -0.469102 0.441723 -0.129808 -0.004119 0.153857 -0.351518 -0.078668 -0.149001 0.398349 -0.048920 -GCGTA -0.203792 -0.439294 -0.369355 0.608703 -0.076447 -0.082729 0.174762 -0.280989 -0.067737 0.042281 0.209963 -0.120883 -TACCG -0.215287 -0.437733 -0.418981 0.510446 -0.067884 -0.055887 0.124531 -0.259203 -0.030105 -0.023234 0.248707 -0.111617 -GCGCG -0.302618 -0.398203 -0.370657 0.439582 -0.159366 -0.052303 0.050585 -0.254473 -0.149318 -0.192549 0.211611 -0.169634 -CGACG -0.248661 -0.405836 -0.238310 0.351273 -0.095258 -0.048745 0.067618 -0.228590 -0.108037 -0.171406 0.165582 -0.142754 -CGTCG -0.241605 -0.208876 -0.312065 0.306069 -0.067835 -0.014787 0.115239 -0.239302 -0.015315 -0.055008 0.154019 -0.055982 diff --git a/tmp/dna2vec-20200513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt b/tmp/dna2vec-20200513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt deleted file mode 100644 index 8bad99f..0000000 --- a/tmp/dna2vec-20200513-1211-k3to5-12d-4c-0Mbp-sliding-7Nn.txt +++ /dev/null @@ -1,783 +0,0 @@ -[2020-05-13 12:11:58.407435] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml -[2020-05-13 12:11:58.423391] INFO: Generic: kmer fragmenter: sliding -[2020-05-13 12:11:58.423391] INFO: SeqGenerator: Number of epochs: 1 -[2020-05-13 12:11:58.423391] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 -[2020-05-13 12:11:58.423391] INFO: Learner: Context window half size: 4 -[2020-05-13 12:11:58.423391] INFO: Learner: Use skipgram: 1 -[2020-05-13 12:11:58.424388] INFO: Learner: gensim_iters: 1 -[2020-05-13 12:11:58.424388] INFO: Learner: vec_dim: 12 -[2020-05-13 12:11:58.424388] INFO: gensim.models.word2vec: collecting all words and their counts -[2020-05-13 12:11:58.461290] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-13 12:11:58.461290] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:11:58.461290] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:11:58.473258] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-13 12:11:58.564015] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-13 12:11:58.575984] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-13 12:11:58.616874] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -[2020-05-13 12:11:58.617871] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-13 12:11:58.617871] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-13 12:11:58.643802] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-13 12:11:58.645797] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-13 12:11:58.672725] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-13 12:11:58.673723] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-13 12:11:58.702152] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-13 12:11:58.702152] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-13 12:11:58.726088] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-13 12:11:58.737059] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-13 12:11:58.760995] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-13 12:11:58.760995] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-13 12:11:58.798402] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-13 12:11:58.799400] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-13 12:11:58.823336] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-13 12:11:58.829320] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-13 12:11:58.855251] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-13 12:11:58.864227] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-13 12:11:58.897644] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-13 12:11:58.897644] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-13 12:11:58.915596] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-13 12:11:58.923575] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-13 12:11:58.971448] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-13 12:11:58.972444] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-13 12:11:58.998881] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-13 12:11:59.002871] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-13 12:11:59.025809] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-13 12:11:59.030796] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-13 12:11:59.053734] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-13 12:11:59.054731] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-13 12:11:59.073680] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-13 12:11:59.073680] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-13 12:11:59.090635] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-13 12:11:59.097124] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-13 12:11:59.116072] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-13 12:11:59.124052] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-13 12:11:59.147987] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-13 12:11:59.151977] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-13 12:11:59.180900] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-13 12:11:59.181896] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-13 12:11:59.212814] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-13 12:11:59.213811] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-13 12:11:59.236750] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-13 12:11:59.241737] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-13 12:11:59.260686] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-13 12:11:59.260686] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-13 12:11:59.291603] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-13 12:11:59.292601] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-13 12:11:59.317534] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-13 12:11:59.319529] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-13 12:11:59.341470] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-13 12:11:59.347455] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-13 12:11:59.365414] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-13 12:11:59.365414] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-13 12:11:59.382360] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-13 12:11:59.387348] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-13 12:11:59.412281] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-13 12:11:59.412281] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-13 12:11:59.432227] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-13 12:11:59.437213] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-13 12:11:59.459155] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-13 12:11:59.465140] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-13 12:11:59.483091] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-13 12:11:59.483091] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-13 12:11:59.498051] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-13 12:11:59.506031] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-13 12:11:59.529966] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-13 12:11:59.538943] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-13 12:11:59.559886] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-13 12:11:59.560884] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-13 12:11:59.601774] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-13 12:11:59.602771] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-13 12:11:59.620723] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-13 12:11:59.620723] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-13 12:11:59.644659] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-13 12:11:59.645658] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-13 12:11:59.668595] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-13 12:11:59.674580] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-13 12:11:59.696520] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-13 12:11:59.702505] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-13 12:11:59.724446] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-13 12:11:59.729433] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-13 12:11:59.770323] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-13 12:11:59.771320] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:11:59.771320] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:11:59.772318] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-13 12:11:59.785284] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-13 12:11:59.785284] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-13 12:11:59.806227] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-13 12:11:59.813209] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-13 12:11:59.840136] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-13 12:11:59.844127] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-13 12:11:59.871053] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-13 12:11:59.871053] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-13 12:11:59.891997] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-13 12:11:59.895987] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-13 12:11:59.920921] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-13 12:11:59.923913] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-13 12:11:59.939869] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-13 12:11:59.939869] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-13 12:11:59.961811] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-13 12:11:59.964804] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-13 12:11:59.999709] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-13 12:11:59.999709] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-13 12:12:00.028632] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-13 12:12:00.033620] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-13 12:12:00.065533] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-13 12:12:00.066531] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-13 12:12:00.095453] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-13 12:12:00.095453] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-13 12:12:00.120387] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-13 12:12:00.124377] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-13 12:12:00.159283] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-13 12:12:00.159283] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-13 12:12:00.179230] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-13 12:12:00.187209] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-13 12:12:00.211144] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-13 12:12:00.215135] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-13 12:12:00.247048] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-13 12:12:00.247048] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-13 12:12:00.270984] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-13 12:12:00.277968] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-13 12:12:00.303896] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-13 12:12:00.312873] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-13 12:12:00.346782] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-13 12:12:00.346782] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-13 12:12:00.381688] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-13 12:12:00.381688] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-13 12:12:00.408618] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-13 12:12:00.420586] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-13 12:12:00.439533] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-13 12:12:00.439533] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-13 12:12:00.474442] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-13 12:12:00.474442] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-13 12:12:00.509852] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-13 12:12:00.509852] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-13 12:12:00.539773] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-13 12:12:00.545757] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-13 12:12:00.583655] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-13 12:12:00.591634] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-13 12:12:00.627046] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-13 12:12:00.627046] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-13 12:12:00.649985] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-13 12:12:00.650983] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-13 12:12:00.683894] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-13 12:12:00.683894] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-13 12:12:00.706833] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-13 12:12:00.710823] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-13 12:12:00.736753] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-13 12:12:00.736753] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-13 12:12:00.757697] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-13 12:12:00.763681] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-13 12:12:00.789612] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-13 12:12:00.791607] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-13 12:12:00.817537] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-13 12:12:00.819532] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-13 12:12:00.843467] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-13 12:12:00.847458] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-13 12:12:00.866407] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-13 12:12:00.873389] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-13 12:12:00.902310] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-13 12:12:00.903308] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-13 12:12:00.921259] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-13 12:12:00.921259] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-13 12:12:00.947190] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-13 12:12:00.947190] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-13 12:12:00.965142] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-13 12:12:00.965142] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-13 12:12:00.997057] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-13 12:12:00.997057] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:00.997057] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:00.998054] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-13 12:12:00.998054] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-13 12:12:00.998054] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-13 12:12:01.023985] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-13 12:12:01.027975] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-13 12:12:01.046923] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-13 12:12:01.054902] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-13 12:12:01.083825] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-13 12:12:01.083825] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-13 12:12:01.105766] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-13 12:12:01.110753] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-13 12:12:01.128705] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-13 12:12:01.138679] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-13 12:12:01.162614] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-13 12:12:01.166604] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-13 12:12:01.181563] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-13 12:12:01.182561] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-13 12:12:01.221457] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-13 12:12:01.221457] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:01.221457] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:01.222454] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-13 12:12:01.222454] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-13 12:12:01.230432] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-13 12:12:01.254369] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-13 12:12:01.257361] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-13 12:12:01.282294] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-13 12:12:01.283292] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-13 12:12:01.306230] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-13 12:12:01.312215] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-13 12:12:01.333158] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-13 12:12:01.340140] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-13 12:12:01.359089] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-13 12:12:01.368065] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-13 12:12:01.397985] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-13 12:12:01.398983] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-13 12:12:01.430896] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-13 12:12:01.430896] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-13 12:12:01.463809] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-13 12:12:01.464806] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-13 12:12:01.490736] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-13 12:12:01.492732] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-13 12:12:01.511197] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-13 12:12:01.511197] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-13 12:12:01.527145] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-13 12:12:01.535125] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-13 12:12:01.552078] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-13 12:12:01.552078] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-13 12:12:01.580003] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-13 12:12:01.581001] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-13 12:12:01.608926] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-13 12:12:01.610922] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-13 12:12:01.630869] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-13 12:12:01.638848] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-13 12:12:01.666772] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-13 12:12:01.666772] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-13 12:12:01.705668] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-13 12:12:01.705668] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:01.705668] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:01.706665] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-13 12:12:01.706665] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-13 12:12:01.706665] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-13 12:12:01.747556] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-13 12:12:01.747556] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-13 12:12:01.773486] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-13 12:12:01.778474] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-13 12:12:01.808393] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-13 12:12:01.808393] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-13 12:12:01.829337] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-13 12:12:01.833327] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-13 12:12:01.855267] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-13 12:12:01.860255] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-13 12:12:01.885188] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-13 12:12:01.889179] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-13 12:12:01.912116] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-13 12:12:01.916105] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-13 12:12:01.937049] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-13 12:12:01.944031] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-13 12:12:01.964974] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-13 12:12:01.970958] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-13 12:12:01.987913] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-13 12:12:01.987913] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-13 12:12:02.014350] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-13 12:12:02.014350] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:02.014350] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:02.015347] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-13 12:12:02.015347] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-13 12:12:02.015347] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-13 12:12:02.042276] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-13 12:12:02.042276] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-13 12:12:02.070200] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-13 12:12:02.070200] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-13 12:12:02.091143] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-13 12:12:02.098127] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-13 12:12:02.118577] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-13 12:12:02.122567] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-13 12:12:02.144507] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-13 12:12:02.153484] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-13 12:12:02.176422] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-13 12:12:02.180412] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-13 12:12:02.212326] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-13 12:12:02.212326] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-13 12:12:02.229785] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-13 12:12:02.229785] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-13 12:12:02.259705] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-13 12:12:02.259705] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-13 12:12:02.282645] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-13 12:12:02.283642] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:02.284639] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:02.284639] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-13 12:12:02.285636] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-13 12:12:02.285636] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-13 12:12:02.311567] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-13 12:12:02.311567] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-13 12:12:02.334014] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-13 12:12:02.339999] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-13 12:12:02.359945] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-13 12:12:02.366927] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-13 12:12:02.383880] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-13 12:12:02.383880] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-13 12:12:02.412804] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-13 12:12:02.412804] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-13 12:12:02.435742] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-13 12:12:02.444718] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-13 12:12:02.466659] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-13 12:12:02.471646] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-13 12:12:02.487604] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-13 12:12:02.488600] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-13 12:12:02.505555] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-13 12:12:02.514532] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-13 12:12:02.538468] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-13 12:12:02.541461] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-13 12:12:02.558414] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-13 12:12:02.558414] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-13 12:12:02.580355] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-13 12:12:02.582350] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-13 12:12:02.599305] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-13 12:12:02.599305] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-13 12:12:02.631220] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-13 12:12:02.631220] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-13 12:12:02.649171] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-13 12:12:02.650169] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-13 12:12:02.669118] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-13 12:12:02.669118] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-13 12:12:02.693054] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-13 12:12:02.695049] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-13 12:12:02.717987] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-13 12:12:02.722975] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-13 12:12:02.754889] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-13 12:12:02.754889] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-13 12:12:02.779822] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-13 12:12:02.784809] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-13 12:12:02.809742] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-13 12:12:02.811737] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-13 12:12:02.840660] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-13 12:12:02.840660] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-13 12:12:02.882547] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-13 12:12:02.882547] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:02.883545] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:02.883545] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-13 12:12:02.884542] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-13 12:12:02.893519] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-13 12:12:02.922441] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-13 12:12:02.922441] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-13 12:12:02.945379] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-13 12:12:02.950366] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-13 12:12:02.959342] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-13 12:12:02.964329] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-13 12:12:02.978291] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-13 12:12:02.979289] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-13 12:12:02.984275] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-13 12:12:02.993252] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-13 12:12:03.025166] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-13 12:12:03.026163] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-13 12:12:03.043118] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-13 12:12:03.043118] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-13 12:12:03.070046] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-13 12:12:03.070046] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-13 12:12:03.087000] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-13 12:12:03.087000] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-13 12:12:03.112931] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-13 12:12:03.112931] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-13 12:12:03.134872] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-13 12:12:03.138862] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-13 12:12:03.147838] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-13 12:12:03.152825] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-13 12:12:03.174766] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-13 12:12:03.180750] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-13 12:12:03.204686] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-13 12:12:03.208676] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-13 12:12:03.234113] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-13 12:12:03.236109] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-13 12:12:03.252065] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-13 12:12:03.253063] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-13 12:12:03.276002] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-13 12:12:03.277997] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-13 12:12:03.295948] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-13 12:12:03.295948] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-13 12:12:03.308913] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences -[2020-05-13 12:12:03.308913] INFO: gensim.models.word2vec: Loading a fresh vocabulary -[2020-05-13 12:12:03.310908] INFO: gensim.models.word2vec: effective_min_count=5 retains 1344 unique words (100% of original 1344, drops 0) -[2020-05-13 12:12:03.317890] INFO: gensim.models.word2vec: effective_min_count=5 leaves 607874 word corpus (100% of original 607874, drops 0) -[2020-05-13 12:12:03.349804] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items -[2020-05-13 12:12:03.354792] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words -[2020-05-13 12:12:03.354792] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) -[2020-05-13 12:12:03.357783] INFO: gensim.models.base_any2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes -[2020-05-13 12:12:03.357783] INFO: gensim.models.word2vec: resetting layer weights -[2020-05-13 12:12:03.537302] INFO: gensim.models.base_any2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 window=4 -[2020-05-13 12:12:03.539297] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-13 12:12:03.540295] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:03.549271] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:03.551265] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-13 12:12:03.551265] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-13 12:12:03.551265] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-13 12:12:03.580188] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-13 12:12:03.583180] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-13 12:12:03.608113] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-13 12:12:03.611105] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-13 12:12:03.638033] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-13 12:12:03.640028] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-13 12:12:03.665958] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-13 12:12:03.667954] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-13 12:12:03.687900] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-13 12:12:03.695879] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-13 12:12:03.719814] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-13 12:12:03.729788] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-13 12:12:03.753230] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-13 12:12:03.757220] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-13 12:12:03.771183] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-13 12:12:03.771183] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-13 12:12:03.786143] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-13 12:12:03.787140] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-13 12:12:03.808084] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-13 12:12:03.814069] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-13 12:12:03.835012] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-13 12:12:03.840997] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-13 12:12:03.865466] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-13 12:12:03.868431] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-13 12:12:03.894360] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-13 12:12:03.900345] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-13 12:12:03.930264] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-13 12:12:03.940238] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-13 12:12:03.970664] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-13 12:12:03.974654] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-13 12:12:03.997591] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-13 12:12:03.998589] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-13 12:12:04.035490] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-13 12:12:04.037484] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-13 12:12:04.068921] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-13 12:12:04.071913] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-13 12:12:04.093854] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-13 12:12:04.098841] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-13 12:12:04.129758] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-13 12:12:04.130755] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-13 12:12:04.159679] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-13 12:12:04.160675] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-13 12:12:04.187603] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-13 12:12:04.188602] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-13 12:12:04.205555] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-13 12:12:04.207550] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-13 12:12:04.249438] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-13 12:12:04.249438] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-13 12:12:04.272376] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-13 12:12:04.278361] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-13 12:12:04.303294] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-13 12:12:04.306286] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-13 12:12:04.323240] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-13 12:12:04.324238] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-13 12:12:04.345182] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-13 12:12:04.348174] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-13 12:12:04.368120] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-13 12:12:04.374105] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-13 12:12:04.392056] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-13 12:12:04.393054] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-13 12:12:04.413998] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-13 12:12:04.417988] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-13 12:12:04.436937] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-13 12:12:04.443918] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-13 12:12:04.457880] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-13 12:12:04.459875] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-13 12:12:04.479822] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-13 12:12:04.479822] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-13 12:12:04.498772] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-13 12:12:04.506750] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-13 12:12:04.533678] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-13 12:12:04.535672] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-13 12:12:04.553624] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-13 12:12:04.558611] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 20.11% examples, 105997 words/s, in_qsize 0, out_qsize 0 -[2020-05-13 12:12:04.561603] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-13 12:12:04.578557] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-13 12:12:04.580553] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-13 12:12:04.600499] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-13 12:12:04.600499] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-13 12:12:04.623437] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-13 12:12:04.626430] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-13 12:12:04.640392] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-13 12:12:04.642387] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-13 12:12:04.661336] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-13 12:12:04.661336] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:04.661336] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:04.663331] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-13 12:12:04.663331] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-13 12:12:04.663331] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-13 12:12:04.683277] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-13 12:12:04.688265] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-13 12:12:04.709208] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-13 12:12:04.715193] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-13 12:12:04.736137] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-13 12:12:04.743118] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-13 12:12:04.760072] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-13 12:12:04.762067] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-13 12:12:04.792984] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-13 12:12:04.792984] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-13 12:12:04.807944] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-13 12:12:04.808941] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-13 12:12:04.828888] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-13 12:12:04.834873] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-13 12:12:04.867785] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-13 12:12:04.868782] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-13 12:12:04.886733] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-13 12:12:04.895710] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-13 12:12:04.924633] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-13 12:12:04.924633] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-13 12:12:04.946574] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-13 12:12:04.968024] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-13 12:12:04.989965] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-13 12:12:04.994953] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-13 12:12:05.025869] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-13 12:12:05.027864] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-13 12:12:05.046813] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-13 12:12:05.054792] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-13 12:12:05.074738] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-13 12:12:05.083715] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-13 12:12:05.108648] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-13 12:12:05.110644] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-13 12:12:05.127597] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-13 12:12:05.129592] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-13 12:12:05.155522] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-13 12:12:05.155522] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-13 12:12:05.180455] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-13 12:12:05.181453] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-13 12:12:05.210375] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-13 12:12:05.210375] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-13 12:12:05.229325] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-13 12:12:05.236307] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-13 12:12:05.252264] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-13 12:12:05.252264] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-13 12:12:05.279191] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-13 12:12:05.281186] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-13 12:12:05.310109] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-13 12:12:05.311107] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-13 12:12:05.328061] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-13 12:12:05.330055] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-13 12:12:05.346013] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-13 12:12:05.353992] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-13 12:12:05.381917] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-13 12:12:05.382914] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-13 12:12:05.399869] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-13 12:12:05.399869] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-13 12:12:05.429789] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-13 12:12:05.431784] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-13 12:12:05.454722] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-13 12:12:05.458712] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-13 12:12:05.484150] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-13 12:12:05.486145] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-13 12:12:05.503098] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-13 12:12:05.503098] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-13 12:12:05.528032] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-13 12:12:05.530026] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-13 12:12:05.556954] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-13 12:12:05.556954] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-13 12:12:05.578404] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-13 12:12:05.582394] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-13 12:12:05.605332] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-13 12:12:05.606329] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 43.68% examples, 115255 words/s, in_qsize 0, out_qsize 0 -[2020-05-13 12:12:05.611317] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-13 12:12:05.638244] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-13 12:12:05.640239] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-13 12:12:05.658190] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-13 12:12:05.667672] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-13 12:12:05.681634] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-13 12:12:05.683629] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-13 12:12:05.700584] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-13 12:12:05.708563] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-13 12:12:05.718535] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-13 12:12:05.722525] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:05.722525] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:05.722525] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-13 12:12:05.723522] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-13 12:12:05.723522] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-13 12:12:05.747458] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-13 12:12:05.749453] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-13 12:12:05.770902] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-13 12:12:05.776886] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-13 12:12:05.799824] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-13 12:12:05.805809] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-13 12:12:05.825756] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-13 12:12:05.833734] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-13 12:12:05.850688] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-13 12:12:05.852683] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-13 12:12:05.885102] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-13 12:12:05.886099] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-13 12:12:05.900062] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-13 12:12:05.900062] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-13 12:12:05.922003] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-13 12:12:05.923999] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:05.923999] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:05.924995] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-13 12:12:05.924995] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-13 12:12:05.924995] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-13 12:12:05.946937] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-13 12:12:05.951925] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-13 12:12:05.972867] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-13 12:12:05.978852] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-13 12:12:05.997800] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-13 12:12:06.006777] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-13 12:12:06.029715] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-13 12:12:06.039690] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-13 12:12:06.056644] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-13 12:12:06.056644] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-13 12:12:06.081576] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-13 12:12:06.083572] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-13 12:12:06.109502] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-13 12:12:06.128452] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-13 12:12:06.163358] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-13 12:12:06.165353] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-13 12:12:06.194275] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-13 12:12:06.197268] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-13 12:12:06.220206] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-13 12:12:06.224196] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-13 12:12:06.239155] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-13 12:12:06.239155] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-13 12:12:06.259101] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-13 12:12:06.260099] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-13 12:12:06.285033] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-13 12:12:06.286030] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-13 12:12:06.314952] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-13 12:12:06.314952] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-13 12:12:06.331907] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-13 12:12:06.340883] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-13 12:12:06.368808] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-13 12:12:06.369806] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-13 12:12:06.377784] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-13 12:12:06.381774] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:06.381774] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:06.381774] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-13 12:12:06.382771] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-13 12:12:06.382771] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-13 12:12:06.407704] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-13 12:12:06.409700] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-13 12:12:06.446600] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-13 12:12:06.447597] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-13 12:12:06.474525] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-13 12:12:06.476520] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-13 12:12:06.498462] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-13 12:12:06.500457] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-13 12:12:06.519406] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-13 12:12:06.527385] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-13 12:12:06.549326] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-13 12:12:06.555310] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-13 12:12:06.575257] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-13 12:12:06.583235] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-13 12:12:06.607171] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-13 12:12:06.607171] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 65.52% examples, 116344 words/s, in_qsize 0, out_qsize 0 -[2020-05-13 12:12:06.611160] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-13 12:12:06.631108] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-13 12:12:06.639086] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-13 12:12:06.654046] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-13 12:12:06.655043] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-13 12:12:06.668008] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-13 12:12:06.668008] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:06.668008] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:06.669005] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-13 12:12:06.669005] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-13 12:12:06.669005] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-13 12:12:06.690947] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-13 12:12:06.695934] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-13 12:12:06.723859] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-13 12:12:06.723859] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-13 12:12:06.743805] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-13 12:12:06.750787] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-13 12:12:06.771731] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-13 12:12:06.778713] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-13 12:12:06.797662] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-13 12:12:06.805641] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-13 12:12:06.828579] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-13 12:12:06.833566] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-13 12:12:06.860494] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-13 12:12:06.862488] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-13 12:12:06.879443] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-13 12:12:06.880440] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-13 12:12:06.913352] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-13 12:12:06.914349] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-13 12:12:06.934296] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-13 12:12:06.934296] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:06.934296] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:06.935294] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-13 12:12:06.943273] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-13 12:12:06.944270] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-13 12:12:06.968205] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-13 12:12:06.971198] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-13 12:12:06.988152] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-13 12:12:06.990147] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-13 12:12:07.018072] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-13 12:12:07.019070] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-13 12:12:07.035027] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-13 12:12:07.037022] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-13 12:12:07.062953] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-13 12:12:07.064947] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-13 12:12:07.086888] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-13 12:12:07.090878] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-13 12:12:07.109827] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-13 12:12:07.117806] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-13 12:12:07.131768] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-13 12:12:07.132766] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-13 12:12:07.148722] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-13 12:12:07.149720] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-13 12:12:07.173657] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-13 12:12:07.175650] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-13 12:12:07.191608] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-13 12:12:07.191608] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-13 12:12:07.219533] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-13 12:12:07.221531] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-13 12:12:07.238482] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-13 12:12:07.238482] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-13 12:12:07.267405] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-13 12:12:07.268403] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-13 12:12:07.286860] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-13 12:12:07.291847] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-13 12:12:07.308801] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-13 12:12:07.309799] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-13 12:12:07.337723] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-13 12:12:07.338721] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-13 12:12:07.360663] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-13 12:12:07.368642] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-13 12:12:07.396075] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-13 12:12:07.396075] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-13 12:12:07.421008] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-13 12:12:07.425996] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-13 12:12:07.452923] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-13 12:12:07.453920] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-13 12:12:07.480848] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-13 12:12:07.482843] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-13 12:12:07.485835] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-13 12:12:07.492817] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:07.492817] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:07.493814] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-13 12:12:07.493814] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-13 12:12:07.493814] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-13 12:12:07.522736] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-13 12:12:07.523733] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-13 12:12:07.547670] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-13 12:12:07.549664] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-13 12:12:07.557643] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-13 12:12:07.562630] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-13 12:12:07.577590] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-13 12:12:07.578587] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-13 12:12:07.583573] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-13 12:12:07.590555] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-13 12:12:07.618481] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-13 12:12:07.620474] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-13 12:12:07.636432] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-13 12:12:07.636432] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-13 12:12:07.658373] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 91.38% examples, 116053 words/s, in_qsize 0, out_qsize 0 -[2020-05-13 12:12:07.661365] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-13 12:12:07.663360] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-13 12:12:07.680315] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-13 12:12:07.688294] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-13 12:12:07.714224] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-13 12:12:07.715222] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-13 12:12:07.736165] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-13 12:12:07.743147] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-13 12:12:07.751125] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-13 12:12:07.757110] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-13 12:12:07.778053] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-13 12:12:07.785035] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-13 12:12:07.808971] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-13 12:12:07.812961] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-13 12:12:07.841882] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-13 12:12:07.842880] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-13 12:12:07.859835] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-13 12:12:07.867814] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-13 12:12:07.889754] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-13 12:12:07.896737] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-13 12:12:07.914688] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-13 12:12:07.915685] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-13 12:12:07.936630] DEBUG: gensim.models.base_any2vec: job loop exiting, total 75 jobs -[2020-05-13 12:12:07.939621] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs -[2020-05-13 12:12:07.939621] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs -[2020-05-13 12:12:07.939621] DEBUG: gensim.models.base_any2vec: worker exiting, processed 18 jobs -[2020-05-13 12:12:07.940619] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 3 more threads -[2020-05-13 12:12:07.940619] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 2 more threads -[2020-05-13 12:12:07.940619] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 1 more threads -[2020-05-13 12:12:07.960565] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs -[2020-05-13 12:12:07.965553] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 0 more threads -[2020-05-13 12:12:07.965553] INFO: gensim.models.base_any2vec: EPOCH - 1 : training on 607874 raw words (519076 effective words) took 4.4s, 117270 effective words/s -[2020-05-13 12:12:07.966549] INFO: gensim.models.base_any2vec: training on a 607874 raw words (519076 effective words) took 4.4s, 117221 effective words/s diff --git a/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt b/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt deleted file mode 100644 index d65b1a2..0000000 --- a/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.txt +++ /dev/null @@ -1,789 +0,0 @@ -[2020-05-13 12:12:33.663938] INFO: Generic: ./scripts/train_dna2vec.py -c configs/small_example.yml -[2020-05-13 12:12:33.663938] INFO: Generic: kmer fragmenter: sliding -[2020-05-13 12:12:33.664936] INFO: SeqGenerator: Number of epochs: 1 -[2020-05-13 12:12:33.664936] INFO: Learner: word2vec.FAST_VERSION (should be >= 0): 1 -[2020-05-13 12:12:33.664936] INFO: Learner: Context window half size: 4 -[2020-05-13 12:12:33.664936] INFO: Learner: Use skipgram: 1 -[2020-05-13 12:12:33.664936] INFO: Learner: gensim_iters: 1 -[2020-05-13 12:12:33.664936] INFO: Learner: vec_dim: 12 -[2020-05-13 12:12:33.665933] INFO: gensim.models.word2vec: collecting all words and their counts -[2020-05-13 12:12:33.674911] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-13 12:12:33.674911] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:33.674911] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:33.686877] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-13 12:12:33.690867] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-13 12:12:33.691864] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-13 12:12:33.715800] INFO: gensim.models.word2vec: PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -[2020-05-13 12:12:33.717795] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-13 12:12:33.717795] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-13 12:12:33.747714] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-13 12:12:33.748712] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-13 12:12:33.786610] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-13 12:12:33.786610] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-13 12:12:33.822515] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-13 12:12:33.822515] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-13 12:12:33.847954] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-13 12:12:33.849949] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-13 12:12:33.871890] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-13 12:12:33.875880] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-13 12:12:33.912781] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-13 12:12:33.914776] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-13 12:12:33.930732] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-13 12:12:33.931730] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-13 12:12:33.951677] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-13 12:12:33.951677] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-13 12:12:33.987580] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-13 12:12:33.989576] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-13 12:12:34.016504] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-13 12:12:34.022488] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-13 12:12:34.066370] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-13 12:12:34.066370] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-13 12:12:34.101277] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-13 12:12:34.106264] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-13 12:12:34.131197] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-13 12:12:34.136184] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-13 12:12:34.165105] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-13 12:12:34.174082] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-13 12:12:34.193030] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-13 12:12:34.204002] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-13 12:12:34.220956] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-13 12:12:34.221953] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-13 12:12:34.240902] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-13 12:12:34.248882] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-13 12:12:34.273814] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-13 12:12:34.278802] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-13 12:12:34.310716] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-13 12:12:34.310716] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-13 12:12:34.340636] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-13 12:12:34.341633] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-13 12:12:34.363575] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-13 12:12:34.368562] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-13 12:12:34.387510] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-13 12:12:34.396487] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-13 12:12:34.428402] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-13 12:12:34.428402] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-13 12:12:34.454838] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-13 12:12:34.459825] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-13 12:12:34.481766] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-13 12:12:34.486753] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-13 12:12:34.505702] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-13 12:12:34.514679] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-13 12:12:34.533143] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-13 12:12:34.542111] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-13 12:12:34.560062] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-13 12:12:34.561060] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-13 12:12:34.587988] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-13 12:12:34.588986] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-13 12:12:34.609930] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-13 12:12:34.617909] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-13 12:12:34.638852] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-13 12:12:34.646831] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-13 12:12:34.663785] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-13 12:12:34.663785] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-13 12:12:34.683732] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-13 12:12:34.687722] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-13 12:12:34.708665] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-13 12:12:34.715647] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-13 12:12:34.745566] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-13 12:12:34.745566] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-13 12:12:34.763519] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-13 12:12:34.771498] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-13 12:12:34.789449] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-13 12:12:34.798426] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-13 12:12:34.815380] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-13 12:12:34.816377] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-13 12:12:34.838318] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-13 12:12:34.841311] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-13 12:12:34.860260] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-13 12:12:34.868239] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-13 12:12:34.901151] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-13 12:12:34.904144] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:34.905142] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:34.906138] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-13 12:12:34.907135] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-13 12:12:34.907135] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-13 12:12:34.939049] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-13 12:12:34.939049] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-13 12:12:34.977946] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-13 12:12:34.977946] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-13 12:12:35.012853] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-13 12:12:35.013850] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-13 12:12:35.040778] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-13 12:12:35.049754] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-13 12:12:35.074686] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-13 12:12:35.076682] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-13 12:12:35.092638] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-13 12:12:35.092638] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-13 12:12:35.112585] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-13 12:12:35.118569] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-13 12:12:35.149486] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-13 12:12:35.149486] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-13 12:12:35.167438] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-13 12:12:35.168436] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-13 12:12:35.201348] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-13 12:12:35.201348] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-13 12:12:35.226281] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-13 12:12:35.230270] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-13 12:12:35.251214] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-13 12:12:35.257199] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-13 12:12:35.286121] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-13 12:12:35.286121] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-13 12:12:35.304073] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-13 12:12:35.313050] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-13 12:12:35.335987] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-13 12:12:35.344964] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-13 12:12:35.375881] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-13 12:12:35.376878] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-13 12:12:35.396824] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-13 12:12:35.403807] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-13 12:12:35.424750] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-13 12:12:35.432730] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-13 12:12:35.461651] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-13 12:12:35.461651] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-13 12:12:35.496558] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-13 12:12:35.496558] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-13 12:12:35.516505] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-13 12:12:35.522489] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-13 12:12:35.540441] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-13 12:12:35.548420] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-13 12:12:35.578340] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-13 12:12:35.578340] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-13 12:12:35.611251] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-13 12:12:35.612249] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-13 12:12:35.633192] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-13 12:12:35.640174] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-13 12:12:35.661118] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-13 12:12:35.662115] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-13 12:12:35.697022] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-13 12:12:35.698019] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-13 12:12:35.719960] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-13 12:12:35.723951] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-13 12:12:35.752872] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-13 12:12:35.752872] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-13 12:12:35.778804] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-13 12:12:35.778804] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-13 12:12:35.809720] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-13 12:12:35.809720] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-13 12:12:35.829667] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-13 12:12:35.830665] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-13 12:12:35.857593] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-13 12:12:35.857593] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-13 12:12:35.887513] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-13 12:12:35.888509] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-13 12:12:35.912446] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-13 12:12:35.916436] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-13 12:12:35.938377] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-13 12:12:35.946862] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-13 12:12:35.976781] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-13 12:12:35.977778] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-13 12:12:35.996728] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-13 12:12:35.996728] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-13 12:12:36.012684] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-13 12:12:36.022659] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-13 12:12:36.042604] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-13 12:12:36.049094] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-13 12:12:36.060063] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-13 12:12:36.063056] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:36.063056] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:36.064053] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-13 12:12:36.064053] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-13 12:12:36.064053] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-13 12:12:36.089983] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-13 12:12:36.090981] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-13 12:12:36.108933] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-13 12:12:36.108933] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-13 12:12:36.133866] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-13 12:12:36.133866] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-13 12:12:36.154810] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-13 12:12:36.160795] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-13 12:12:36.178746] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-13 12:12:36.187723] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-13 12:12:36.212655] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-13 12:12:36.216646] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-13 12:12:36.232602] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-13 12:12:36.232602] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-13 12:12:36.254543] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-13 12:12:36.257536] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:36.257536] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:36.258533] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-13 12:12:36.258533] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-13 12:12:36.258533] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-13 12:12:36.281472] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-13 12:12:36.285461] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-13 12:12:36.308399] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-13 12:12:36.312390] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-13 12:12:36.331338] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-13 12:12:36.342309] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-13 12:12:36.365247] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-13 12:12:36.370235] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-13 12:12:36.388186] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-13 12:12:36.393174] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-13 12:12:36.421099] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-13 12:12:36.421099] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-13 12:12:36.452015] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-13 12:12:36.453013] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-13 12:12:36.480938] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-13 12:12:36.481935] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-13 12:12:36.507866] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-13 12:12:36.508863] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-13 12:12:36.531802] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-13 12:12:36.532799] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-13 12:12:36.549754] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-13 12:12:36.551749] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-13 12:12:36.569701] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-13 12:12:36.570698] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-13 12:12:36.597626] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-13 12:12:36.598623] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-13 12:12:36.627545] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-13 12:12:36.627545] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-13 12:12:36.646495] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-13 12:12:36.649487] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-13 12:12:36.677412] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-13 12:12:36.677412] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-13 12:12:36.687386] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-13 12:12:36.687386] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:36.687386] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:36.688383] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-13 12:12:36.688383] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-13 12:12:36.694367] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-13 12:12:36.722293] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-13 12:12:36.722293] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-13 12:12:36.751215] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-13 12:12:36.752212] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-13 12:12:36.781135] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-13 12:12:36.781135] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-13 12:12:36.802079] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-13 12:12:36.802079] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-13 12:12:36.823023] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-13 12:12:36.823023] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-13 12:12:36.846959] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-13 12:12:36.846959] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-13 12:12:36.869897] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-13 12:12:36.869897] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-13 12:12:36.890842] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-13 12:12:36.891839] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-13 12:12:36.911786] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-13 12:12:36.913780] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-13 12:12:36.930735] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-13 12:12:36.930735] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-13 12:12:36.944698] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-13 12:12:36.948687] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:36.948687] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:36.948687] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-13 12:12:36.949685] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-13 12:12:36.955668] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-13 12:12:36.980601] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-13 12:12:36.980601] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-13 12:12:37.011519] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-13 12:12:37.012517] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-13 12:12:37.039444] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-13 12:12:37.040442] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-13 12:12:37.060389] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-13 12:12:37.061386] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-13 12:12:37.082330] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-13 12:12:37.082330] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-13 12:12:37.106265] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-13 12:12:37.107263] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-13 12:12:37.138180] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-13 12:12:37.138180] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-13 12:12:37.156132] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-13 12:12:37.157129] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-13 12:12:37.187049] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-13 12:12:37.187049] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-13 12:12:37.195028] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-13 12:12:37.198020] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:37.198020] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:37.199030] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-13 12:12:37.200015] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-13 12:12:37.205001] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-13 12:12:37.230932] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-13 12:12:37.231929] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-13 12:12:37.249881] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-13 12:12:37.249881] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-13 12:12:37.271822] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-13 12:12:37.271822] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-13 12:12:37.288778] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-13 12:12:37.289775] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-13 12:12:37.316702] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-13 12:12:37.316702] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-13 12:12:37.342633] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-13 12:12:37.343631] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-13 12:12:37.368564] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-13 12:12:37.369561] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-13 12:12:37.386532] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-13 12:12:37.386532] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-13 12:12:37.404468] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-13 12:12:37.404468] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-13 12:12:37.432393] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-13 12:12:37.432393] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-13 12:12:37.449348] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-13 12:12:37.449348] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-13 12:12:37.468801] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-13 12:12:37.469798] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-13 12:12:37.486753] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-13 12:12:37.490743] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-13 12:12:37.521660] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-13 12:12:37.522657] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-13 12:12:37.541607] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-13 12:12:37.541607] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-13 12:12:37.560063] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-13 12:12:37.560063] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-13 12:12:37.579012] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-13 12:12:37.580009] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-13 12:12:37.606937] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-13 12:12:37.606937] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-13 12:12:37.638852] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-13 12:12:37.638852] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-13 12:12:37.663785] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-13 12:12:37.663785] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-13 12:12:37.689716] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-13 12:12:37.690713] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-13 12:12:37.720633] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-13 12:12:37.721631] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-13 12:12:37.724622] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-13 12:12:37.724622] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:37.724622] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:37.725620] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-13 12:12:37.725620] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-13 12:12:37.725620] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-13 12:12:37.755540] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-13 12:12:37.755540] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-13 12:12:37.778478] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-13 12:12:37.778478] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-13 12:12:37.787454] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-13 12:12:37.788452] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-13 12:12:37.801417] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-13 12:12:37.802415] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-13 12:12:37.807401] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-13 12:12:37.808399] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-13 12:12:37.836324] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-13 12:12:37.836324] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-13 12:12:37.852281] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-13 12:12:37.852281] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-13 12:12:37.879210] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-13 12:12:37.879210] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-13 12:12:37.896164] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-13 12:12:37.896164] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-13 12:12:37.922094] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-13 12:12:37.923092] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-13 12:12:37.945033] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-13 12:12:37.945033] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-13 12:12:37.954009] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-13 12:12:37.954009] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-13 12:12:37.977945] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-13 12:12:37.977945] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-13 12:12:38.010857] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-13 12:12:38.011854] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-13 12:12:38.039780] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-13 12:12:38.040777] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-13 12:12:38.057732] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-13 12:12:38.058729] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-13 12:12:38.088649] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-13 12:12:38.088649] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-13 12:12:38.110590] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-13 12:12:38.110590] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-13 12:12:38.125550] INFO: gensim.models.word2vec: collected 1344 word types from a corpus of 607874 raw words and 174 sentences -[2020-05-13 12:12:38.128542] INFO: gensim.models.word2vec: Loading a fresh vocabulary -[2020-05-13 12:12:38.129540] INFO: gensim.models.word2vec: effective_min_count=5 retains 1344 unique words (100% of original 1344, drops 0) -[2020-05-13 12:12:38.135524] INFO: gensim.models.word2vec: effective_min_count=5 leaves 607874 word corpus (100% of original 607874, drops 0) -[2020-05-13 12:12:38.138516] INFO: gensim.models.word2vec: deleting the raw counts dictionary of 1344 items -[2020-05-13 12:12:38.143504] INFO: gensim.models.word2vec: sample=0.001 downsamples 77 most-common words -[2020-05-13 12:12:38.149487] INFO: gensim.models.word2vec: downsampling leaves estimated 518943 word corpus (85.4% of prior 607874) -[2020-05-13 12:12:38.153476] INFO: gensim.models.base_any2vec: estimated required memory for 1344 words and 12 dimensions: 801024 bytes -[2020-05-13 12:12:38.153476] INFO: gensim.models.word2vec: resetting layer weights -[2020-05-13 12:12:38.335987] INFO: gensim.models.base_any2vec: training model with 4 workers on 1344 vocabulary and 12 features, using sg=1 hs=0 sample=0.001 negative=5 window=4 -[2020-05-13 12:12:38.337982] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270750v1.fa -[2020-05-13 12:12:38.343966] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:38.343966] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:38.344964] INFO: SeqGenerator: Whole fasta seqlen: 148850 -[2020-05-13 12:12:38.345961] DEBUG: SeqGenerator: input seq len: 3846 -[2020-05-13 12:12:38.351945] DEBUG: KmerSeqIterable: Splits of len=3846 to: [3846] -[2020-05-13 12:12:38.372889] DEBUG: SeqGenerator: input seq len: 4594 -[2020-05-13 12:12:38.373886] DEBUG: KmerSeqIterable: Splits of len=4594 to: [4594] -[2020-05-13 12:12:38.397822] DEBUG: SeqGenerator: input seq len: 4394 -[2020-05-13 12:12:38.398820] DEBUG: KmerSeqIterable: Splits of len=4394 to: [4394] -[2020-05-13 12:12:38.423753] DEBUG: SeqGenerator: input seq len: 4886 -[2020-05-13 12:12:38.424750] DEBUG: KmerSeqIterable: Splits of len=4886 to: [4886] -[2020-05-13 12:12:38.453672] DEBUG: SeqGenerator: input seq len: 2843 -[2020-05-13 12:12:38.453672] DEBUG: KmerSeqIterable: Splits of len=2843 to: [2843] -[2020-05-13 12:12:38.469137] DEBUG: SeqGenerator: input seq len: 3011 -[2020-05-13 12:12:38.471132] DEBUG: KmerSeqIterable: Splits of len=3011 to: [3011] -[2020-05-13 12:12:38.494070] DEBUG: SeqGenerator: input seq len: 4317 -[2020-05-13 12:12:38.494070] DEBUG: KmerSeqIterable: Splits of len=4317 to: [4317] -[2020-05-13 12:12:38.516012] DEBUG: SeqGenerator: input seq len: 2544 -[2020-05-13 12:12:38.518007] DEBUG: KmerSeqIterable: Splits of len=2544 to: [2544] -[2020-05-13 12:12:38.531969] DEBUG: SeqGenerator: input seq len: 2626 -[2020-05-13 12:12:38.532967] DEBUG: KmerSeqIterable: Splits of len=2626 to: [2626] -[2020-05-13 12:12:38.552913] DEBUG: SeqGenerator: input seq len: 3945 -[2020-05-13 12:12:38.552913] DEBUG: KmerSeqIterable: Splits of len=3945 to: [3945] -[2020-05-13 12:12:38.574855] DEBUG: SeqGenerator: input seq len: 2886 -[2020-05-13 12:12:38.575852] DEBUG: KmerSeqIterable: Splits of len=2886 to: [2886] -[2020-05-13 12:12:38.591809] DEBUG: SeqGenerator: input seq len: 4720 -[2020-05-13 12:12:38.594801] DEBUG: KmerSeqIterable: Splits of len=4720 to: [4720] -[2020-05-13 12:12:38.619734] DEBUG: SeqGenerator: input seq len: 3778 -[2020-05-13 12:12:38.621729] DEBUG: KmerSeqIterable: Splits of len=3778 to: [3778] -[2020-05-13 12:12:38.644668] DEBUG: SeqGenerator: input seq len: 3304 -[2020-05-13 12:12:38.644668] DEBUG: KmerSeqIterable: Splits of len=3304 to: [3304] -[2020-05-13 12:12:38.662620] DEBUG: SeqGenerator: input seq len: 3247 -[2020-05-13 12:12:38.663618] DEBUG: KmerSeqIterable: Splits of len=3247 to: [3247] -[2020-05-13 12:12:38.681569] DEBUG: SeqGenerator: input seq len: 2958 -[2020-05-13 12:12:38.684561] DEBUG: KmerSeqIterable: Splits of len=2958 to: [2958] -[2020-05-13 12:12:38.701516] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-13 12:12:38.701516] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-13 12:12:38.715478] DEBUG: SeqGenerator: input seq len: 3289 -[2020-05-13 12:12:38.717473] DEBUG: KmerSeqIterable: Splits of len=3289 to: [3289] -[2020-05-13 12:12:38.739414] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-13 12:12:38.739414] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-13 12:12:38.761356] DEBUG: SeqGenerator: input seq len: 4947 -[2020-05-13 12:12:38.763351] DEBUG: KmerSeqIterable: Splits of len=4947 to: [4947] -[2020-05-13 12:12:38.789281] DEBUG: SeqGenerator: input seq len: 4999 -[2020-05-13 12:12:38.790278] DEBUG: KmerSeqIterable: Splits of len=4999 to: [4999] -[2020-05-13 12:12:38.817207] DEBUG: SeqGenerator: input seq len: 3664 -[2020-05-13 12:12:38.819201] DEBUG: KmerSeqIterable: Splits of len=3664 to: [3664] -[2020-05-13 12:12:38.841142] DEBUG: SeqGenerator: input seq len: 3124 -[2020-05-13 12:12:38.841142] DEBUG: KmerSeqIterable: Splits of len=3124 to: [3124] -[2020-05-13 12:12:38.858098] DEBUG: SeqGenerator: input seq len: 4945 -[2020-05-13 12:12:38.860092] DEBUG: KmerSeqIterable: Splits of len=4945 to: [4945] -[2020-05-13 12:12:38.894001] DEBUG: SeqGenerator: input seq len: 4217 -[2020-05-13 12:12:38.894001] DEBUG: KmerSeqIterable: Splits of len=4217 to: [4217] -[2020-05-13 12:12:38.919932] DEBUG: SeqGenerator: input seq len: 3608 -[2020-05-13 12:12:38.920929] DEBUG: KmerSeqIterable: Splits of len=3608 to: [3608] -[2020-05-13 12:12:38.942871] DEBUG: SeqGenerator: input seq len: 3106 -[2020-05-13 12:12:38.942871] DEBUG: KmerSeqIterable: Splits of len=3106 to: [3106] -[2020-05-13 12:12:38.959825] DEBUG: SeqGenerator: input seq len: 2947 -[2020-05-13 12:12:38.963323] DEBUG: KmerSeqIterable: Splits of len=2947 to: [2947] -[2020-05-13 12:12:38.982271] DEBUG: SeqGenerator: input seq len: 3104 -[2020-05-13 12:12:38.982271] DEBUG: KmerSeqIterable: Splits of len=3104 to: [3104] -[2020-05-13 12:12:39.002218] DEBUG: SeqGenerator: input seq len: 3225 -[2020-05-13 12:12:39.002218] DEBUG: KmerSeqIterable: Splits of len=3225 to: [3225] -[2020-05-13 12:12:39.024160] DEBUG: SeqGenerator: input seq len: 3532 -[2020-05-13 12:12:39.026154] DEBUG: KmerSeqIterable: Splits of len=3532 to: [3532] -[2020-05-13 12:12:39.052085] DEBUG: SeqGenerator: input seq len: 3161 -[2020-05-13 12:12:39.052085] DEBUG: KmerSeqIterable: Splits of len=3161 to: [3161] -[2020-05-13 12:12:39.069543] DEBUG: SeqGenerator: input seq len: 2523 -[2020-05-13 12:12:39.070542] DEBUG: KmerSeqIterable: Splits of len=2523 to: [2523] -[2020-05-13 12:12:39.085501] DEBUG: SeqGenerator: input seq len: 3333 -[2020-05-13 12:12:39.086498] DEBUG: KmerSeqIterable: Splits of len=3333 to: [3333] -[2020-05-13 12:12:39.106445] DEBUG: SeqGenerator: input seq len: 3360 -[2020-05-13 12:12:39.107442] DEBUG: KmerSeqIterable: Splits of len=3360 to: [3360] -[2020-05-13 12:12:39.125394] DEBUG: SeqGenerator: input seq len: 4883 -[2020-05-13 12:12:39.125394] DEBUG: KmerSeqIterable: Splits of len=4883 to: [4883] -[2020-05-13 12:12:39.154317] DEBUG: SeqGenerator: input seq len: 2887 -[2020-05-13 12:12:39.155314] DEBUG: KmerSeqIterable: Splits of len=2887 to: [2887] -[2020-05-13 12:12:39.172774] DEBUG: SeqGenerator: input seq len: 3006 -[2020-05-13 12:12:39.179756] DEBUG: KmerSeqIterable: Splits of len=3006 to: [3006] -[2020-05-13 12:12:39.195713] DEBUG: SeqGenerator: input seq len: 2885 -[2020-05-13 12:12:39.198705] DEBUG: KmerSeqIterable: Splits of len=2885 to: [2885] -[2020-05-13 12:12:39.214662] DEBUG: SeqGenerator: input seq len: 3475 -[2020-05-13 12:12:39.215660] DEBUG: KmerSeqIterable: Splits of len=3475 to: [3475] -[2020-05-13 12:12:39.238598] DEBUG: SeqGenerator: input seq len: 2706 -[2020-05-13 12:12:39.238598] DEBUG: KmerSeqIterable: Splits of len=2706 to: [2706] -[2020-05-13 12:12:39.255553] DEBUG: SeqGenerator: input seq len: 3251 -[2020-05-13 12:12:39.257547] DEBUG: KmerSeqIterable: Splits of len=3251 to: [3251] -[2020-05-13 12:12:39.276005] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270751v1.fa -[2020-05-13 12:12:39.276005] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:39.276005] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:39.277999] INFO: SeqGenerator: Whole fasta seqlen: 150742 -[2020-05-13 12:12:39.283984] DEBUG: SeqGenerator: input seq len: 3331 -[2020-05-13 12:12:39.283984] DEBUG: KmerSeqIterable: Splits of len=3331 to: [3331] -[2020-05-13 12:12:39.301936] DEBUG: SeqGenerator: input seq len: 3916 -[2020-05-13 12:12:39.301936] DEBUG: KmerSeqIterable: Splits of len=3916 to: [3916] -[2020-05-13 12:12:39.322879] DEBUG: SeqGenerator: input seq len: 3699 -[2020-05-13 12:12:39.324874] DEBUG: KmerSeqIterable: Splits of len=3699 to: [3699] -[2020-05-13 12:12:39.351803] DEBUG: SeqGenerator: input seq len: 2893 -[2020-05-13 12:12:39.351803] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 24.71% examples, 128900 words/s, in_qsize 0, out_qsize 0 -[2020-05-13 12:12:39.351803] DEBUG: KmerSeqIterable: Splits of len=2893 to: [2893] -[2020-05-13 12:12:39.367759] DEBUG: SeqGenerator: input seq len: 4177 -[2020-05-13 12:12:39.371748] DEBUG: KmerSeqIterable: Splits of len=4177 to: [4177] -[2020-05-13 12:12:39.398676] DEBUG: SeqGenerator: input seq len: 2639 -[2020-05-13 12:12:39.398676] DEBUG: KmerSeqIterable: Splits of len=2639 to: [2639] -[2020-05-13 12:12:39.413636] DEBUG: SeqGenerator: input seq len: 3202 -[2020-05-13 12:12:39.420618] DEBUG: KmerSeqIterable: Splits of len=3202 to: [3202] -[2020-05-13 12:12:39.441562] DEBUG: SeqGenerator: input seq len: 4968 -[2020-05-13 12:12:39.443556] DEBUG: KmerSeqIterable: Splits of len=4968 to: [4968] -[2020-05-13 12:12:39.483450] DEBUG: SeqGenerator: input seq len: 3065 -[2020-05-13 12:12:39.484447] DEBUG: KmerSeqIterable: Splits of len=3065 to: [3065] -[2020-05-13 12:12:39.501402] DEBUG: SeqGenerator: input seq len: 4951 -[2020-05-13 12:12:39.503397] DEBUG: KmerSeqIterable: Splits of len=4951 to: [4951] -[2020-05-13 12:12:39.531322] DEBUG: SeqGenerator: input seq len: 3861 -[2020-05-13 12:12:39.531322] DEBUG: KmerSeqIterable: Splits of len=3861 to: [3861] -[2020-05-13 12:12:39.553263] DEBUG: SeqGenerator: input seq len: 3439 -[2020-05-13 12:12:39.554261] DEBUG: KmerSeqIterable: Splits of len=3439 to: [3439] -[2020-05-13 12:12:39.574207] DEBUG: SeqGenerator: input seq len: 4727 -[2020-05-13 12:12:39.575205] DEBUG: KmerSeqIterable: Splits of len=4727 to: [4727] -[2020-05-13 12:12:39.601135] DEBUG: SeqGenerator: input seq len: 2966 -[2020-05-13 12:12:39.603130] DEBUG: KmerSeqIterable: Splits of len=2966 to: [2966] -[2020-05-13 12:12:39.622079] DEBUG: SeqGenerator: input seq len: 3578 -[2020-05-13 12:12:39.625071] DEBUG: KmerSeqIterable: Splits of len=3578 to: [3578] -[2020-05-13 12:12:39.645018] DEBUG: SeqGenerator: input seq len: 4458 -[2020-05-13 12:12:39.646015] DEBUG: KmerSeqIterable: Splits of len=4458 to: [4458] -[2020-05-13 12:12:39.669951] DEBUG: SeqGenerator: input seq len: 3075 -[2020-05-13 12:12:39.670949] DEBUG: KmerSeqIterable: Splits of len=3075 to: [3075] -[2020-05-13 12:12:39.686906] DEBUG: SeqGenerator: input seq len: 3088 -[2020-05-13 12:12:39.691892] DEBUG: KmerSeqIterable: Splits of len=3088 to: [3088] -[2020-05-13 12:12:39.712836] DEBUG: SeqGenerator: input seq len: 4257 -[2020-05-13 12:12:39.712836] DEBUG: KmerSeqIterable: Splits of len=4257 to: [4257] -[2020-05-13 12:12:39.735775] DEBUG: SeqGenerator: input seq len: 4656 -[2020-05-13 12:12:39.736772] DEBUG: KmerSeqIterable: Splits of len=4656 to: [4656] -[2020-05-13 12:12:39.763700] DEBUG: SeqGenerator: input seq len: 3321 -[2020-05-13 12:12:39.763700] DEBUG: KmerSeqIterable: Splits of len=3321 to: [3321] -[2020-05-13 12:12:39.781652] DEBUG: SeqGenerator: input seq len: 2793 -[2020-05-13 12:12:39.783647] DEBUG: KmerSeqIterable: Splits of len=2793 to: [2793] -[2020-05-13 12:12:39.801599] DEBUG: SeqGenerator: input seq len: 4583 -[2020-05-13 12:12:39.802597] DEBUG: KmerSeqIterable: Splits of len=4583 to: [4583] -[2020-05-13 12:12:39.829524] DEBUG: SeqGenerator: input seq len: 4689 -[2020-05-13 12:12:39.830522] DEBUG: KmerSeqIterable: Splits of len=4689 to: [4689] -[2020-05-13 12:12:39.856452] DEBUG: SeqGenerator: input seq len: 3073 -[2020-05-13 12:12:39.856452] DEBUG: KmerSeqIterable: Splits of len=3073 to: [3073] -[2020-05-13 12:12:39.875401] DEBUG: SeqGenerator: input seq len: 2860 -[2020-05-13 12:12:39.877396] DEBUG: KmerSeqIterable: Splits of len=2860 to: [2860] -[2020-05-13 12:12:39.897343] DEBUG: SeqGenerator: input seq len: 4850 -[2020-05-13 12:12:39.897343] DEBUG: KmerSeqIterable: Splits of len=4850 to: [4850] -[2020-05-13 12:12:39.923273] DEBUG: SeqGenerator: input seq len: 2973 -[2020-05-13 12:12:39.925268] DEBUG: KmerSeqIterable: Splits of len=2973 to: [2973] -[2020-05-13 12:12:39.941225] DEBUG: SeqGenerator: input seq len: 4234 -[2020-05-13 12:12:39.943220] DEBUG: KmerSeqIterable: Splits of len=4234 to: [4234] -[2020-05-13 12:12:39.969151] DEBUG: SeqGenerator: input seq len: 3919 -[2020-05-13 12:12:39.970148] DEBUG: KmerSeqIterable: Splits of len=3919 to: [3919] -[2020-05-13 12:12:39.993087] DEBUG: SeqGenerator: input seq len: 4392 -[2020-05-13 12:12:39.993087] DEBUG: KmerSeqIterable: Splits of len=4392 to: [4392] -[2020-05-13 12:12:40.025999] DEBUG: SeqGenerator: input seq len: 2969 -[2020-05-13 12:12:40.027994] DEBUG: KmerSeqIterable: Splits of len=2969 to: [2969] -[2020-05-13 12:12:40.051930] DEBUG: SeqGenerator: input seq len: 4295 -[2020-05-13 12:12:40.055919] DEBUG: KmerSeqIterable: Splits of len=4295 to: [4295] -[2020-05-13 12:12:40.096810] DEBUG: SeqGenerator: input seq len: 4700 -[2020-05-13 12:12:40.097807] DEBUG: KmerSeqIterable: Splits of len=4700 to: [4700] -[2020-05-13 12:12:40.139695] DEBUG: SeqGenerator: input seq len: 3826 -[2020-05-13 12:12:40.139695] DEBUG: KmerSeqIterable: Splits of len=3826 to: [3826] -[2020-05-13 12:12:40.173112] DEBUG: SeqGenerator: input seq len: 3266 -[2020-05-13 12:12:40.175107] DEBUG: KmerSeqIterable: Splits of len=3266 to: [3266] -[2020-05-13 12:12:40.208019] DEBUG: SeqGenerator: input seq len: 4794 -[2020-05-13 12:12:40.209016] DEBUG: KmerSeqIterable: Splits of len=4794 to: [4794] -[2020-05-13 12:12:40.243922] DEBUG: SeqGenerator: input seq len: 3040 -[2020-05-13 12:12:40.244920] DEBUG: KmerSeqIterable: Splits of len=3040 to: [3040] -[2020-05-13 12:12:40.263869] DEBUG: SeqGenerator: input seq len: 2526 -[2020-05-13 12:12:40.267858] DEBUG: KmerSeqIterable: Splits of len=2526 to: [2526] -[2020-05-13 12:12:40.284813] DEBUG: SeqGenerator: input seq len: 2875 -[2020-05-13 12:12:40.288803] DEBUG: KmerSeqIterable: Splits of len=2875 to: [2875] -[2020-05-13 12:12:40.306755] DEBUG: SeqGenerator: input seq len: 1818 -[2020-05-13 12:12:40.309746] DEBUG: KmerSeqIterable: Splits of len=1818 to: [1818] -[2020-05-13 12:12:40.320717] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270752v1.fa -[2020-05-13 12:12:40.320717] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:40.320717] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:40.321714] INFO: SeqGenerator: Whole fasta seqlen: 27745 -[2020-05-13 12:12:40.321714] DEBUG: SeqGenerator: input seq len: 4135 -[2020-05-13 12:12:40.321714] DEBUG: KmerSeqIterable: Splits of len=4135 to: [4135] -[2020-05-13 12:12:40.347645] DEBUG: SeqGenerator: input seq len: 3035 -[2020-05-13 12:12:40.348642] DEBUG: KmerSeqIterable: Splits of len=3035 to: [3035] -[2020-05-13 12:12:40.366595] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-13 12:12:40.366595] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 47.70% examples, 126673 words/s, in_qsize 0, out_qsize 0 -[2020-05-13 12:12:40.366595] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-13 12:12:40.389533] DEBUG: SeqGenerator: input seq len: 3296 -[2020-05-13 12:12:40.391528] DEBUG: KmerSeqIterable: Splits of len=3296 to: [3296] -[2020-05-13 12:12:40.410477] DEBUG: SeqGenerator: input seq len: 3049 -[2020-05-13 12:12:40.410477] DEBUG: KmerSeqIterable: Splits of len=3049 to: [3049] -[2020-05-13 12:12:40.429426] DEBUG: SeqGenerator: input seq len: 4128 -[2020-05-13 12:12:40.437405] DEBUG: KmerSeqIterable: Splits of len=4128 to: [4128] -[2020-05-13 12:12:40.459346] DEBUG: SeqGenerator: input seq len: 2648 -[2020-05-13 12:12:40.462338] DEBUG: KmerSeqIterable: Splits of len=2648 to: [2648] -[2020-05-13 12:12:40.476301] DEBUG: SeqGenerator: input seq len: 3435 -[2020-05-13 12:12:40.482285] DEBUG: KmerSeqIterable: Splits of len=3435 to: [3435] -[2020-05-13 12:12:40.503229] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270753v1.fa -[2020-05-13 12:12:40.504227] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:40.504227] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:40.505223] INFO: SeqGenerator: Whole fasta seqlen: 62944 -[2020-05-13 12:12:40.505223] DEBUG: SeqGenerator: input seq len: 3786 -[2020-05-13 12:12:40.506221] DEBUG: KmerSeqIterable: Splits of len=3786 to: [3786] -[2020-05-13 12:12:40.531154] DEBUG: SeqGenerator: input seq len: 3831 -[2020-05-13 12:12:40.532151] DEBUG: KmerSeqIterable: Splits of len=3831 to: [3831] -[2020-05-13 12:12:40.552098] DEBUG: SeqGenerator: input seq len: 3133 -[2020-05-13 12:12:40.554093] DEBUG: KmerSeqIterable: Splits of len=3133 to: [3133] -[2020-05-13 12:12:40.574039] DEBUG: SeqGenerator: input seq len: 3714 -[2020-05-13 12:12:40.575038] DEBUG: KmerSeqIterable: Splits of len=3714 to: [3714] -[2020-05-13 12:12:40.594984] DEBUG: SeqGenerator: input seq len: 3118 -[2020-05-13 12:12:40.596979] DEBUG: KmerSeqIterable: Splits of len=3118 to: [3118] -[2020-05-13 12:12:40.614930] DEBUG: SeqGenerator: input seq len: 4415 -[2020-05-13 12:12:40.614930] DEBUG: KmerSeqIterable: Splits of len=4415 to: [4415] -[2020-05-13 12:12:40.639863] DEBUG: SeqGenerator: input seq len: 4126 -[2020-05-13 12:12:40.640861] DEBUG: KmerSeqIterable: Splits of len=4126 to: [4126] -[2020-05-13 12:12:40.664797] DEBUG: SeqGenerator: input seq len: 4866 -[2020-05-13 12:12:40.665794] DEBUG: KmerSeqIterable: Splits of len=4866 to: [4866] -[2020-05-13 12:12:40.694224] DEBUG: SeqGenerator: input seq len: 4497 -[2020-05-13 12:12:40.696219] DEBUG: KmerSeqIterable: Splits of len=4497 to: [4497] -[2020-05-13 12:12:40.721152] DEBUG: SeqGenerator: input seq len: 3155 -[2020-05-13 12:12:40.721152] DEBUG: KmerSeqIterable: Splits of len=3155 to: [3155] -[2020-05-13 12:12:40.738107] DEBUG: SeqGenerator: input seq len: 2740 -[2020-05-13 12:12:40.740102] DEBUG: KmerSeqIterable: Splits of len=2740 to: [2740] -[2020-05-13 12:12:40.756059] DEBUG: SeqGenerator: input seq len: 2828 -[2020-05-13 12:12:40.760048] DEBUG: KmerSeqIterable: Splits of len=2828 to: [2828] -[2020-05-13 12:12:40.776510] DEBUG: SeqGenerator: input seq len: 4782 -[2020-05-13 12:12:40.777508] DEBUG: KmerSeqIterable: Splits of len=4782 to: [4782] -[2020-05-13 12:12:40.804435] DEBUG: SeqGenerator: input seq len: 4819 -[2020-05-13 12:12:40.805432] DEBUG: KmerSeqIterable: Splits of len=4819 to: [4819] -[2020-05-13 12:12:40.833358] DEBUG: SeqGenerator: input seq len: 3021 -[2020-05-13 12:12:40.833358] DEBUG: KmerSeqIterable: Splits of len=3021 to: [3021] -[2020-05-13 12:12:40.850312] DEBUG: SeqGenerator: input seq len: 4590 -[2020-05-13 12:12:40.852308] DEBUG: KmerSeqIterable: Splits of len=4590 to: [4590] -[2020-05-13 12:12:40.876747] DEBUG: SeqGenerator: input seq len: 1523 -[2020-05-13 12:12:40.876747] DEBUG: KmerSeqIterable: Splits of len=1523 to: [1523] -[2020-05-13 12:12:40.885724] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270754v1.fa -[2020-05-13 12:12:40.885724] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:40.886722] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:40.886722] INFO: SeqGenerator: Whole fasta seqlen: 40191 -[2020-05-13 12:12:40.886722] DEBUG: SeqGenerator: input seq len: 4639 -[2020-05-13 12:12:40.892705] DEBUG: KmerSeqIterable: Splits of len=4639 to: [4639] -[2020-05-13 12:12:40.918635] DEBUG: SeqGenerator: input seq len: 4460 -[2020-05-13 12:12:40.920630] DEBUG: KmerSeqIterable: Splits of len=4460 to: [4460] -[2020-05-13 12:12:40.948556] DEBUG: SeqGenerator: input seq len: 4955 -[2020-05-13 12:12:40.948556] DEBUG: KmerSeqIterable: Splits of len=4955 to: [4955] -[2020-05-13 12:12:40.976985] DEBUG: SeqGenerator: input seq len: 3367 -[2020-05-13 12:12:40.978980] DEBUG: KmerSeqIterable: Splits of len=3367 to: [3367] -[2020-05-13 12:12:40.999924] DEBUG: SeqGenerator: input seq len: 3347 -[2020-05-13 12:12:40.999924] DEBUG: KmerSeqIterable: Splits of len=3347 to: [3347] -[2020-05-13 12:12:41.020868] DEBUG: SeqGenerator: input seq len: 3985 -[2020-05-13 12:12:41.021865] DEBUG: KmerSeqIterable: Splits of len=3985 to: [3985] -[2020-05-13 12:12:41.048793] DEBUG: SeqGenerator: input seq len: 3631 -[2020-05-13 12:12:41.048793] DEBUG: KmerSeqIterable: Splits of len=3631 to: [3631] -[2020-05-13 12:12:41.067742] DEBUG: SeqGenerator: input seq len: 3570 -[2020-05-13 12:12:41.069737] DEBUG: KmerSeqIterable: Splits of len=3570 to: [3570] -[2020-05-13 12:12:41.094670] DEBUG: SeqGenerator: input seq len: 3290 -[2020-05-13 12:12:41.094670] DEBUG: KmerSeqIterable: Splits of len=3290 to: [3290] -[2020-05-13 12:12:41.112622] DEBUG: SeqGenerator: input seq len: 2659 -[2020-05-13 12:12:41.114617] DEBUG: KmerSeqIterable: Splits of len=2659 to: [2659] -[2020-05-13 12:12:41.133567] DEBUG: SeqGenerator: input seq len: 2288 -[2020-05-13 12:12:41.133567] DEBUG: KmerSeqIterable: Splits of len=2288 to: [2288] -[2020-05-13 12:12:41.147529] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270755v1.fa -[2020-05-13 12:12:41.149524] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:41.149524] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:41.150521] INFO: SeqGenerator: Whole fasta seqlen: 36723 -[2020-05-13 12:12:41.150521] DEBUG: SeqGenerator: input seq len: 3871 -[2020-05-13 12:12:41.150521] DEBUG: KmerSeqIterable: Splits of len=3871 to: [3871] -[2020-05-13 12:12:41.171465] DEBUG: SeqGenerator: input seq len: 4704 -[2020-05-13 12:12:41.173460] DEBUG: KmerSeqIterable: Splits of len=4704 to: [4704] -[2020-05-13 12:12:41.200388] DEBUG: SeqGenerator: input seq len: 3508 -[2020-05-13 12:12:41.200388] DEBUG: KmerSeqIterable: Splits of len=3508 to: [3508] -[2020-05-13 12:12:41.220334] DEBUG: SeqGenerator: input seq len: 3522 -[2020-05-13 12:12:41.222329] DEBUG: KmerSeqIterable: Splits of len=3522 to: [3522] -[2020-05-13 12:12:41.244270] DEBUG: SeqGenerator: input seq len: 3676 -[2020-05-13 12:12:41.244270] DEBUG: KmerSeqIterable: Splits of len=3676 to: [3676] -[2020-05-13 12:12:41.267209] DEBUG: SeqGenerator: input seq len: 4106 -[2020-05-13 12:12:41.269204] DEBUG: KmerSeqIterable: Splits of len=4106 to: [4106] -[2020-05-13 12:12:41.292142] DEBUG: SeqGenerator: input seq len: 4723 -[2020-05-13 12:12:41.292142] DEBUG: KmerSeqIterable: Splits of len=4723 to: [4723] -[2020-05-13 12:12:41.317075] DEBUG: SeqGenerator: input seq len: 3079 -[2020-05-13 12:12:41.318073] DEBUG: KmerSeqIterable: Splits of len=3079 to: [3079] -[2020-05-13 12:12:41.336025] DEBUG: SeqGenerator: input seq len: 4419 -[2020-05-13 12:12:41.337022] DEBUG: KmerSeqIterable: Splits of len=4419 to: [4419] -[2020-05-13 12:12:41.362953] DEBUG: SeqGenerator: input seq len: 1115 -[2020-05-13 12:12:41.364948] DEBUG: KmerSeqIterable: Splits of len=1115 to: [1115] -[2020-05-13 12:12:41.371929] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270756v1.fa -[2020-05-13 12:12:41.371929] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:41.371929] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:41.372927] INFO: SeqGenerator: Whole fasta seqlen: 79590 -[2020-05-13 12:12:41.373924] DEBUG: SeqGenerator: input seq len: 3592 -[2020-05-13 12:12:41.378910] DEBUG: KmerSeqIterable: Splits of len=3592 to: [3592] -[2020-05-13 12:12:41.397859] DEBUG: SeqGenerator: input seq len: 2937 -[2020-05-13 12:12:41.397859] INFO: gensim.models.base_any2vec: EPOCH 1 - PROGRESS: at 72.99% examples, 129914 words/s, in_qsize 0, out_qsize 0 -[2020-05-13 12:12:41.398857] DEBUG: KmerSeqIterable: Splits of len=2937 to: [2937] -[2020-05-13 12:12:41.419801] DEBUG: SeqGenerator: input seq len: 3424 -[2020-05-13 12:12:41.422794] DEBUG: KmerSeqIterable: Splits of len=3424 to: [3424] -[2020-05-13 12:12:41.446729] DEBUG: SeqGenerator: input seq len: 2785 -[2020-05-13 12:12:41.448723] DEBUG: KmerSeqIterable: Splits of len=2785 to: [1389, 1330] -[2020-05-13 12:12:41.463685] DEBUG: SeqGenerator: input seq len: 4677 -[2020-05-13 12:12:41.468671] DEBUG: KmerSeqIterable: Splits of len=4677 to: [4677] -[2020-05-13 12:12:41.494601] DEBUG: SeqGenerator: input seq len: 3758 -[2020-05-13 12:12:41.495598] DEBUG: KmerSeqIterable: Splits of len=3758 to: [3758] -[2020-05-13 12:12:41.521529] DEBUG: SeqGenerator: input seq len: 3481 -[2020-05-13 12:12:41.522526] DEBUG: KmerSeqIterable: Splits of len=3481 to: [3481] -[2020-05-13 12:12:41.541475] DEBUG: SeqGenerator: input seq len: 2555 -[2020-05-13 12:12:41.543470] DEBUG: KmerSeqIterable: Splits of len=2555 to: [2555] -[2020-05-13 12:12:41.557433] DEBUG: SeqGenerator: input seq len: 2872 -[2020-05-13 12:12:41.560425] DEBUG: KmerSeqIterable: Splits of len=2872 to: [2872] -[2020-05-13 12:12:41.576382] DEBUG: SeqGenerator: input seq len: 4296 -[2020-05-13 12:12:41.576382] DEBUG: KmerSeqIterable: Splits of len=4296 to: [4296] -[2020-05-13 12:12:41.599320] DEBUG: SeqGenerator: input seq len: 2727 -[2020-05-13 12:12:41.601315] DEBUG: KmerSeqIterable: Splits of len=2727 to: [2727] -[2020-05-13 12:12:41.618270] DEBUG: SeqGenerator: input seq len: 3326 -[2020-05-13 12:12:41.624254] DEBUG: KmerSeqIterable: Splits of len=3326 to: [3326] -[2020-05-13 12:12:41.643204] DEBUG: SeqGenerator: input seq len: 2700 -[2020-05-13 12:12:41.645198] DEBUG: KmerSeqIterable: Splits of len=2700 to: [2700] -[2020-05-13 12:12:41.660158] DEBUG: SeqGenerator: input seq len: 4942 -[2020-05-13 12:12:41.665146] DEBUG: KmerSeqIterable: Splits of len=4942 to: [4942] -[2020-05-13 12:12:41.691075] DEBUG: SeqGenerator: input seq len: 3076 -[2020-05-13 12:12:41.692072] DEBUG: KmerSeqIterable: Splits of len=3076 to: [3076] -[2020-05-13 12:12:41.710025] DEBUG: SeqGenerator: input seq len: 3087 -[2020-05-13 12:12:41.712019] DEBUG: KmerSeqIterable: Splits of len=3087 to: [3087] -[2020-05-13 12:12:41.728974] DEBUG: SeqGenerator: input seq len: 3188 -[2020-05-13 12:12:41.733961] DEBUG: KmerSeqIterable: Splits of len=3188 to: [3188] -[2020-05-13 12:12:41.752910] DEBUG: SeqGenerator: input seq len: 3966 -[2020-05-13 12:12:41.753907] DEBUG: KmerSeqIterable: Splits of len=3966 to: [3966] -[2020-05-13 12:12:41.775848] DEBUG: SeqGenerator: input seq len: 4914 -[2020-05-13 12:12:41.776846] DEBUG: KmerSeqIterable: Splits of len=4914 to: [4914] -[2020-05-13 12:12:41.805768] DEBUG: SeqGenerator: input seq len: 4116 -[2020-05-13 12:12:41.805768] DEBUG: KmerSeqIterable: Splits of len=4116 to: [4116] -[2020-05-13 12:12:41.828707] DEBUG: SeqGenerator: input seq len: 4339 -[2020-05-13 12:12:41.829704] DEBUG: KmerSeqIterable: Splits of len=4339 to: [4339] -[2020-05-13 12:12:41.864611] DEBUG: SeqGenerator: input seq len: 4377 -[2020-05-13 12:12:41.864611] DEBUG: KmerSeqIterable: Splits of len=4377 to: [4377] -[2020-05-13 12:12:41.889052] DEBUG: SeqGenerator: input seq len: 455 -[2020-05-13 12:12:41.890049] DEBUG: KmerSeqIterable: Splits of len=455 to: [455] -[2020-05-13 12:12:41.894039] INFO: SeqGenerator: Opened file: example_inputs\chrUn_KI270757v1.fa -[2020-05-13 12:12:41.896034] INFO: SeqGenerator: Memory usage: 0 MB -[2020-05-13 12:12:41.896034] INFO: SeqGenerator: Current epoch: 1 / 1 -[2020-05-13 12:12:41.897031] INFO: SeqGenerator: Whole fasta seqlen: 71251 -[2020-05-13 12:12:41.897031] DEBUG: SeqGenerator: input seq len: 4979 -[2020-05-13 12:12:41.898028] DEBUG: KmerSeqIterable: Splits of len=4979 to: [4979] -[2020-05-13 12:12:41.926951] DEBUG: SeqGenerator: input seq len: 3765 -[2020-05-13 12:12:41.926951] DEBUG: KmerSeqIterable: Splits of len=3765 to: [3765] -[2020-05-13 12:12:41.946897] DEBUG: SeqGenerator: input seq len: 4973 -[2020-05-13 12:12:41.953880] DEBUG: KmerSeqIterable: Splits of len=4973 to: [1475] -[2020-05-13 12:12:41.967842] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-13 12:12:41.971831] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2321] -[2020-05-13 12:12:41.983801] DEBUG: SeqGenerator: input seq len: 4038 -[2020-05-13 12:12:41.988786] DEBUG: KmerSeqIterable: Splits of len=4038 to: [618, 204] -[2020-05-13 12:12:41.994770] DEBUG: SeqGenerator: input seq len: 4645 -[2020-05-13 12:12:41.997762] DEBUG: KmerSeqIterable: Splits of len=4645 to: [4645] -[2020-05-13 12:12:42.031671] DEBUG: SeqGenerator: input seq len: 2748 -[2020-05-13 12:12:42.033665] DEBUG: KmerSeqIterable: Splits of len=2748 to: [2748] -[2020-05-13 12:12:42.059596] DEBUG: SeqGenerator: input seq len: 4435 -[2020-05-13 12:12:42.059596] DEBUG: KmerSeqIterable: Splits of len=4435 to: [4435] -[2020-05-13 12:12:42.087521] DEBUG: SeqGenerator: input seq len: 2868 -[2020-05-13 12:12:42.088519] DEBUG: KmerSeqIterable: Splits of len=2868 to: [2868] -[2020-05-13 12:12:42.107468] DEBUG: SeqGenerator: input seq len: 4546 -[2020-05-13 12:12:42.109463] DEBUG: KmerSeqIterable: Splits of len=4546 to: [4546] -[2020-05-13 12:12:42.136391] DEBUG: SeqGenerator: input seq len: 3716 -[2020-05-13 12:12:42.137388] DEBUG: KmerSeqIterable: Splits of len=3716 to: [3716] -[2020-05-13 12:12:42.161324] DEBUG: SeqGenerator: input seq len: 3540 -[2020-05-13 12:12:42.162322] DEBUG: KmerSeqIterable: Splits of len=3540 to: [630, 771] -[2020-05-13 12:12:42.169303] DEBUG: SeqGenerator: input seq len: 3754 -[2020-05-13 12:12:42.176285] DEBUG: KmerSeqIterable: Splits of len=3754 to: [3754] -[2020-05-13 12:12:42.197228] DEBUG: SeqGenerator: input seq len: 4088 -[2020-05-13 12:12:42.199223] DEBUG: KmerSeqIterable: Splits of len=4088 to: [4088] -[2020-05-13 12:12:42.229143] DEBUG: SeqGenerator: input seq len: 4366 -[2020-05-13 12:12:42.229143] DEBUG: KmerSeqIterable: Splits of len=4366 to: [4366] -[2020-05-13 12:12:42.252081] DEBUG: SeqGenerator: input seq len: 2697 -[2020-05-13 12:12:42.253079] DEBUG: KmerSeqIterable: Splits of len=2697 to: [2697] -[2020-05-13 12:12:42.274022] DEBUG: SeqGenerator: input seq len: 4019 -[2020-05-13 12:12:42.274022] DEBUG: KmerSeqIterable: Splits of len=4019 to: [4019] -[2020-05-13 12:12:42.296961] DEBUG: SeqGenerator: input seq len: 3130 -[2020-05-13 12:12:42.297959] DEBUG: KmerSeqIterable: Splits of len=3130 to: [3130] -[2020-05-13 12:12:42.315911] DEBUG: SeqGenerator: input seq len: 2076 -[2020-05-13 12:12:42.315911] DEBUG: KmerSeqIterable: Splits of len=2076 to: [2076] -[2020-05-13 12:12:42.330871] DEBUG: gensim.models.base_any2vec: job loop exiting, total 75 jobs -[2020-05-13 12:12:42.332865] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs -[2020-05-13 12:12:42.336855] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs -[2020-05-13 12:12:42.337853] DEBUG: gensim.models.base_any2vec: worker exiting, processed 18 jobs -[2020-05-13 12:12:42.337853] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 3 more threads -[2020-05-13 12:12:42.337853] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 2 more threads -[2020-05-13 12:12:42.338850] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 1 more threads -[2020-05-13 12:12:42.354807] DEBUG: gensim.models.base_any2vec: worker exiting, processed 19 jobs -[2020-05-13 12:12:42.358820] INFO: gensim.models.base_any2vec: worker thread finished; awaiting finish of 0 more threads -[2020-05-13 12:12:42.358820] INFO: gensim.models.base_any2vec: EPOCH - 1 : training on 607874 raw words (519076 effective words) took 4.0s, 129070 effective words/s -[2020-05-13 12:12:42.359794] INFO: gensim.models.base_any2vec: training on a 607874 raw words (519076 effective words) took 4.0s, 129014 effective words/s -[2020-05-13 12:12:42.365777] INFO: gensim.models.utils_any2vec: storing 1344x12 projection weights into ./tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v -[2020-05-13 12:12:42.371761] DEBUG: smart_open.smart_open_lib: {'uri': './tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v', 'mode': 'wb', 'buffering': -1, 'encoding': None, 'errors': None, 'newline': None, 'closefd': True, 'opener': None, 'ignore_ext': False, 'transport_params': None} -[2020-05-13 12:12:42.393210] INFO: Histogram: Percent of 3-mers: 33.3% (202162) -[2020-05-13 12:12:42.393210] INFO: Histogram: Percent of 4-mers: 33.3% (202583) -[2020-05-13 12:12:42.394208] INFO: Histogram: Percent of 5-mers: 33.4% (203129) -[2020-05-13 12:12:42.401188] INFO: Histogram: Number of base-pairs: 2432463 -[2020-05-13 12:12:42.402186] INFO: Benchmark: wall=0.146m cpu=0.146m diff --git a/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v b/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v deleted file mode 100644 index 28f3654..0000000 --- a/tmp/dna2vec-20200513-1212-k3to5-12d-4c-0Mbp-sliding-TlX.w2v +++ /dev/null @@ -1,1345 +0,0 @@ -1344 12 -AAA 1.1242529 0.18182507 0.33577624 -0.312573 -0.40525377 -0.5318403 -0.54999405 -1.039881 -0.5980296 -1.1454755 -0.25008532 0.04169052 -TTT 0.9277847 0.5220297 -1.3926398 -0.33231407 -0.016000483 -1.0046344 -0.3326537 -0.4309856 -0.39578396 -0.4687364 0.5209789 0.42739508 -AAT 1.2860295 0.2185834 -0.29964387 0.31610093 -0.7653607 0.28095433 -0.59744304 -0.6588056 -0.37977123 -0.8622448 -0.058129173 0.15808782 -GAA 0.81747305 0.3557909 -0.14186342 0.05296047 -0.4921514 0.06319166 -0.36897868 -0.99645305 -0.841529 -1.0105146 -0.06454924 0.32450804 -ATT 1.3225299 0.39153492 -1.6195636 -0.19754899 -0.48307583 -0.044955038 -0.4404049 -0.53621805 -0.49651426 0.059699025 -0.038372975 0.21268748 -ATG 0.659189 0.33697045 -0.51735514 0.9991447 -0.651698 0.06653247 -0.7030769 -0.6078225 -0.2925405 -0.9310043 0.057457007 -0.1329275 -TGG 0.43090075 0.7020449 -0.5858098 0.64662254 -0.96654207 0.13549438 -0.36210793 -0.26591855 -0.5588129 -1.3768159 0.40738723 -0.032636143 -GGA 0.5081202 0.5157434 0.18060543 0.5948618 -0.97266454 0.13444367 -0.44681785 -0.8774259 -0.67132545 -1.2807876 0.6066824 0.39819133 -TTC 1.0261018 0.64052486 -0.75917107 -0.7513561 -0.58858985 -0.8811695 -0.54651093 -0.38884896 0.32098785 0.15783525 0.562957 0.1350043 -AGA 0.76309246 0.28806877 0.03178105 -0.49089682 -0.20095997 0.47640032 -0.7962318 -0.5780624 -1.3369917 -0.8379035 0.19354282 0.3929259 -CAT 1.5277567 0.69898945 -1.0043306 -0.2497477 -0.56376034 -0.1484138 -0.1662487 -0.10984755 -0.51138693 0.6479083 0.23941116 -0.37438303 -TCT 0.98145944 0.45585012 0.06638381 -0.027513534 0.1331927 -0.59388024 -1.0150045 -0.4386087 -0.104623355 0.2502798 0.9278915 0.76074684 -ACA 1.3025658 0.92500216 0.7495437 0.053582866 -0.60140663 -0.54457587 0.42152992 -0.5122342 -1.0344789 -0.15468396 0.14857295 -0.14188036 -TGA 0.3160212 0.27170232 -0.68902534 0.5658332 -0.18357687 -0.16672203 -0.67050487 -1.2023295 -1.1372042 -0.22352405 0.22522016 0.4931145 -TGT 0.62484956 -0.06159543 -0.98533374 0.8511169 -0.08888605 -0.86054206 -0.94682455 -0.019108327 -0.6432783 -0.536369 0.76016694 -0.3570855 -TTG 0.46124664 0.67847645 -1.2001911 0.48241723 -0.056621328 -0.43389034 -0.04437218 -1.1348336 -0.47276857 -0.48555452 0.46476895 0.4030257 -CCA 1.1415614 0.85810363 -0.38673797 -0.3401343 -0.77157706 -0.72476 -0.33089986 -0.9645572 0.47607836 0.5308533 0.14314476 -0.58063716 -CTT 0.55154985 0.88890386 -1.0218687 -0.54108185 0.42012835 -1.0452994 -0.8103552 -0.16814226 -0.6366762 -0.0011876443 0.25567254 0.44036478 -TCA 1.4782126 0.274177 0.6434683 -0.27041855 -0.82716656 -0.43890437 0.053991742 -0.9359331 -0.36124215 0.293091 0.89472455 -0.04327781 -CAA 1.1634465 0.019515727 0.1596026 -0.2326877 -0.59947616 -0.35412517 -0.3876397 -1.0748255 -0.79939383 -0.18608813 -0.13252228 -0.7021189 -ATA 1.6940074 0.25198737 -0.3637277 -0.19976534 -0.26943895 0.55832416 -1.0062587 0.1871512 -0.56707156 -0.6606001 -0.29786345 -0.019304257 -AAG 0.6865259 0.25945485 0.25465405 -0.46054327 -0.18040195 0.072007716 -0.16506737 -1.2149 -0.5152465 -1.2331228 0.53576833 -0.0904856 -CTG -0.119754694 0.740707 -0.10549643 0.71668875 -0.010741965 -0.40812662 -1.0344473 -0.23061398 -0.5682338 -0.34279042 0.47379395 0.1941188 -TAT 1.5810223 0.42158028 -0.49954447 0.50437295 -0.09921684 -0.05611958 -0.7637425 0.095127285 0.0958677 -0.2626859 0.4993031 0.50100476 -TCC 0.95186794 0.6324279 -0.43657178 -0.06882703 -0.44304395 -1.0298958 -0.81886196 -1.3134686 0.40235424 0.8762931 0.43362612 -0.26811448 -CAG 0.49682942 0.3317017 -0.050811604 -0.5928403 -0.13870113 0.2121069 -0.28560096 -0.39997724 -1.3396068 -0.077179894 0.7952319 -0.5545714 -TTA 1.6620172 0.5335172 -0.77561146 -0.22143652 0.045823354 -0.55445045 -0.26689085 0.12983662 -0.09765903 -0.81902003 0.09883185 0.31505945 -TAA 1.571656 0.08942324 0.26277673 0.4218422 -0.08967414 -0.5486358 -0.58386004 -0.41062275 -0.31684518 -1.2144445 0.027207408 0.27658755 -GAG -0.026457574 0.38686147 -0.51908314 -0.24361058 -0.11745558 0.29715535 -0.42818305 -0.8823363 -1.2686758 -0.56626296 1.0398847 0.092711 -AGG 0.29819572 0.830016 -0.26541865 -0.8154116 -0.5288567 0.33994102 -0.16403458 -0.3311511 -0.23481537 -1.7263325 0.4592267 -0.3547235 -ACT 0.32951698 1.0163844 0.43911314 -0.013008816 -0.24917242 -1.0326262 -0.87946725 -0.25895816 -0.5144072 -0.25913784 -0.085748285 0.62122124 -CTC 0.24258955 0.8267835 0.19610691 -1.0382887 -0.6315739 -0.6472643 -1.1121032 -0.0615455 -0.20056327 0.034682244 0.25633678 0.08617243 -CCT 0.18020444 0.90824425 -0.79219836 -0.47979224 0.3838512 -0.7686056 -1.1896943 -0.5809795 0.50342786 -0.21244949 0.0036115914 -0.081833385 -GTG 0.04219821 0.19362131 -0.7692757 0.9925543 -0.2589822 -0.52463865 -0.52374566 -0.78900945 -0.6741329 -0.7830991 0.9257587 -0.53212357 -CAC 0.7345274 1.0431032 0.29730815 -0.2757171 -0.47087806 -0.7933212 -0.28339517 -0.114861846 -0.9261885 0.41300616 -0.0349493 -0.8107415 -AGT 0.22962996 -0.26885012 -0.88407564 -0.3972407 -0.20175998 -0.4625116 -0.62217456 -0.2554984 -0.832308 -1.0450097 0.89251083 -0.7430719 -AAC 0.5210772 0.9033761 0.37464118 -0.29059535 -0.32498106 -0.8842815 -0.5109792 -0.41306195 -0.62410265 -0.74991405 -0.50784206 0.03738456 -AATG 0.95063853 0.45680517 -0.32676557 0.88541424 -0.97196716 0.35570726 -0.6755863 -0.9051371 -0.5517976 -1.3231901 -0.14064175 -0.3378231 -GTT 0.4857864 0.017474527 -1.1865479 -0.27826005 -0.0945596 -0.8594584 -0.31431186 -0.560169 -0.56880623 -0.60651135 0.92628694 -0.16785917 -ATC 1.1361276 0.12738456 -0.08180339 -0.6702652 -1.1824161 0.16442345 -1.1810905 -0.16286129 0.011042226 -0.093240015 0.18164487 -0.19824968 -TGC 0.80713665 0.66024536 -0.7325103 0.59528834 0.53290427 0.18353306 -0.12648822 -0.7705151 -0.38942507 -0.018389376 0.13961455 -0.809866 -GAAT 1.0795788 0.52936304 -0.3639585 0.5081809 -0.9812957 0.71870863 -0.5894187 -0.9242656 -0.86071175 -1.0473521 0.15503724 0.19590273 -TTTT 1.3307804 0.71026 -1.5042809 -0.43971366 0.09840969 -1.3384615 -0.1791949 -0.39835438 -0.54126114 -0.49679792 0.6529668 0.69341034 -GCA 1.1639422 0.83422774 0.07673155 0.5970839 0.25846735 0.23916349 0.6326375 -1.3106818 -0.3094636 -0.005155773 0.6127376 -0.54181755 -TGGA 0.41711384 0.670072 -0.50219184 0.56736475 -1.1307765 0.11007773 -0.54329586 -0.41742915 -0.9207499 -1.4260379 0.34256378 -0.013569332 -GAT 0.8543784 0.5984489 -0.9110871 0.40519872 -0.6674236 0.52461976 -0.46893752 -0.34097698 -0.64252627 -0.07999676 0.58377564 0.6932478 -AAAA 1.3658854 0.0120977005 0.29304898 -0.44058293 -0.5852816 -0.7681353 -0.8009514 -1.1507938 -0.5865382 -1.3933136 -0.37924817 -0.05445166 -GGAA 0.8455107 0.5157944 0.23419137 0.5377589 -1.059593 0.2506183 -0.41223922 -1.1306478 -0.5489589 -1.739747 0.36898062 -0.0052034906 -GCT 0.2676802 1.1769623 -0.23982501 0.18688528 0.93774396 -0.023702407 -0.5464227 -0.57960904 0.033923928 -0.13517262 0.7135101 0.21777968 -TAG 1.1667732 0.37051216 0.31472895 -0.12875251 0.3836893 0.5784688 -0.58605516 -0.2737918 -0.7329368 -1.2439095 0.7423677 0.47185683 -ATGG 0.8258724 0.7122323 -0.47750574 0.78550786 -1.0501916 0.38147038 -0.73582464 -0.61560416 -0.10410152 -1.5707214 0.12879016 -0.07985207 -CTA 1.1444172 0.46853957 0.13744988 -0.1618552 0.3582704 -0.28420666 -1.3252885 0.09227222 0.083120145 -0.34128684 0.07674316 0.28884658 -AGC 0.41009575 0.9325931 -0.5006397 -0.7938032 0.80392665 0.4372339 -0.29859236 -0.8633703 -0.5398675 -0.34935302 0.06563354 -0.59392637 -GGG -0.2072919 1.1909524 -0.30925384 -0.22532244 -0.9497395 0.18584956 -0.15213586 -0.40894803 0.07818191 -1.2001468 0.88925445 -0.13224635 -CCC 0.3569593 1.1837828 -0.21104082 -0.14687048 -0.37209606 -0.3353082 -1.0290523 -1.1292073 0.5865217 0.3530078 -0.3945036 -0.59824723 -GTA 1.1341023 -0.054717798 -0.10959821 0.7244256 0.027457535 -0.2963953 -0.8115 0.1900646 -0.374634 -1.2658372 0.63951033 -0.32700452 -ACC 0.36049947 1.2064255 0.18645899 0.15612374 -0.5010631 -0.6420314 -0.74415934 -0.7614712 0.005041891 0.011049109 -0.7846209 -0.3257418 -GGT 0.25458142 0.434479 -0.65544724 0.1282124 -0.71168286 -0.32963523 -0.361763 0.21657446 0.09316287 -1.0665251 1.1911145 -0.33152947 -GAC 0.14509755 1.2569959 0.31000006 0.056993954 -0.9021075 -0.17450285 -0.6088547 -0.057713285 -1.0225165 -0.36610147 -0.10667321 0.3116522 -AAAT 1.6377289 -0.28162777 -0.21242134 0.21198897 -0.90221846 -0.18176724 -0.91055274 -0.952902 -0.5618177 -0.82414013 -0.26441228 -0.012659225 -TAC 1.5093983 0.9823307 0.27345473 0.15384142 -0.0034509765 -0.60899705 -0.27524728 0.36132666 -0.26867953 -0.19351278 -0.15655777 -0.02857609 -ATTT 1.515932 0.41673175 -1.711714 -0.066131614 -0.15958045 -0.46771 -0.3425308 -0.36378324 -0.87431 -0.108163565 0.12618639 0.44522616 -GCC 0.18613443 1.1069031 -0.28375176 0.28462285 0.35612148 0.28360534 -0.72791064 -1.1973163 0.5868137 0.14234735 0.22798808 -0.7470605 -GGC 0.15467934 1.5623944 -0.4033603 -0.089678906 0.096991904 0.65349394 0.089860104 -0.33106413 0.21235947 -0.46008047 0.6845904 -0.7947287 -CATT 1.3826648 1.0474223 -1.4343545 -0.27847886 -0.65036 -0.3702724 -0.09231834 -0.2719433 -0.53924125 0.75323904 0.2583965 -0.12792724 -GTC 0.32745856 -0.17553332 -0.3373791 -0.39778963 -0.9293104 -0.784606 -1.1059755 -0.32942665 0.021764858 -0.23097804 1.0519376 -0.81295747 -AGAA 0.8901115 0.42155832 0.022592684 -0.705326 -0.0031770878 0.48195753 -0.7514257 -0.89694977 -1.224957 -1.1294315 -0.13661025 0.24029033 -ATGGA 0.9011541 0.78788507 -0.27960014 0.61629325 -1.1984121 0.26619506 -0.836997 -0.8772192 -0.54209507 -1.7328866 0.10548057 0.08332881 -ATTC 1.6398054 0.32128468 -1.1633211 -0.4892242 -0.2785981 -0.236733 -0.9127784 -0.50225264 -0.25426546 0.6884492 0.36494774 -0.05242907 -GAATG 0.77220786 0.81714803 -0.47426552 0.91403216 -0.9963241 0.6537059 -0.6391849 -1.0336492 -0.99121827 -1.5111371 0.16882138 -0.06619393 -GAAA 0.6212371 0.3593201 -0.039874434 -0.23809524 -0.61827624 -0.33986065 -0.4315396 -1.1638278 -0.82780284 -1.3715031 -0.14427802 0.19052814 -TGGAA 0.8921191 0.68139833 -0.60633415 0.5596144 -1.2319175 0.25406066 -0.3892416 -0.6765169 -0.7585718 -1.8235933 0.061682172 -0.21637125 -TCCA 1.2809864 0.71665525 -0.21315277 -0.11261379 -0.7329006 -0.9937448 -0.65248847 -1.3007464 0.10150081 1.0678769 0.46595365 -0.44363713 -AATGG 0.9124296 0.6689113 -0.38094524 0.6676504 -1.2821835 0.32327065 -0.7348713 -0.8547408 -0.60751116 -1.5913824 0.12930791 -0.19503461 -TTCC 1.2093353 1.1143734 -1.3698404 -0.5144027 -0.55851805 -1.0800703 -0.6331467 -0.74053246 0.7557122 0.3219616 0.1882593 -0.3366617 -TTCT 0.8586375 0.6119592 -0.584158 -0.4213121 -0.039217822 -1.0067753 -1.1460207 -0.26355323 0.4213609 -0.11669545 1.0745703 0.69665 -TTTC 0.9480174 0.5032 -1.0256952 -0.9646273 -0.21187769 -1.1542215 -0.5467362 -0.50213146 -0.0146041615 0.020297373 0.787662 0.13059627 -AAAG 0.82495433 0.34549856 0.4241291 -0.5969952 -0.21808779 -0.10847329 -0.24742983 -1.4594665 -0.46510437 -1.7638693 0.22496362 -0.14749822 -TTTG 0.4975354 0.89404064 -1.3835653 0.42701873 0.030086486 -0.7764353 -0.05751193 -0.7577621 -0.4920471 -0.4323522 0.71278507 0.5768013 -CAAA 1.2218317 -0.11787928 0.36365172 -0.49312615 -0.6705896 -0.519127 -0.56193495 -1.2171739 -1.092351 -0.45829552 -0.15945333 -0.615914 -GGAAT 1.1199704 0.64113945 -0.20516999 0.7891125 -1.1208216 0.5206124 -0.619264 -1.2153198 -0.45230266 -1.6985375 0.55718124 -0.00923774 -CTTT 0.6384921 0.95926964 -1.3048373 -0.69887495 0.5911771 -1.2967852 -0.80830854 -0.4777091 -0.50212395 -0.09924123 0.30288488 0.51075876 -TAAA 1.7947628 0.011898225 0.29482654 -0.059621874 -0.10270499 -0.72398156 -0.6991904 -0.6479921 -0.21408148 -1.3047965 -0.25988778 0.20678142 -AATA 1.9868565 0.1706025 0.18490258 -0.18004437 -0.15986946 0.5825928 -1.0330865 -0.46827108 -0.59405774 -1.0889364 -0.2423872 0.106433064 -AATT 1.6122895 0.2970403 -1.0570492 -0.10714284 -0.5798269 -0.26891375 -0.14069808 -1.309951 -0.3557603 -0.6326418 -0.092443384 0.60250473 -TGAA 0.42835873 0.25628033 -0.7154029 0.7067886 -0.5208862 -0.59479576 -0.6384632 -1.5443535 -0.9884591 -0.8867766 -0.22861774 0.4592693 -CCAT 1.523125 1.0810828 -0.85592055 -0.08794938 -0.6925371 -0.68094575 -0.5118628 -0.59501 0.5843623 0.6895983 0.46671084 -0.48201934 -TTTA 1.7106441 0.6894407 -1.2833728 -0.5421716 0.18655838 -0.6513746 -0.12281954 0.13012 -0.09382826 -1.0397547 0.022982614 0.37397355 -TTCA 1.5943848 0.5402642 -0.3985694 -0.98863804 -1.0299115 -0.6984224 0.2231084 -0.37794515 -0.19747433 0.19449745 0.8023259 -0.056821715 -ATAT 1.8852934 0.1972241 -0.83526766 0.070160694 -0.5544956 0.38459903 -1.1523482 0.31487453 -0.32040876 -0.35276428 0.062416103 0.24270342 -TATT 1.9825954 0.64617693 -0.9000232 0.31558186 0.067373395 -0.4034156 -0.5692636 -0.06588666 0.2278379 -0.13799544 0.5366391 0.7050644 -TTGA 0.36984292 0.59138626 -1.1599166 0.30106488 -0.26031002 -0.51614314 -0.5002528 -1.32449 -0.8941346 -0.46325377 0.15349983 0.8712656 -CACA 1.2430531 0.92571765 0.5024984 -0.38609353 -0.7055302 -0.58846974 0.11852313 -0.22882617 -1.2874076 0.26338226 0.07033969 -0.85055155 -TCTT 1.0105523 0.843424 -0.3690808 -0.35304648 -0.0044831657 -1.1351793 -0.75093216 -0.50956327 -0.19678798 0.12965253 1.0557895 1.1482273 -AAAC 0.62821406 0.90728074 0.4305184 -0.40537533 -0.46663678 -1.0868338 -0.4947418 -0.7486776 -0.8220637 -1.0039145 -0.79841787 -0.057986006 -GTTT 0.5609896 0.28156424 -1.2677611 -0.37109554 -0.114495374 -1.2351938 -0.04325905 -0.36109197 -0.39518976 -0.68414265 1.1922576 -0.20652212 -TGTG 0.25581804 0.3595508 -1.0003041 1.3289957 -0.052480187 -0.9963745 -0.90570396 -0.29971004 -0.74108124 -0.38710636 0.79445803 -0.41778758 -AAGA 0.9519904 0.33221084 0.13818805 -0.6383474 -0.32552177 0.31493014 -0.5680095 -1.336321 -1.1068131 -1.0896682 0.02005807 0.49079838 -TGTT 0.7366212 0.33355334 -1.6384473 0.33329996 -0.052589204 -1.3677771 -0.547487 0.08021728 -0.6248116 -0.42258546 0.9543894 -0.14884773 -TTAT 1.8420691 0.5773551 -1.2518451 0.18994142 -0.23325846 -0.41968086 -0.63344395 0.24413292 0.08655447 -0.6421708 0.2491012 0.64042854 -CAGA 0.6761254 0.61072224 0.17384511 -0.6706408 -0.38809347 0.60724753 -0.57305914 -0.69364387 -1.9025748 0.015859507 0.20705247 -0.3172916 -TTAA 1.6376983 0.31119487 -0.60601956 -0.18311259 -0.00037212073 -0.76437837 -0.22282547 -0.67386574 0.17297973 -1.3407477 -0.14192677 0.37250856 -ATGT 1.1079456 -0.25491905 -0.7498887 1.2917651 -0.5912396 -0.6098504 -0.9672118 -0.2502123 -0.383868 -0.67552763 0.45480573 -0.65916336 -TCAA 1.5483466 -0.07221437 0.83026826 -0.3751701 -0.8624132 -0.7397671 -0.17205454 -1.5305988 -0.19922264 -0.19763665 0.87789416 0.11848807 -AACA 1.2486757 0.79935336 0.60187304 -0.010982422 -0.70287293 -0.43701628 0.072890036 -0.50109166 -1.2207775 -0.8831545 -0.41369396 -0.4917081 -TGCA 1.2164687 0.5959563 -0.53884983 0.6588119 0.43262798 0.0709989 0.34460837 -1.031058 -0.654801 -0.020989837 0.25500983 -0.9943949 -ATAA 2.0755465 0.1946744 0.06300367 0.040537644 -0.19744757 -0.07583853 -0.97634894 -0.3903662 -0.38049614 -0.8458354 -0.7523682 -0.24175474 -ACAA 1.5081416 0.87840664 1.1718476 0.15495081 -0.8529524 -0.7149669 0.26983264 -1.1751454 -0.6207282 -0.60785997 -0.3273895 -0.32280305 -TCTG 0.41284767 0.4593388 -0.11623752 0.46008006 0.2573425 -0.21169822 -1.162477 -0.46386757 -0.3997402 0.36262083 1.1539123 0.3737004 -ACAT 1.7302911 1.2539062 0.11354617 0.49816146 -1.1394255 -0.5309349 0.5088279 0.124657094 -0.42240041 0.06412861 0.060784414 -0.018286686 -TGAG -0.13258417 0.55491585 -0.7404347 0.060879286 0.1830123 0.24051262 -0.79851496 -1.0651118 -1.3455216 0.110598885 0.78158396 0.2800303 -TAAT 1.8089228 -0.17149182 -0.3352146 0.7341683 -0.1704826 -0.21416245 -0.9939573 -0.60624164 -0.13084976 -0.9547678 0.19914898 0.29260308 -AGGA 0.6211154 0.79889745 0.05442286 -0.9050254 -0.86091274 0.31139696 -0.45178935 -0.5945437 -0.8145155 -1.8030357 0.13951278 0.008933143 -TTGT 0.75179875 0.38346773 -1.0151614 0.90410435 0.033959046 -1.4313895 -0.49745187 -0.60044074 -0.1524133 -0.681921 0.8921349 0.35624072 -GAGA 0.12504737 0.77873385 -0.27062574 -0.37611267 -0.5385785 0.5418301 -0.71822 -0.8318907 -1.750423 -0.64874023 0.46860006 0.7422754 -ACAG 0.8943228 0.93396825 1.0189167 -0.32505575 -0.18216023 -0.045276016 0.2511913 -0.3867831 -1.5500749 -0.6039539 0.709008 -0.22143489 -TCCT 0.57961166 0.80554897 -0.66116905 0.02930414 0.33335564 -1.0820338 -1.3985876 -1.0287381 0.49674404 0.460335 0.7559431 0.35473606 -TTTTT 1.6260337 0.78992397 -1.7493787 -0.45750993 0.15734364 -1.495448 -0.2526392 -0.6559719 -0.6019848 -0.45443246 0.61283845 0.9627947 -CAAT 1.7061368 -0.17592034 -0.44880027 0.39307132 -0.49820098 0.14901476 -0.48922426 -1.1851535 -0.9658162 0.16301985 -0.034047607 -0.6665282 -ATTG 0.92654055 0.6201933 -1.5476034 0.60334694 -0.19594374 0.06334043 -0.08492458 -1.1264663 -0.6879988 -0.5273601 0.10132441 0.1634021 -AGAG 0.28450674 0.3369351 -0.05613654 -0.73425865 0.091837786 0.6234785 -0.61026096 -0.85364187 -1.7815541 -0.8845049 1.0242447 -0.1443588 -AAGG 0.67150897 0.7392422 0.30151352 -0.624345 -0.6007539 0.1752895 -0.05399748 -1.144548 -0.089608945 -1.927444 0.58781713 -0.08437486 -ATTA 2.033932 0.6164921 -1.1659145 -0.5402855 -0.21748853 -0.18290836 -0.48161158 0.14353815 -0.18725792 -0.6193454 -0.5393237 -0.00037344324 -AGTG -0.17123125 0.17267923 -0.58402085 0.38760868 0.020640241 -0.25336945 -0.8465823 -0.6989201 -0.9827872 -1.5208619 0.79850173 -0.87678254 -AATC 1.2576263 -0.057487383 -0.025579227 -0.63555115 -1.1617669 0.4094985 -1.2929686 -1.0318738 -0.116582446 -0.36777192 0.035699904 -0.05990165 -TCTC 0.6824106 0.45982927 0.45433623 -0.74138427 -0.71853197 -0.8742796 -1.2433177 -0.4319574 -0.0659887 0.5234171 1.3437176 0.2587931 -CTCA 0.7346697 0.66935724 0.68507516 -1.1519988 -0.64968604 -0.43920925 -0.7141531 -0.018328436 -0.43804777 0.13430789 0.68219465 -0.3618917 -GGAG -0.04841218 0.7902844 -0.37619543 0.1252229 -0.5282166 0.56031215 -0.38222653 -0.7777184 -1.0351322 -1.1678245 1.3847871 -0.12762548 -AAAAA 1.618655 -0.08744248 0.2473312 -0.7008165 -0.6015499 -0.95826364 -0.8753826 -1.4437009 -0.7939785 -1.6356763 -0.5626588 -0.052779093 -AGTT 0.52860445 0.010454425 -1.110651 -0.8354247 0.39485478 -0.8195285 -0.12720832 -0.48162943 -1.0833063 -1.050585 0.9996633 -0.3134801 -TAGA 1.477714 0.52405155 0.31639948 -0.1635559 0.14161949 0.8356903 -0.9431233 -0.4111157 -1.0784974 -1.059215 0.34568045 0.9108333 -CCTT 0.47974163 1.1982208 -1.3717068 -0.676159 0.22205625 -1.2884259 -0.94734776 -0.73068625 0.31333247 -0.01781936 0.04055461 0.19603536 -TGTA 1.295447 -0.14091583 -0.5879109 1.04152 0.12163678 -0.6394305 -1.0007479 0.21088879 -0.587444 -1.2102 0.39581004 -0.26358312 -GATT 0.96267873 0.9576042 -1.3557135 -0.2344445 -0.78585845 0.367121 -0.17609607 -0.7461891 -0.43029013 -0.056784492 0.5596271 1.0471065 -TCAT 1.9036573 0.60072553 -0.08035527 0.033751782 -0.8276307 -0.2593675 -0.13764115 -0.16074656 0.17605387 0.55924314 1.5014066 0.040304452 -ATGA 0.7312118 0.44998863 -0.82758605 0.6513881 -0.6779345 0.3735919 -1.1680326 -0.89009064 -1.0274422 -0.6177524 -0.737708 -0.0015663126 -CGA 0.40616664 0.6310988 -0.14799576 -0.049863953 -1.1863253 0.48730558 -1.1539577 -1.1783087 -0.3044638 -0.3450703 0.29581463 0.3226166 -CTTC 0.7837983 0.8418358 -0.3083354 -1.1950248 0.2795021 -1.0787411 -0.9758276 -0.24315326 -0.44930026 0.53696275 0.51061434 0.03557473 -CTGT 0.313232 0.46612906 -0.3035047 0.7415621 0.3919677 -1.3849086 -1.4361949 0.22035931 -0.41476208 -0.07062181 0.98548895 -0.1915431 -ACTT 0.5737617 1.3825607 -0.13688329 -0.36936447 0.08310539 -1.5507461 -0.19358501 -0.27521396 -0.81649745 -0.50673157 -0.14385249 0.86678684 -CACT 0.45094913 1.41191 -0.0791843 -0.43787876 -0.03435091 -1.3064159 -0.63459 0.13310742 -0.9258685 0.47677395 0.09511372 -0.24025905 -CTCC -0.0109356465 1.34288 -0.15297215 -0.79185617 -0.33800188 -0.8500496 -1.4526737 -0.5457689 0.10025026 0.61965984 0.43127525 -0.53876555 -TATA 2.3788376 0.42256048 -0.2379176 0.4186239 0.12045821 0.11638625 -0.8659622 0.43489155 -0.28465492 -0.6119478 0.1410956 0.26357868 -AACT 0.4052453 0.74792284 0.44071808 -0.35255715 0.24719788 -1.3208783 -1.0265894 -0.48582217 -0.7383421 -0.7994422 -0.3163317 0.46574938 -ATCT 1.1526575 0.26355553 0.040272586 -0.40630093 -0.57432044 -0.2607112 -1.4724011 0.18289198 0.14423965 -0.052556667 0.58400655 0.4239989 -ACAC 0.97738886 1.7369926 0.68126273 0.20548652 -0.68578935 -0.9673344 0.18316793 -0.2846507 -1.2083184 -0.052092258 -0.48828208 -0.43197525 -GAAG 0.25674376 0.58261466 -0.0051507563 -0.32803494 -0.23640648 0.4508697 -0.34758458 -1.3393368 -0.8879302 -1.4038593 0.5411108 0.26061854 -TGAT 0.8987629 0.49466008 -1.3887764 1.1877309 -0.4113708 0.06777276 -1.0069722 -0.7308552 -0.594015 0.17382462 0.7646516 0.74137384 -GAGT -0.0062230863 -0.06617919 -0.5725225 -0.061904743 -0.5045625 -0.121501364 -0.7119445 -0.6234486 -1.4196421 -0.93115366 1.4510485 -0.23633562 -TCCAT 1.6998954 0.9177735 -0.94490224 0.068497986 -0.7050938 -0.8572559 -0.73426634 -0.9309091 0.09784307 0.9788122 0.82545966 -0.33680466 -CTCT 0.20937672 1.0809659 0.018986082 -0.59644 0.21659152 -0.74824274 -1.733861 0.14108616 0.11160635 0.056649666 0.93990034 0.58316475 -CTGG -0.28812048 1.7375152 -0.047685552 0.5012763 -0.6595785 -0.1590539 -0.8019772 0.19132525 -0.068977565 -1.0416061 0.44837385 0.11531699 -AGAT 1.1827881 0.43555173 -0.43366447 -0.33348882 -0.26617092 1.0884285 -0.68255776 -0.45037782 -0.97040784 -0.16874248 0.50560683 0.6572497 -TCG 0.40667686 0.7940117 -0.25897673 -0.22599597 -1.3825603 0.41753897 -1.099775 -1.0429357 0.021579625 -0.18897878 0.5471737 0.42523518 -AGCA 0.97035176 0.79762083 -0.27371526 -0.7425818 0.62688345 0.37024903 0.4023385 -0.9650272 -1.1592467 -0.4287412 0.29614756 -0.93908376 -TGCT 0.49515858 1.2123569 -0.70827425 0.56121475 1.2600837 -0.284943 -0.75017667 -0.27467412 -0.3693078 0.25667948 0.770326 -0.022551343 -ATCA 1.7229334 0.025433779 0.16699602 -0.8491132 -1.5411386 0.18025854 -0.568674 -0.34666345 -0.54416364 -0.40137964 0.38459226 -0.6257216 -CCTG -0.5467662 1.377133 -0.6496333 0.541273 0.17738415 -0.39763695 -1.5108343 -0.3060275 -0.079273865 -0.034670863 0.14512897 -0.6557743 -GTGG -0.049420808 0.6207749 -0.4912474 0.70052356 -0.7282781 0.0028441073 -0.33311456 -0.67503464 -0.49696195 -1.5066005 1.2523565 -0.7289939 -CATTC 1.6675558 0.9964417 -1.0924712 -0.53176665 -0.42898333 -0.5202013 -0.6420502 -0.5107423 -0.13266692 1.008844 0.5863959 -0.5167946 -AAGT 0.49214 -0.46612263 -0.14853257 -0.29628968 0.054153606 -0.77618104 -0.61564773 -1.0226135 -0.59679914 -1.4815784 0.86244 -0.69859034 -TACA 2.071301 0.8469432 0.54477394 0.15603341 -0.07397171 -0.5099901 0.30434108 0.23920187 -0.7348773 -0.24630827 0.22781633 -0.09753298 -TTCCA 1.4858888 0.9755528 -1.133271 -0.55142087 -0.7565342 -1.039856 -0.48551762 -0.959976 0.3925711 0.54709125 0.34293127 -0.4312741 -TCAG 0.6845793 0.45288348 0.57031685 -0.6571496 -0.31450713 0.22260046 -0.13201734 -1.0969126 -0.50567764 0.3394668 1.7957762 -0.058387615 -ACTC 0.31121174 1.0704783 0.63150805 -0.49541023 -0.99511236 -0.93201923 -1.232141 -0.37412763 -0.4631871 0.21464191 0.049034134 0.45366165 -ACTG -0.09963262 1.3374896 0.3807132 1.0923744 0.0033291215 -0.7204862 -0.7460321 -0.081935816 -1.0878189 -0.80123615 -0.08884943 -0.079525225 -CAGG 0.17864072 1.10111 0.23861293 -0.8044601 -1.0122216 0.7097433 -0.1268666 -0.19175872 -0.64909625 -0.34865353 1.1026986 -1.1735158 -TTGG 0.444992 1.2178484 -0.94991153 0.4439875 -0.7022305 -0.25662264 0.33114657 -0.60107374 0.0988257 -1.1059315 0.7722592 0.5994744 -CTGA -0.24241087 0.829999 -0.47788087 0.21203624 0.14609288 0.07501671 -1.5939726 -0.7186617 -1.0538349 -0.09881165 -0.15493669 0.6388205 -TCTA 1.6918931 0.3422822 0.34490794 -0.2475986 0.22973025 -0.5212122 -1.4958494 -0.20818515 0.5345011 -0.11534073 0.97421867 0.716685 -CCAG 0.34970632 0.72976774 0.1306023 -0.7937904 -0.40028965 0.09909364 -0.5914644 -1.1072168 0.11062847 0.17130274 0.6044611 -1.207158 -TCAC 1.1511297 1.0777713 0.832507 -0.2776598 -0.65096015 -0.9790689 -0.07274861 -0.003517864 -0.7965575 0.6786495 0.8810767 -0.3010652 -TGGG -0.11427877 1.4894434 -0.5627992 0.53546125 -0.9039442 0.2600193 -0.2903625 0.026108172 0.2798823 -1.0724608 0.9907938 -0.055736035 -CCCA 0.55476916 0.9181746 0.1756265 -0.27879825 -0.9271869 0.015781978 -0.7052015 -1.4219455 -0.0502724 0.4909748 -0.29806626 -1.3312252 -GTGA -0.15295354 0.17885627 -0.6633797 0.9790562 -0.43546018 -0.31977978 -0.93711674 -0.82977724 -1.2922127 -0.47972244 0.5284556 -0.16340624 -GTGT 0.5113604 -0.07989028 -0.77629983 0.98851186 -0.06649936 -1.1419038 -0.8341434 -0.3001342 -0.37962994 -0.766662 1.3877176 -0.7624774 -CTGC 0.34811723 1.1692532 0.037192754 0.21855287 1.1690426 -0.37979487 -0.75000376 -0.50633943 -0.61317664 0.32824373 0.36337316 -0.64653844 -CATG 0.7931616 0.6834557 -1.0569855 0.8420187 -1.0499045 0.31138194 -0.30914 0.006667399 -0.8442417 0.2342417 0.1456494 -1.0671936 -CCATT 1.5928961 1.2187694 -1.0215372 -0.16937354 -0.6626152 -0.84351885 -0.52245027 -0.9087737 0.45957938 0.59120476 0.45697275 -0.30277896 -TGGT 0.3289749 0.7428588 -0.791908 0.75687253 -0.7321379 -0.3614837 -0.44023764 0.36740625 0.120567314 -1.1363279 1.201444 -0.22112073 -GACT -0.04115811 1.2597989 0.37110132 0.18517627 -0.8949102 -0.5459846 -1.2002044 -0.19881637 -0.8274671 -0.91889554 0.24811797 0.8258009 -CCAA 1.1482319 0.54584616 0.17540051 -0.3967772 -0.7162871 -0.38252956 -0.652934 -1.5602243 0.42236236 -0.0604132 -0.5150168 -0.94619113 -GACA 0.61863303 1.2206521 0.2911643 0.19240372 -0.9444864 0.007465963 0.16441795 -0.34124693 -1.6662507 -0.09390162 0.26168132 0.1171353 -ATAG 1.5535634 0.27624142 -0.15293099 -0.33923468 -0.02422047 1.2625862 -0.8647135 -0.20620945 -0.9062438 -1.2519181 0.40402353 -0.23797175 -ACCA 0.88081557 0.98052853 0.41021594 0.2348691 -0.7917293 -0.24892771 -0.64717686 -0.66727 -0.43439853 0.28400934 -0.6834676 -0.96890897 -CCTC 0.017812876 1.2731719 -0.11039304 -0.9749611 -0.2882892 -0.38701206 -1.5000625 -0.6118399 0.2777233 0.62822163 0.52683103 -0.51333076 -CCAC 0.559918 1.5648967 0.118173175 -0.11063556 -0.596878 -0.9880783 -0.5191687 -0.44707498 -0.101078294 0.5908118 -0.22202384 -0.8858359 -GGGA 0.12485745 1.2737429 -0.07200023 -0.054900534 -1.0466261 0.5180137 -0.22083698 -0.4931337 -0.33160308 -1.4137113 0.54363734 0.3014763 -TATG 1.0578898 0.59937704 -0.6685675 1.2357616 -0.019608604 0.27182305 -0.7865525 0.2058903 0.06399736 -0.6648396 0.3890502 -0.10170527 -ATTCC 1.831105 0.74005735 -1.306589 -0.4063974 -0.26036337 -0.8316926 -1.1053407 -0.8523498 0.13078643 0.6827702 0.20466451 -0.44385955 -GCAA 1.3240372 0.6210614 0.41338766 0.58357686 0.3892813 0.26461938 0.16966727 -1.7393434 -0.21705753 -0.73935276 0.049477886 -0.7884867 -GCAG 0.5627321 0.8519179 0.21757667 0.038363207 0.642073 0.50541747 0.3781759 -1.271798 -0.7715825 -0.3503067 1.3244513 -1.0480074 -ATGC 1.2693328 0.6931676 -0.67942476 0.9112876 0.2999365 0.7329499 -0.39642382 -1.0949517 -0.14821075 -0.2700253 -0.31681946 -1.065427 -CATA 1.8643066 0.6222862 -0.08705762 -0.18842188 -0.31115043 0.35605454 -0.53250253 0.564484 -0.58899325 0.02373995 -0.13204786 -0.6220476 -CAGT 0.72052807 -0.11276053 -0.41831735 -0.4091033 0.19184262 -0.81482947 -0.27182555 -0.30334353 -1.0199252 -0.053773798 1.1469986 -1.4810549 -GCCT -0.010827968 1.1795886 -0.07671236 0.17479819 0.7368041 0.2770959 -1.1995205 -0.9310943 0.7001159 -0.15599406 0.41494733 -0.35380518 -CATC 1.4202474 0.7845323 -0.011900772 -0.5684694 -1.1346977 0.21302155 -0.6896105 0.10345394 -0.40262732 0.91640455 0.5982466 -0.5813223 -GGTG -0.10314678 0.64039016 -0.62892616 0.8798943 -0.64546794 -0.2202118 -0.20929706 -0.36848548 -0.40160635 -1.2804501 1.2052249 -0.5119275 -GCAT 1.5790013 1.1668534 -0.5206059 0.76882434 0.15242769 0.62445736 0.5302501 -0.7966338 0.22327897 0.3247421 0.84795254 -0.48685136 -AGCT 0.24540754 1.0178747 -0.13597937 -0.8673453 1.2776058 0.21268268 -0.739328 -0.6514709 -0.4822517 -0.27622926 0.64363176 0.025998637 -GCTG -0.28651297 1.4065555 -0.56887764 0.8042644 0.8974557 0.24959214 -0.76319855 -0.51012266 -0.4790939 -0.39200544 0.9549075 -0.21761073 -GAGG -0.33032718 1.18991 -0.17496026 -0.14749703 -0.37270084 0.99471235 -0.4280746 -0.77849257 -0.8879002 -0.91085225 1.0934263 -0.14063345 -AGGG -0.123404585 1.1932563 0.116829455 -0.72925824 -0.8208664 0.47998446 -0.19526832 -0.44306004 -0.17509648 -1.591634 0.9919936 -0.6291183 -TGTC 0.34418803 0.113273256 -0.5002953 0.61556125 -0.867287 -0.9061943 -1.17732 -0.06261294 -0.5095955 0.40286583 1.257599 -0.6396919 -CAGC 0.73692393 1.2434766 0.16094388 -0.9131852 0.6211785 0.43589783 -0.3808341 -0.6536888 -0.8987606 0.5954947 0.4455905 -1.3238358 -AGGC 0.16472223 1.4537617 -0.08101959 -0.48589003 0.32031608 0.98262167 -0.32900932 -0.2923464 -0.20715353 -0.61649275 0.50767833 -1.0215626 -GCTT 0.4355046 1.3089013 -0.7798124 -0.43789262 1.2478333 -0.2467675 -0.16492216 -0.97524846 -0.062322546 -0.30976322 0.67751724 0.35769287 -TCCC 0.50050044 0.8430423 -0.26542822 -0.10096048 -0.342298 -0.403985 -1.3848276 -1.3166549 0.6686392 0.8040584 0.26529658 -0.37416747 -CTTG -0.018636938 1.0850996 -1.0104551 0.35622844 0.27184436 -0.9568716 -0.6491644 -0.651383 -0.5949908 -0.12195713 0.35981354 0.5183332 -CTAT 1.4624922 0.7664234 -0.5884291 0.28976834 0.26139063 -0.05206809 -1.4425333 0.2656161 0.35561907 0.22427803 0.55225253 0.49575737 -ACG 0.07591473 1.1416782 0.22117555 0.1625569 -0.8617559 -0.20131218 -0.13346791 -0.45900252 -0.75705916 -0.8282094 0.012621389 -0.6219744 -CAAG 0.66415393 0.13995123 0.5640517 -0.8891268 -0.35514966 -0.0014568649 -0.33711728 -1.1508218 -0.6726179 -0.4937443 0.577939 -0.78106314 -AAAAT 1.7234825 -0.21989684 -0.037823696 -0.13657063 -0.88991815 -0.25325558 -0.88757 -1.1796795 -0.4454126 -1.080348 -0.34274277 -0.042485565 -CCCT 0.13769278 1.459654 -0.43985543 -0.2487647 0.118648015 -0.5614686 -1.5417765 -0.9276236 0.67150766 0.28546333 -0.21025692 -0.07107832 -CTAA 0.9884546 0.2330366 0.7377819 -0.13477166 0.6198083 -0.48995954 -1.4164078 -0.617926 0.048617244 -1.0266026 -0.11517756 0.21656387 -GAAC 0.086714245 1.2693198 0.10813256 -0.033711497 -0.7101836 -0.41580117 -0.43177065 -0.54322845 -1.0561657 -0.8647421 -0.5654547 0.03165149 -CACC 0.39878133 1.4435796 0.259203 -0.35468346 -0.5410669 -0.9962763 -0.89453834 -0.33845836 -0.36642268 0.5902832 -0.4037141 -1.3592359 -AGAC 0.39803928 1.3507494 0.49026316 -0.5086458 -0.4606134 0.14959289 -0.59039706 -0.360339 -1.4769794 -0.36404413 -0.30605918 0.32968056 -GTAA 1.4368992 -0.22439028 0.17713319 0.71475756 0.0041361377 -0.6115761 -0.8724101 -0.31605142 -0.39436486 -1.6523627 0.4063646 -0.52601457 -TTGC 0.94362104 1.1595893 -1.1061102 0.56375474 0.8657778 -0.3605847 0.19296996 -1.1676544 -0.07958274 0.09388401 0.4399256 -0.3363151 -TTAC 1.5962368 1.1625227 -0.23072626 0.09182574 -0.2076057 -1.245643 -0.15323651 0.48255488 -0.28713593 -0.2445612 -0.13197568 0.17841682 -CCG -0.2673787 1.2964648 -0.4034323 -0.1814447 -0.6402361 -0.36891642 -0.60833615 -0.75429404 0.27639654 -0.08815327 0.28939524 -0.66035336 -GATA 1.3854563 0.696474 0.04808589 0.20110719 -0.29582378 0.9670516 -0.95288897 0.066954754 -0.7791319 -0.62925404 0.0015551158 0.61581516 -TACT 1.2944326 1.0986469 0.28341225 0.36830658 0.41198593 -1.0264654 -1.0025284 0.5518917 -0.40502465 -0.34777424 -0.038333304 0.580984 -ATTTT 1.7444968 0.30980745 -1.5575396 -0.15707758 -0.17124906 -0.7075739 -0.31375656 -0.563288 -0.7898238 -0.015355912 0.2766584 0.5462837 -GATG 0.4772111 0.5786329 -0.9494409 1.2218707 -0.6963188 0.7576734 -0.8124068 -0.39833856 -0.7166756 -0.19028011 0.80428463 0.03815003 -AGTA 1.2172556 -0.10536857 0.13302763 -0.2715382 0.68561155 -0.19169295 -0.86509246 0.32217914 -0.9408454 -1.7726363 0.6220068 -0.65364164 -TTAG 1.0888511 0.5402163 -0.7675132 -0.76177 0.8964762 0.036156904 -0.3056152 -0.19257624 -0.22759824 -1.0258616 0.689941 0.36882502 -GGAC 0.17654422 1.5103168 0.65196323 0.36694545 -1.1706308 -0.26833892 -0.70511526 -0.23613791 -0.7494934 -1.0016034 0.27402174 0.40805823 -TGCC 0.48906013 0.8279226 -0.96569026 0.52820206 0.5435657 -0.12486858 -0.97217613 -0.7738509 0.23637198 0.3139387 0.12615776 -1.1358026 -ACTA 1.2167996 0.9859694 1.0607709 -0.03159209 0.3790551 -0.61511415 -1.1904825 0.13009416 -0.47368476 -1.0630345 -0.3439447 0.5501246 -TTTCT 1.113165 0.73564696 -0.8529971 -0.69436365 0.20001543 -1.3606682 -1.0669457 -0.57137966 0.2643728 -0.05917248 1.1668695 0.95349914 -TATTT 2.2971447 0.62274235 -1.1377963 0.38526872 0.07866084 -0.5224154 -0.37257156 -0.16330993 -0.12633513 -0.4316754 0.6945343 1.1307132 -AAGC 0.8655588 0.8991439 0.081577234 -1.0240391 0.80320084 0.46847904 -0.23013134 -1.4092953 -0.33778077 -0.7352274 -0.22689456 -0.55719095 -AGCC 0.050076935 0.9552114 -0.34206444 -0.86251384 0.44652247 0.5665976 -1.2193187 -1.0953826 -0.024175951 -0.28793305 -0.13975166 -1.1253835 -CGG -0.08049527 1.3651924 0.05045349 0.20453587 -0.89978355 0.24259456 -0.31955257 -0.51120496 -0.06770693 -0.89761347 0.38926637 -0.52325827 -TAGT 1.3438429 -0.13399404 -0.21266335 -0.13850388 0.7717496 -0.44176462 -0.52266383 0.08499103 -0.26616055 -1.1635454 1.2318449 -0.42015788 -CGT 0.010971476 0.7079547 -0.5235112 0.049098995 -0.2715833 -0.782817 -0.45830584 -0.28121442 -0.051884744 -0.047007877 0.8942102 -0.7639019 -TTTTG 0.8376381 0.9628032 -1.5503109 0.3905338 0.06518272 -1.1706423 -0.0056729214 -0.7921742 -0.55487233 -0.48064744 0.84006363 0.7152567 -AAATA 2.1338348 -0.100894526 0.17532258 -0.099521056 -0.3540903 0.20536928 -1.1074368 -0.6526585 -0.58755004 -1.0685457 -0.4183944 -0.08374647 -GTCA 0.7841921 -0.21793844 -0.031933863 -0.027997447 -1.1769432 -0.48927298 -0.4304065 -0.1895989 -0.69731265 -0.11406103 1.2941742 -1.0790622 -ATCC 1.1099178 0.482369 -0.45274383 -0.27872804 -0.90487635 0.13582702 -1.4313877 -0.73845536 0.5382738 0.37951657 -0.14412571 -0.50818336 -TAAG 0.99357325 0.15380464 0.41000026 -0.2293319 0.5053632 -0.012888554 -0.608437 -0.4371195 -0.17371054 -1.4608215 0.77997756 0.23398004 -GGAT 0.87841517 0.8743998 -0.7610579 0.3665939 -0.96199745 1.0067954 -0.40406573 -0.40749088 0.14184333 -0.47301167 0.92804205 0.5288079 -TGGC 0.3194294 1.6001874 -0.671966 0.6022451 -0.06295017 0.36257866 0.11246884 -0.15835519 0.061746582 -0.48760173 0.57279027 -0.817768 -ATAC 1.6636281 0.9815969 0.380617 0.45079824 -0.3358861 -0.0827513 -0.84414035 0.4576633 -0.4709054 -0.124580815 -0.4966852 -0.15147738 -GTCT 0.08656397 0.22760193 -0.042060643 -0.19395177 -0.3399301 -1.0406533 -1.4079943 -0.02502183 0.17112313 -0.48755008 1.3742502 0.037104767 -GGCT -0.06619197 1.745339 -0.12736657 -0.113140985 0.526309 0.32133195 -0.3768248 -0.22290161 0.15824312 -0.474165 1.2761016 0.13188778 -GGCA 0.8064357 1.5182316 -0.0043095155 0.18382382 -0.29173514 0.7532603 0.64909977 -0.36751086 -0.35449842 -0.54218817 0.62526125 -1.1644198 -ACCT 0.26654813 1.318279 0.21370348 0.28734294 -0.010422246 -0.81436414 -1.298299 -0.08270462 0.032142986 0.014183291 -0.61501366 -0.14704438 -AGGT 0.2708533 0.24824958 -0.33509964 -0.50126845 -0.25427297 -0.04042011 -0.24758461 -0.0018670345 -0.36861885 -1.3122634 1.4747962 -0.50578594 -TATC 1.6548759 0.40666127 0.056798212 -0.15964669 -0.47181335 0.08273253 -1.2736996 0.33146295 0.15863466 0.17280258 0.6492927 0.35687017 -GCCA 0.6150488 0.80562365 -0.36218628 0.37777567 -0.0058237147 0.11951093 -0.24301213 -1.3912033 0.054129552 0.2757744 0.09653519 -1.3410789 -AAATG 1.2181057 -0.087686054 -0.3756522 0.6291728 -0.95408726 -0.12003467 -0.72482836 -1.300438 -0.7242727 -0.9632786 -0.34283417 -0.7987546 -AAAGA 1.049172 0.4097712 0.40624678 -0.7497031 -0.46434686 0.1414353 -0.51030296 -1.4691023 -1.1906685 -1.4476664 -0.086176775 0.25754473 -GAGC -0.13501364 1.1640208 -0.48869142 -0.32690868 0.5269266 0.67465764 -0.47109178 -1.2269499 -0.962184 -0.05316758 0.47018316 -0.37511748 -GTAT 1.549941 -0.13394246 -0.6015346 0.7867614 -0.08129446 -0.051291466 -0.99385226 0.4063949 0.0036054207 -0.8358829 1.0529256 -0.27528754 -GGGG -0.38767433 1.7085415 0.013939331 -0.10037347 -1.1167932 0.25256848 -0.26846623 -0.41035876 0.10408643 -1.3503244 1.3151882 -0.29321197 -AGAAA 0.6815935 0.44179443 0.29507327 -0.9664873 -0.46021122 -0.068060875 -0.9223295 -1.2183188 -1.281212 -1.4321307 -0.23965472 0.27664182 -GTTG 0.06812496 0.45313072 -1.3423673 0.7286195 0.06598646 -0.5927183 -0.2652396 -0.8305121 -0.8896788 -0.7620228 1.2000415 0.023441726 -TAAAA 1.9091874 -0.1595756 0.027691241 -0.24284348 -0.039379764 -0.79508996 -0.83683324 -0.73947823 -0.3882305 -1.341354 -0.34850824 0.12831499 -CAAC 0.7901995 0.8790132 0.61834145 -0.55068433 -0.37844834 -0.9480379 -0.30736697 -0.6710614 -0.914208 -0.03856054 -0.3712588 -0.82538825 -AACC 0.33845413 1.114839 0.08168433 0.012545182 -0.435541 -0.5092696 -1.1025784 -0.88019466 -0.08235331 -0.6392972 -1.3414128 -0.7238691 -CTTA 1.1555856 0.9546098 -0.63982624 -0.6933357 0.8210544 -0.51782286 -0.8965584 0.3383553 -0.12013167 -0.51976484 -0.21293986 0.3155145 -AGTC 0.35517594 -0.082617804 -0.32412046 -0.7928989 -0.4839096 -0.5875874 -1.0553769 -0.5631931 -0.2548421 -0.2559321 1.0914621 -0.86685276 -GGTT 0.43715286 0.67438966 -1.0475929 -0.43294737 -0.42785683 -0.4441199 0.3496389 -0.18187968 -0.026288914 -0.84226215 1.6936154 -0.037173394 -TCAAA 1.4454768 -0.021810742 0.756874 -0.6380299 -1.106068 -0.6859515 -0.4257801 -1.4114718 -0.30256835 -0.5345087 0.50672346 0.03617166 -TTTTC 1.3275367 0.51775986 -1.185691 -0.9882943 -0.16890357 -1.4568696 -0.5732872 -0.77570575 -0.11943989 0.06857609 0.92150843 0.4491192 -TCGA 0.57751554 0.792882 -0.25957656 -0.2552123 -1.3182187 0.5072995 -1.2076334 -1.1001325 -0.19057758 -0.14338608 0.49018672 0.5151951 -TCTTT 1.1536181 0.9227224 -0.7821626 -0.5674669 -0.04191528 -1.4612366 -0.925849 -0.6049201 -0.09976834 0.21894452 1.1225386 1.2270583 -AGAAT 1.33391 0.30940843 -0.16326986 -0.45914015 -0.37647468 0.94932723 -0.9867744 -0.74641305 -0.84185433 -0.97723925 0.18499835 0.4354528 -GCTC -0.0188162 1.3486097 0.09840134 -0.54266924 0.46844316 -0.052739657 -1.0116454 -0.5186095 -0.015949426 0.43374133 1.1616486 -0.3516419 -GTTC 0.4399211 0.16172773 -0.7087665 -0.4647209 -0.43649703 -0.9164429 -0.6976349 -0.4840742 0.12329818 -0.013691794 1.7084336 -0.3592398 -TAAC 1.3511925 0.50601023 0.62784237 0.24904765 0.22576614 -0.958954 -0.6742472 0.28170693 -0.6720608 -1.0088714 -0.28335658 -0.20658703 -GGAAA 0.6416766 0.5960159 0.28134814 -0.109451264 -1.2056583 -0.19142559 -0.34573448 -1.1148176 -0.45318258 -1.9205979 0.12618908 -0.20814288 -AAAAG 1.1321882 0.081426755 0.3176217 -0.84086514 -0.18796617 -0.29084283 -0.42454717 -1.4116875 -0.6628444 -1.6905446 0.0767677 -0.26820487 -CAAAA 1.3409227 -0.041759178 0.44464186 -0.76186657 -0.70060676 -0.8282975 -0.46909338 -1.2029192 -1.0223316 -0.6631183 -0.23822519 -0.70251 -TGAAA 0.4336257 0.13817233 -0.6050544 0.41196468 -0.6845087 -0.6297169 -0.73410416 -1.4296068 -0.9243359 -1.1067253 -0.3037019 0.18528742 -TGAC 0.06108894 1.1311209 -0.20878483 1.017775 -0.7491604 -0.6348838 -0.7230236 -0.47484067 -1.5118724 0.25389183 -0.21043655 0.23009965 -TTTTA 1.8933735 0.5485617 -1.3267624 -0.30893433 0.15269049 -0.9973293 -0.25997615 -0.01745829 -0.32507625 -0.98320735 0.29122064 0.7198707 -TTCTT 1.0214962 0.83648086 -0.9656281 -0.930946 -0.06472003 -1.491586 -0.80274975 -0.65757567 0.2095804 -0.3529338 1.202153 1.046519 -CATTT 1.5367308 1.1083161 -1.4473425 -0.2006938 -0.65496624 -0.9066098 0.44462922 -0.32371497 -0.93874836 0.38119873 0.26599464 0.0016499832 -GGCC -0.20784163 1.4854429 -0.29150632 -0.04709323 -0.020347316 0.7089678 -0.7712093 -0.64488035 0.5337858 -0.35915443 0.52794933 -1.0275495 -CTTTT 0.9272034 1.115751 -1.227801 -0.5853599 0.5804034 -1.5645531 -0.70963776 -0.42870653 -0.56794274 0.031003118 0.4860292 0.7262628 -ACCC 0.36794975 1.4990243 0.3970726 0.20977423 -0.78109026 -0.3440498 -1.3187093 -0.9891657 0.013844778 0.10175725 -1.0398322 -0.76370245 -GAAAA 0.7423573 0.1832292 -0.26412672 -0.29473007 -0.9127664 -0.16523936 -0.71930295 -1.3830185 -0.7455157 -1.507183 -0.33642828 -0.03046029 -TTTGT 0.9677206 0.4561563 -1.4488398 0.7775662 0.10637433 -1.5953819 -0.41576087 -0.51283085 -0.36467686 -0.5527809 1.1526316 0.36373612 -GCAC 0.620174 1.6410942 0.58626264 0.36424953 0.40826184 -0.42698735 0.21907946 -0.43600276 -0.78779984 0.12764642 0.25353587 -1.0609057 -TTGAA 0.59707206 0.5090289 -1.1525402 0.22679001 -0.43690082 -0.71319747 -0.29931417 -1.6056855 -0.7232251 -1.0772406 -0.18539654 0.70644426 -AATTT 1.7562865 0.21462394 -1.010397 -0.16976434 -0.290515 -0.5008115 0.020831848 -1.2245926 -0.40886772 -0.80225694 0.0677395 0.63566804 -TTTAT 1.9405583 0.76031095 -1.6189886 0.03970668 -0.057223573 -0.60714006 -0.6612398 0.25593153 0.020559099 -0.6215405 0.3341511 0.84082913 -ATAAA 2.1897814 0.02854416 0.07044381 -0.06701567 -0.40212396 -0.09395412 -1.0266334 -0.54602325 -0.40282035 -1.1285677 -0.80636585 -0.40007946 -GGGT -0.027019462 0.9100235 -0.60752296 0.22396563 -0.80050755 -0.24378155 -0.21230823 -0.022715392 0.16314332 -0.9956945 1.6685808 -0.3601376 -CCCC 0.28229037 1.6292087 0.04721447 -0.088306874 -0.6323151 -0.13139385 -1.3478166 -1.1909806 0.30269027 0.46101296 -0.60330373 -1.1483648 -CGC 0.13220671 1.5672617 -0.16326624 -0.08483325 0.21083204 0.050445564 -0.25730684 -0.46972433 0.036347825 0.09642013 0.2768526 -0.8702749 -GTGC 0.29018885 0.6398233 -0.64330006 0.8520542 0.7282021 -0.36357856 -0.26297134 -0.9098236 -0.18686222 -0.2269487 1.0204757 -1.3028599 -AGGAA 0.87818176 0.663605 -0.05262052 -0.73941267 -0.7911714 0.39242142 -0.3871646 -0.92889845 -0.6714077 -2.0211346 -0.027548676 -0.37923685 -AAGGA 0.9245168 0.7387913 0.43906182 -0.6169066 -0.90304315 0.22696263 -0.31731027 -1.1846893 -0.776031 -1.9042 0.22883181 0.04300344 -GTTA 1.1302497 0.18661888 -0.71897507 0.036008533 0.16026819 -0.9641765 -0.43311352 0.6454332 -0.40480193 -1.3245244 0.65083987 -0.24396214 -ATTCT 1.4973398 0.42681697 -0.6514199 -0.4176512 0.007357707 -0.2936058 -1.3459885 -0.46488458 0.20985422 0.4059785 0.717689 0.5013902 -GCG -0.11588975 1.4089271 -0.20295012 0.19326054 0.032681588 0.23774727 -0.15733877 -0.6034833 -0.07495252 -0.22054555 0.68007344 -0.7737744 -AAATT 1.9212627 0.03249228 -0.7274216 -0.34579244 -0.316427 -0.7277502 -0.39615738 -1.3134162 -0.4232392 -0.6573466 -0.43241245 0.2318562 -TAGG 0.86740804 1.0109423 0.25020307 -0.043276917 -0.021261066 0.7937195 -0.22502585 0.33294308 0.030981846 -1.2838097 1.0860549 0.21513063 -CCTA 0.7257444 0.7908207 0.11933478 -0.191904 0.5326732 0.13103682 -1.7094095 -0.20404343 0.70032305 -0.43330163 -0.3396166 -0.4408324 -CTAG 0.51959693 0.5665155 0.42946398 -0.5549262 0.84231853 0.14578782 -1.2785814 -0.050902043 -0.2420468 -0.7527591 0.49765185 0.07011183 -AAACA 1.4260116 0.7232743 0.56231695 -0.33637246 -0.9801304 -0.9221293 -0.016084496 -0.8485519 -1.094569 -1.1637871 -0.6486582 -0.42038536 -TAGAA 1.6198596 0.5512769 0.034196347 -0.15307273 -0.05335195 0.75535476 -0.75009847 -0.59327936 -1.0290457 -1.5275673 0.23013005 0.6868256 -GTAG 0.7340099 0.062955216 -0.094943546 0.27799383 0.67687076 0.29081035 -0.7919362 -0.0871668 -0.81118363 -1.497839 1.238019 -0.25031576 -ACAAA 1.751396 0.74337363 1.0033098 -0.24146812 -0.7632085 -0.75208855 -0.06794235 -1.0090716 -0.7811982 -1.0187978 -0.6524612 -0.46155372 -TTTCC 0.94665384 0.72110164 -1.4844826 -0.3813167 -0.27980748 -1.4051946 -0.7418973 -0.9369276 0.32331216 0.32746732 0.42592525 -0.2264116 -TTTCA 1.722115 0.32297346 -0.7872852 -1.0915145 -0.581003 -1.0631465 0.18405816 -0.70357394 -0.42401266 0.14279474 1.0580468 -0.07167669 -GTCC 0.2909789 0.3304533 -0.6810992 -0.22694044 -0.89725405 -0.8201124 -1.1268022 -0.9003224 0.44064838 0.063343965 0.943375 -1.0498743 -GAAAT 1.0431432 -0.02691207 -0.523602 0.25681382 -0.76028484 0.1569258 -0.8452075 -1.1210314 -0.7841268 -0.9914553 -0.13069136 0.2532062 -AAGAA 1.200911 0.3891001 0.14448373 -0.73922175 -0.6123771 0.025283406 -0.5816952 -1.3313279 -0.95350814 -1.664031 -0.21085347 0.28891805 -CAAAT 1.6179712 -0.21746364 0.021840466 -0.10787832 -0.86632794 -0.15232562 -0.7686886 -0.9593945 -0.7945107 -0.25118434 -0.10954838 -0.603924 -AAAGG 0.71624506 0.61475617 0.39046374 -0.6389974 -0.7745664 0.026790507 -0.20770124 -1.1262225 -0.4150317 -2.0125284 0.4123265 -0.41905716 -CGAA 0.633581 0.78730005 0.15271407 -0.045045823 -1.1728263 0.3614181 -1.1273949 -1.062295 -0.33210662 -0.7386064 0.13054074 0.1329366 -ACAGA 1.0256453 1.0079687 0.9542977 -0.43285143 -0.4666907 0.34276897 -0.22159083 -0.6782222 -1.850593 -0.5176138 0.17099983 0.0684742 -TTTGA 0.66817683 0.81007594 -1.5748785 0.03866383 -0.21924464 -0.60045826 -0.43388292 -1.0652231 -0.8924636 -0.23225375 0.21044517 0.99779016 -ACACA 1.636735 1.7046473 1.0684055 0.17346705 -0.8631422 -0.6257755 0.48161831 -0.21075486 -1.6258284 -0.30855396 -0.15169641 -0.72927153 -GTTTT 0.95031613 0.36078492 -1.4476663 -0.24747066 -0.017288547 -1.380235 0.07286251 -0.5494329 -0.4667861 -0.66321254 1.1893662 0.112608194 -CTAC 1.0894623 1.1798269 0.9345998 -0.08982673 0.466131 -0.5803595 -1.1731238 0.40990797 -0.27525887 0.161705 -0.049606774 -0.16238555 -GAAAG 0.47498855 0.5642938 -0.22521228 -0.53366953 -0.43228668 0.20476368 -0.37246692 -1.5492399 -0.7311364 -1.8243376 0.34904847 -0.025219798 -TGTTT 0.8717512 0.34499344 -1.7253625 0.53336436 0.0060992977 -1.5424674 -0.5252049 -0.23953535 -0.49089193 -0.29457852 1.1445893 -0.109421246 -TTTAA 1.7096757 0.3116202 -0.88188726 -0.5141739 0.002141435 -1.0930622 -0.29611215 -0.53185356 -0.2973242 -1.3020349 -0.07806223 0.5615569 -ATATT 2.14845 0.28859618 -1.1188506 0.17490186 -0.40272236 0.06022975 -0.77683866 -0.11978345 -0.12441248 -0.38033482 0.079197146 0.50434613 -ATTTG 1.1019568 0.62092865 -1.6381075 0.5356518 -0.24401493 -0.30934417 -0.26480725 -0.69543755 -0.60537016 -0.06166804 0.30685997 0.41413474 -TTATT 2.0053272 0.73642737 -1.7015085 -0.03339124 -0.06408414 -0.6578188 -0.6423228 -0.20458642 0.25724247 -0.46282187 0.35580292 0.7991393 -AATAT 2.1789196 -0.005412259 -0.43899712 0.10627249 -0.50922906 0.47270507 -1.0311829 -0.4293539 -0.0666483 -0.7894122 -0.034099746 0.18587805 -TTAAA 1.7549009 0.25145537 -0.528797 -0.3964588 -0.021916203 -1.2472949 -0.42705357 -0.86557555 0.044017132 -1.4016066 -0.31786337 0.47627136 -TTCCT 0.9765703 1.213752 -1.4835768 -0.37045816 0.14340147 -1.2164426 -1.1665839 -0.75151354 0.6515514 0.3084453 0.6186585 0.20694016 -AATAA 2.439143 -0.09568777 0.09914389 0.0603126 -0.3903581 0.009433281 -0.9420958 -1.0287831 -0.5933507 -1.3984894 -0.5857833 -0.22847936 -AAACT 0.5718329 0.7203079 0.5226964 -0.42975843 0.11221575 -1.304328 -0.9194272 -0.68174624 -0.82498205 -0.95778793 -0.46021387 0.42067328 -ATGAA 0.8244163 0.31688994 -0.78236425 0.5022627 -0.79245275 0.12372586 -0.84193885 -1.2321991 -0.9179366 -1.1664692 -0.6072949 -0.113220304 -TGAAT 0.97491735 0.19239575 -1.1174362 0.7549996 -0.5139042 0.0914493 -0.8704432 -1.1508805 -0.8211857 -0.6257171 0.067675255 0.45989928 -AAAAC 1.3126774 0.66493016 0.5426096 -0.47980663 -0.51815087 -1.1706631 -0.7020041 -0.9349941 -0.8737158 -1.2511098 -1.0338475 -0.2750422 -CCTTT 0.6949927 1.2658411 -1.2949051 -0.6232164 0.22378196 -1.2740308 -0.8380573 -0.84579784 0.30795896 0.04424099 -0.1311727 0.2794867 -ATAGA 1.7236416 0.563359 -0.12251056 -0.4425808 -0.30241108 1.0191225 -1.1241874 -0.50537246 -1.2486095 -1.3615384 0.14628135 0.40272915 -GCCC -0.009816254 1.3076205 -0.22842693 0.060156252 0.08782961 0.29145408 -1.080327 -1.2914795 0.34347385 0.13354562 0.021470904 -1.2979673 -CAGAA 0.6813599 0.5267731 0.22453924 -0.88752526 -0.5625606 0.41531315 -0.56266785 -1.0206722 -1.5784887 -0.39131147 -0.1159221 -0.333339 -AGAGA 0.35633874 0.75058395 0.14404525 -0.68763757 -0.27165854 0.7027849 -0.7865426 -0.99189454 -2.0362027 -1.0228298 0.3027208 0.33720708 -TACC 1.155408 1.0834781 0.08810221 0.22216311 0.087618545 -0.35077822 -1.2026454 0.20322451 0.27390432 0.024308432 -0.78315175 -0.5918372 -TCTGT 0.7064028 0.32133824 -0.49541757 0.62679857 -0.004004672 -1.1340641 -1.5763173 0.064286105 -0.20170158 0.34150746 1.7311188 0.09779774 -TCCTT 1.0231507 1.0365335 -1.2205809 -0.2566686 0.1891876 -1.3203478 -1.0883067 -1.0957042 0.32100433 0.42346534 0.66777414 0.40565357 -TGGAG -0.09900881 0.9435657 -0.69742113 0.31915417 -0.5107426 0.32876223 -0.53876114 -0.4040467 -0.9492491 -1.3847145 1.1121267 -0.046017464 -GGTA 0.8579746 0.5129837 0.090137035 0.45083627 -0.12802634 0.13579008 -0.51522785 0.52941674 0.038637415 -1.6948047 1.0268289 -0.40907592 -TTCAA 1.5828853 0.095780656 -0.42077512 -1.0537481 -0.83194166 -0.90993494 -0.098482296 -1.1222774 -0.23558362 -0.24937591 0.5234942 0.08770659 -GGGC -0.32194394 1.8624928 -0.09642884 -0.10182686 -0.25832283 0.4550832 -0.15093656 -0.43047115 0.17040235 -0.53824043 1.247957 -0.8341651 -TTCTG 0.31290564 0.6873788 -1.003344 -0.045793146 -0.083888926 -0.643014 -1.121616 -0.25893065 0.069970936 0.19925177 1.2910051 0.44409972 -ATTTA 2.0734122 0.5084793 -1.3211403 -0.15621811 -0.08842932 -0.29452947 -0.39252436 -0.12643443 -0.46551704 -0.7907739 -0.27517727 0.5199164 -TTCAT 1.6576433 0.47759956 -1.0820854 -0.5715654 -1.0051832 -0.65067446 -0.31415725 -0.16486184 0.14534423 0.39424166 1.0419658 -0.11812351 -AGTTT 0.8098145 0.047145236 -0.9193692 -0.71381176 0.4159361 -0.9405323 0.03986224 -0.6150519 -0.9020067 -1.152409 1.1133239 0.04320239 -CTTTC 0.8210932 0.94030535 -0.72990197 -1.0209713 0.3736648 -1.2417798 -0.93899316 -0.6787194 -0.2174653 0.54205585 0.606913 0.1997041 -AATGT 1.1551273 -0.42812124 -0.42257693 1.0683489 -0.62488663 -0.65839666 -1.0259465 -0.6832192 -0.5643392 -0.9324964 0.28080633 -0.6961113 -GCTA 0.9736778 1.117243 0.22638941 0.40533742 1.3869401 0.39301413 -0.9742932 -0.14626743 0.14309639 -0.5217767 0.17549042 -0.07577674 -AATGA 0.9186193 0.28897774 -0.6678104 0.5412749 -0.8358954 0.22425993 -0.93451 -1.1952776 -1.1090059 -0.9868094 -0.5134854 -0.12055798 -AATAG 1.6328651 0.35513937 0.06699122 -0.25524843 -0.12152035 0.9404768 -0.8509417 -0.59456015 -0.87182033 -1.4448218 0.27883697 0.07276143 -GATC 0.5297721 0.55078393 -0.23695205 -0.39219734 -1.1680416 0.848005 -1.316722 -0.4059104 -0.4508242 0.3556489 0.6522466 0.5181325 -ATTTC 1.7321224 0.13174248 -0.9856382 -0.574965 -0.3211298 -0.5952825 -0.59871787 -0.74836475 -0.32227117 0.54651695 0.403106 0.10851291 -TGTGT 0.6116509 0.22964191 -1.0960782 1.4968802 0.055361267 -1.2572368 -0.97729224 -0.14758489 -0.49131137 -0.4603817 1.2500943 -0.75715536 -ATTCA 1.9438978 0.15531799 -0.6298588 -0.7759577 -0.747451 -0.2660597 -0.34457895 -0.5828536 -0.5325775 0.40199965 0.6489058 -0.225467 -TAAAT 2.2929032 -0.19721133 -0.34454894 0.20078164 -0.25438353 -0.48899978 -0.9068874 -0.6203304 -0.15992764 -0.9753824 -0.13898078 0.3196402 -TTCTA 1.743939 0.5965959 -0.42061365 -0.5174201 0.1448176 -0.8717845 -1.4678535 -0.263219 0.6725074 -0.039454702 0.71983635 0.7500559 -TAGC 1.2455397 0.941428 0.07253378 -0.34178868 1.2666774 0.4294624 -0.34653902 -0.2837046 -0.071403995 -0.48886392 0.3114333 -0.43489155 -GAATA 1.5383023 0.58589745 0.04440338 0.13395333 -0.33196315 0.8204752 -0.8727872 -0.54972136 -0.92139643 -1.3105323 0.0331437 0.19819197 -GACC -0.12681726 1.3253152 -0.107042916 0.05946081 -0.93617517 -0.041832414 -1.008992 -0.6006576 -0.53841996 -0.022646714 -0.63705164 -0.3653758 -ATTGA 0.93665653 0.5023512 -1.3434744 0.4911473 -0.25635737 0.050613683 -0.6274766 -1.2256062 -1.1101439 -0.6936306 -0.14477184 0.63647664 -AGAAG 0.5282847 0.6159664 0.30879405 -0.84586406 -0.10444341 0.6601593 -0.5176575 -1.1336082 -1.1972898 -1.5668184 0.46826172 0.065247886 -TGGAC 0.25655413 1.3312522 0.12162353 0.6584971 -1.0670751 -0.15500706 -0.8236724 -0.21728922 -0.9101743 -0.94906455 0.045316808 0.25063154 -TTGTT 0.85234195 0.67774755 -1.6899815 0.63596016 -0.08043357 -1.6957383 -0.3921262 -0.7100819 -0.07928214 -0.55576754 1.0524913 0.40483814 -AATTA 2.1376514 0.38331598 -0.45437562 -0.3156025 -0.21338037 -0.09728545 -0.43490493 -0.41213036 -0.112324536 -1.2658747 -0.30244184 0.37255123 -TGCAA 1.2238942 0.3154478 -0.40691826 0.5175923 0.4393386 0.0039556487 -0.02876193 -1.2594924 -0.7114995 -0.53274834 -0.108134486 -0.94372106 -GTGGA -0.0121815875 0.53644747 -0.32348207 0.565314 -0.81905675 0.067523085 -0.48514915 -0.635699 -0.684765 -1.4113697 0.9739286 -0.5542143 -AATTG 1.0538214 0.45356146 -0.9999592 0.5974768 -0.42658284 -0.26424444 -0.26752347 -1.3374367 -0.5792724 -0.9356145 0.19728331 0.5603 -TGTAA 1.2455828 -0.19082166 -0.30333737 0.93679994 0.09748869 -0.74210346 -0.9176328 -0.27852204 -0.52839077 -1.4023498 0.31876096 -0.529869 -GGTC 0.021265268 0.52933514 -0.22654553 -0.11218205 -1.1284851 -0.35605365 -0.81065077 -0.15402573 0.21393378 -0.21820411 1.6269023 -0.52435553 -CTTCT 0.51649433 1.0710094 -0.52702916 -0.806684 0.6086512 -1.1765984 -1.4196515 -0.37252992 -0.0265426 0.30243433 0.957982 0.54657847 -GAATT 1.1731889 0.47649965 -1.0782253 0.0010277223 -0.5448035 0.08859444 -0.30161762 -1.1849769 -0.7150439 -0.9686735 0.12968083 0.8058324 -TTCTC 0.7696566 0.6348862 -0.3940103 -0.8892004 -0.4003198 -1.0233551 -1.0781759 -0.48714644 0.1554746 0.43431273 1.2187879 0.48403916 -CTCCA 0.49454573 1.2259624 0.17968766 -0.7981102 -0.6431206 -0.9936731 -1.1592261 -0.70337826 -0.010396283 0.7818059 0.15470791 -0.60231197 -CACAC 1.1562141 1.8605846 0.7351263 -0.09522758 -0.54983306 -1.0218495 -0.0039315238 -0.10909325 -1.6802226 0.2780237 -0.14145502 -1.1533887 -TCACA 1.4888444 0.86007833 0.71933526 -0.46896693 -0.78750086 -0.91307545 0.07227594 -0.23143311 -0.8964661 0.5637415 0.67176646 -0.31310445 -CTTTG 0.12316291 1.189632 -1.1810459 0.17544867 0.39071193 -1.1905618 -0.5385352 -0.6830787 -0.52541536 0.02552624 0.45282748 0.48387715 -ATATA 2.5293424 0.17910728 -0.30599913 0.4898487 -0.23466535 0.5629665 -1.3482867 0.31848794 -0.31530336 -0.82497156 -0.13716084 -0.12154328 -AACAA 1.5630858 0.59997106 0.72564703 -0.3425619 -0.81252533 -0.8422145 -0.056900382 -1.0432405 -1.0124258 -1.2395208 -0.67305094 -0.50734377 -CAGAG 0.13327624 0.7471467 0.29049665 -0.86715895 -0.3573835 0.32371175 -0.47027194 -0.6212278 -1.9400065 -0.1572285 0.78128713 -0.5332991 -TGTGA 0.010601636 0.30667472 -1.045576 1.1800038 -0.43210328 -0.6739843 -1.0841876 -0.4800622 -1.0040582 -0.3679797 0.47643638 -0.033974532 -AGTGG -0.022603549 0.6596365 -0.35664025 0.38002023 -0.3769868 0.1376321 -0.36292917 -0.6657763 -0.89813954 -1.6712929 1.1832045 -0.94272894 -ACTTT 0.81545925 1.3996044 -0.28710213 -0.43374166 0.29729733 -1.8145471 0.055017777 -0.38969803 -0.7999582 -0.47132596 -0.01947203 0.72804314 -AATCA 1.770993 0.04867614 0.2761643 -0.68110555 -1.3135005 0.023638044 -0.5948001 -0.7617226 -0.6001609 -0.5673585 0.17273727 -0.24227856 -GAGAA 0.25268322 0.6872913 -0.23383611 -0.23584493 -0.4268374 0.44389316 -0.6921574 -1.1975857 -1.34716 -1.1412129 0.12882435 0.54156816 -GAGTG -0.13725957 0.48292688 -0.5620288 0.5888567 -0.1633426 0.057817884 -0.5898241 -0.923008 -1.4794798 -1.3419464 1.1610569 -0.54963744 -TCTCT 0.77777606 0.8022312 0.120979734 -0.45437345 -0.14595073 -0.91116506 -1.6387196 -0.29543966 0.17574756 0.49553546 1.477737 0.7945854 -TAATT 2.2709386 0.005108569 -0.8056263 0.26088187 0.17307839 -0.61786026 -0.59065104 -0.66105264 -0.15638517 -0.8232477 0.2210109 0.51123273 -ACATT 1.7508612 1.2193942 -0.37611753 0.2776048 -0.673234 -0.7509657 0.446612 -0.2052603 -0.59168255 0.0465626 -0.12856625 0.34648675 -CAAAG 0.74282014 0.25813064 0.5472579 -0.9141586 -0.13316168 -0.16263166 -0.20336723 -1.2412999 -0.86728454 -0.68614125 0.27276212 -0.7369601 -TATTC 1.9678594 0.7568183 -0.63926315 -0.3056328 -0.16529784 -0.49254298 -1.0734814 -0.1363158 0.5597847 0.2248274 0.6796439 0.39212567 -TATAT 2.404398 0.3796299 -0.7707968 0.8239519 -0.07854725 0.21998957 -1.2319028 0.44202983 0.08174917 -0.49479377 0.46368003 0.3766115 -GGACT 0.085970744 1.5402479 0.54898804 0.32098964 -0.86828834 -0.10909611 -0.9733125 -0.3155817 -0.87668943 -1.025135 0.51727974 0.60875565 -GAAAC 0.27337158 1.0439681 0.1973131 -0.2384948 -0.62708646 -0.57382005 -0.44873863 -0.83703417 -1.0704991 -1.1094561 -0.65217525 -0.035997074 -TCATT 1.9043335 0.7236821 -0.6248012 -0.17343634 -0.5625761 -0.78979176 -0.053469434 -0.62017506 0.075106844 0.55600244 0.95620984 0.1915237 -ATGCA 1.3489419 0.52767086 -0.41248384 0.83538026 -0.043374244 0.39882535 -0.07097404 -1.0946338 -0.54574215 -0.51392823 -0.21597615 -1.2240067 -GGAGT 0.044473533 0.5593946 -0.53933895 0.21466452 -0.47537202 0.15525784 -0.58322746 -0.5234321 -1.0134372 -1.3601716 1.5267068 -0.4027547 -TCTCA 0.8687739 0.4124851 0.51629806 -0.9573826 -0.7176392 -0.6835492 -0.79341465 -0.37659773 -0.2190418 0.41688776 1.5211189 0.0037102003 -AAAGT 0.9439868 -0.4149705 0.042124216 -0.28913662 -0.16198565 -0.8405581 -0.33846423 -1.0202346 -0.56559145 -1.636765 0.65424937 -0.6474991 -TGATT 1.0401903 0.7029957 -1.5970699 0.56276286 -0.4803847 -0.08121579 -0.7424118 -0.70284075 -0.5164603 0.13294107 0.58349425 0.83999586 -TTGAG -0.09688112 0.8827959 -1.3451483 -0.13295065 0.27882358 -0.10751507 -0.42446014 -1.0796772 -0.9913962 -0.64707553 0.7348669 0.7213489 -TAATG 1.3908577 0.1977206 -0.6468184 1.0521381 -0.28778106 -0.13760935 -0.86723757 -0.25548425 -0.37298822 -1.2294652 0.16680242 -0.055033997 -CTGTG -0.2584091 0.9034446 -0.5415859 1.1131928 0.3564394 -1.0203689 -1.2387811 -0.2234865 -0.5729692 -0.11448266 0.9953855 -0.63144624 -AGACA 0.8051097 1.1983097 0.7610817 -0.38194838 -0.47602704 0.18269163 -0.18194534 -0.48757616 -1.7366326 -0.69616383 -0.06868938 0.049174886 -TGAGA 0.025827708 0.6504001 -0.56868565 0.2302879 -0.19242693 0.39688635 -0.94955546 -0.84869957 -1.4495949 -0.47673818 0.39391807 0.7957212 -TGGGA -0.06492182 1.323793 -0.33738053 0.61302185 -0.98235893 0.54678446 -0.41520306 -0.25976902 -0.45810834 -1.2399331 0.6415065 0.28097793 -CTGCA 0.57250774 0.94962436 0.1841408 0.28647485 0.7298598 -0.18470742 -0.34763098 -0.5525496 -0.71099025 0.33155358 0.42006084 -0.99123585 -AATGC 1.1873287 0.3398181 -0.5096869 0.58102393 0.047201626 0.46703798 -0.44213605 -1.2467402 -0.3593636 -0.5530767 -0.22216332 -1.0538067 -TTTGG 0.32817456 1.4435735 -1.1901513 0.27697128 -0.4348304 -0.688826 0.5347841 -0.3434901 -0.17915253 -0.73515445 1.1412511 0.46870637 -TCGAA 0.6253429 0.74520874 0.0524665 -0.1580837 -1.1340761 0.42613888 -1.2168858 -0.87242824 -0.33820897 -0.59288263 0.2327853 0.29347956 -TTATA 2.263049 0.5163976 -0.92791635 0.14413442 0.059012383 -0.23962168 -0.7034755 0.29101133 -0.084108815 -0.8665695 0.10170618 0.5299593 -CACAG 0.65670013 1.0371513 0.69068575 -0.6401209 -0.5304048 -0.21560809 -0.028534828 -0.35571966 -1.5383204 0.09175561 0.51777685 -1.1658417 -GTTTC 0.647965 0.15669572 -1.2178394 -0.40951243 -0.2535404 -1.1822773 -0.64789855 -0.57735145 -0.12850188 -0.091914095 1.6488642 -0.11116241 -TTACA 1.9725968 1.1667911 -0.19992846 0.13937373 -0.33980164 -0.938858 0.36566836 0.37216458 -0.45444855 -0.23211624 0.15756229 0.04901406 -CTGGA -0.08278089 1.5131619 -0.0034221935 0.34482905 -0.6005248 0.03258988 -0.9155275 -0.09541787 -0.4644353 -0.98965305 0.44074008 0.55119187 -CTTCA 1.0082994 0.73706156 -0.09531226 -1.2778295 -0.1180987 -0.8472158 -0.39793858 -0.24852653 -0.5371957 0.52696884 0.7137721 -0.1396575 -GAATC 0.9420153 0.34459516 -0.16271374 -0.19514945 -1.1775101 0.5436769 -1.108382 -0.7955479 -0.5750796 -0.4780775 0.2652514 0.26821208 -CACAT 1.5027113 1.1566335 0.0033007548 0.35366964 -0.8237477 -0.45617688 -0.0010823018 0.2981247 -0.68823135 0.5565063 -0.057440467 -0.8235805 -ATAAT 2.4843776 -0.07545667 -0.3573405 0.31557885 -0.31377286 0.28053313 -1.0903283 -0.4081942 -0.43585342 -0.7802253 -0.089534774 0.066780515 -AAGAT 1.3439319 0.2772845 -0.2734452 -0.1275172 -0.52497977 0.8088309 -0.5949827 -0.9042676 -0.62708133 -0.8092133 0.11990824 0.68351424 -CTGAG -0.6267817 1.1611748 -0.4745019 -0.16982214 0.4002594 0.23226205 -1.2760367 -0.6611228 -1.1208199 -0.26744828 0.39246958 0.24993035 -CTCAA 0.67923814 0.23737216 0.8033351 -1.1587881 -0.586471 -0.76392305 -0.83758247 -0.72772205 -0.2383346 -0.37735602 0.63060117 -0.32272345 -AATTC 1.5812792 0.12948053 -0.5015121 -0.7773299 -0.61990196 -0.23664513 -0.6873282 -1.2241617 -0.07829893 -0.0007544153 0.22399674 0.2998428 -TGCAG 0.43677592 0.81046885 -0.38966003 0.2537992 0.7092654 0.2786239 -0.028296785 -0.68491423 -0.838883 -0.060436465 1.0580076 -1.2606833 -TTGCA 1.1681165 0.90547425 -0.9307128 0.4294592 0.53981066 -0.3433618 0.46470004 -1.0509068 -0.5163532 0.15774214 0.41802028 -0.53257334 -TCCAC 0.7107319 1.3687991 0.06753805 -0.26007068 -0.45765468 -1.2142826 -0.88745487 -0.69695926 -0.24029356 1.0075424 0.031907562 -0.48412955 -ATGTG 0.73624325 0.09783459 -0.89336026 1.4112673 -0.5200974 -0.50143695 -0.7167006 -0.33179495 -0.35427046 -0.57329655 0.5187759 -0.7569647 -GAAGA 0.4636049 0.56023175 -0.035263743 -0.26085883 -0.48293203 0.53524727 -0.6409788 -1.1690897 -1.4013371 -1.3378412 0.1922317 0.51551825 -AACAT 1.7258397 0.80942655 0.08559985 0.118932985 -0.8673613 -0.41013688 0.05900281 -0.33433136 -0.57373947 -0.43928045 -0.6702954 -0.28606945 -AAGAG 0.4915275 0.38560924 0.18637282 -0.84382385 -0.26205596 0.44378373 -0.49916235 -1.3249224 -1.2630737 -1.3044496 0.4303096 -0.036404155 -CTCTG -0.3588726 1.1536139 -0.3586966 0.056084916 0.10403491 -0.70456207 -1.5680299 -0.009879565 -0.23223616 0.28618053 1.04194 0.032793257 -CTATT 1.7686502 0.86073095 -0.7354573 -0.14052065 0.45984623 -0.67891794 -1.3766884 -0.10345521 0.13395813 0.22831698 0.3537962 0.6212491 -ATCTT 1.3183669 0.53154445 -0.4909454 -0.52110165 -0.5894166 -0.5517014 -1.1121391 0.05598373 0.15697683 -0.02683575 0.4124704 0.82451147 -AGATA 1.64766 0.43154353 0.2069542 -0.077378556 -0.1334973 1.095166 -0.8852318 -0.35033524 -1.031061 -0.8571193 0.07547804 0.34527683 -TCTTC 1.1529846 0.66971195 -0.16859561 -0.89958584 -0.2562572 -1.0039392 -1.049791 -0.59264535 0.24491043 0.6092233 1.1735357 0.44518578 -GTAC 0.9402635 0.58027434 0.47600642 0.7172938 0.0982167 -1.0248823 -0.4230737 0.5692796 -0.48772597 -0.8303795 0.42737216 -0.6430042 -ATTAA 1.9549956 0.32378462 -0.714998 -0.27959532 -0.30440852 -0.40045244 -0.5558408 -0.39494902 -0.1800076 -1.1890374 -0.55896735 0.19760405 -CCAAA 1.0408366 0.4772764 0.39421862 -0.63636166 -0.5925183 -0.516709 -0.8286773 -1.5701365 0.041195355 -0.23788254 -0.75411296 -1.0843335 -TCAAT 2.0137858 -0.041192595 -0.20636192 -0.20674254 -0.6352966 -0.36177865 -0.43845585 -1.1124154 -0.110655874 0.18756148 0.6591791 -0.13527624 -TAATA 2.3871279 0.086447455 0.014510429 0.3099099 -0.00820188 0.07191204 -1.0597557 -0.092260405 -0.33973435 -0.92964727 0.02002951 0.2200962 -GATTT 0.88392484 0.7543959 -1.2171693 -0.04986924 -0.3643228 0.1390918 -0.2145334 -0.58813983 -0.5915827 -0.6006457 0.546899 1.170571 -CTCAG 0.04143188 0.8153527 0.23617633 -1.4845979 -0.21903908 -0.06734231 -1.0040942 -0.6428083 -0.51393926 0.33491004 1.2220005 -0.486038 -CTTTA 1.1314787 1.0922744 -0.77225596 -0.5897716 0.7908603 -1.0777414 -0.84101397 0.013988547 0.07198731 -0.53049415 -0.09182982 0.3892349 -TCCTG -0.21018061 1.3184551 -0.66184443 0.39572397 -0.0696712 -0.6557755 -1.3749942 -0.60791594 0.13307214 0.5905888 1.046759 -0.21765518 -AACAG 0.97566456 0.7041456 0.69424075 -0.32813653 -0.2477912 0.008034425 -0.10940512 -0.53502524 -1.4694948 -1.0840513 -0.029068552 -0.62342507 -CTCCT 0.06716125 1.5894774 -0.47025526 -0.44220307 0.33258623 -0.68156946 -1.6433175 -0.30940714 0.32065105 0.47996944 0.5070281 -0.06410261 -TGCAT 1.3873665 0.9450655 -1.1039088 0.8408871 0.26449937 0.05724481 -0.05536842 -0.3948477 -0.34680936 0.5118559 0.625769 -0.8195984 -TCCCA 0.92101306 0.49536094 -0.22532915 -0.17279635 -0.6867424 -0.20116939 -1.0085471 -1.2105507 0.18369092 0.8400781 0.028491165 -0.80719763 -CATCT 1.2779416 0.83568096 -0.133238 -0.43818527 -0.70986325 -0.37285176 -1.185508 0.19425395 -0.19084391 1.0109679 0.6761929 -0.06721137 -ATTAT 2.3208756 0.35591117 -1.2631795 0.26524258 -0.31192318 0.01742181 -0.9075422 0.20976269 -0.053677727 -0.49041846 -0.1282346 0.32944238 -CGAAT 0.74246246 0.762665 -0.02518934 0.16698909 -1.1414758 0.49431926 -1.2316045 -0.9361653 -0.3492756 -0.6835073 0.16357115 0.13996692 -TTGTA 1.3267499 0.16997522 -0.74164116 0.8108272 0.4843699 -0.94369763 -0.6189617 -0.2278635 -0.10078216 -0.99833125 0.64666355 0.24569497 -TACAT 2.1370637 1.050507 -0.38909635 0.58954024 -0.43360475 -0.6773483 -0.0875214 0.47930804 -0.3450661 0.002102229 0.023981154 -0.14876813 -TATGT 1.6221967 0.15744747 -0.8181944 1.2312546 -0.05892515 -0.56118846 -0.8859805 0.5142025 -0.1943647 -0.6722287 0.69991106 -0.11316497 -ATCAA 1.6340312 -0.00200525 0.22371477 -0.6337996 -1.2173975 -0.10541862 -0.6966361 -0.7238331 -0.41389626 -0.4924002 0.042728882 -0.40191555 -CTGTT 0.5261197 0.6883172 -0.942516 0.3901785 0.2427127 -1.389315 -0.85294354 0.073397614 -0.2026537 0.09924641 1.2196223 -0.04195099 -GTAAT 1.4991508 -0.22228475 -0.37322208 0.8960778 -0.10028989 -0.31020716 -0.8654255 -0.46018255 -0.22073239 -1.1937486 0.5407771 -0.43008274 -CTCTT 0.45626813 1.1162074 -0.4662662 -0.7969631 0.3116835 -1.2469361 -1.201925 -0.3347228 0.1183406 0.1727641 0.8540485 0.62978315 -AATCT 1.1646036 -0.0058990815 0.2653757 -0.38789636 -0.4129768 -0.11021565 -1.4289114 -0.46993545 -0.179399 -0.105126984 0.41722783 0.5434098 -CACTG 0.06321904 1.446795 0.10136876 0.47428283 0.08946596 -1.12547 -0.62653005 0.17141326 -1.1255169 0.20158502 0.30622005 -0.9642157 -CAATT 1.8124937 0.18637021 -0.64469236 -0.2934288 -0.49211738 -0.7329265 -0.27503595 -1.0157189 -0.71611077 0.23670875 -0.008830828 -0.16708046 -TATAA 2.4116366 0.36159894 -0.2749746 0.37110585 0.050809577 -0.0424943 -0.9522085 -0.14696588 -0.11111294 -1.0472031 -0.32184798 0.28687844 -CCACT 0.46678877 1.6248798 -0.019663913 -0.24679212 -0.28471482 -1.2140707 -0.8908687 -0.28404793 -0.096396714 0.53382593 -0.02536339 -0.4927366 -AAGTG 0.49889866 -0.1455574 -0.31519482 0.45346123 0.13817658 -0.32506964 -0.42912462 -1.0349514 -0.74368113 -1.5740232 0.6579888 -0.8552904 -AAATC 1.3821123 -0.2583277 0.20665199 -0.8533351 -1.045325 -0.22566919 -1.3268028 -1.0598363 -0.28752565 -0.34726095 -0.0549564 -0.037230197 -TTAAT 1.884301 0.082845576 -0.9668082 0.30967 -0.07636662 -0.5599303 -0.52335876 -0.51693577 -0.01575998 -0.8551761 0.3838622 0.47632924 -TTGAT 1.1271987 0.6388411 -1.5995843 0.76718247 -0.3961616 -0.28073356 -0.90079355 -0.71350056 -0.3791938 -0.037606124 0.6263387 0.9755933 -TTCG 0.6539968 0.9182931 -0.8084312 -0.5903551 -0.5442371 -0.17899545 -0.68878746 -0.7031863 0.061633732 0.18964134 0.7277458 0.32149222 -AACTT 0.87716407 0.97610146 -0.0636344 -0.66801476 0.14511319 -1.3898593 -0.38739175 -0.6294453 -0.79071283 -0.72035086 -0.41153395 0.80055416 -CAGCA 1.0235956 1.0614767 0.4354447 -0.58030945 0.3998969 0.117034845 0.06011568 -0.60790086 -1.2507005 0.20417568 0.38219354 -1.4693385 -TGGTG 0.06266004 0.7982987 -0.97790027 1.1680894 -0.5014425 -0.27263966 -0.32791308 -0.13951412 -0.3662324 -1.1143513 1.2158496 -0.37841412 -TCAGA 0.6789954 0.31357202 0.36068264 -0.86293316 -0.65362746 0.49716496 -0.5552222 -1.1063169 -0.7910994 0.26343417 1.1229365 0.19139288 -TCTAT 1.7697473 0.59594065 -0.419702 0.039112363 -0.031388495 -0.45527303 -1.5472565 -0.15030064 0.49553335 0.23389547 0.90777165 0.52775013 -GAGAG -0.0950209 1.0305907 -0.1013492 -0.22237372 -0.2559112 0.86243 -0.7806176 -1.0669073 -1.955247 -1.1544663 0.82671356 0.30568603 -TTGGA 0.42259932 0.9950549 -0.91002476 0.3024991 -0.8122111 -0.16612867 0.078099705 -0.6001498 -0.43803984 -1.0034041 0.6996243 0.7078461 -ATATC 1.757059 0.11727239 -0.041349184 -0.23681067 -0.5610085 0.39852962 -1.4659289 0.050390303 0.020113753 -0.039207358 0.16960664 0.034897134 -TGCTT 0.4464314 1.3298849 -1.1515102 0.16712284 1.2031219 -0.6882617 -0.5062409 -0.43427908 -0.15541652 -0.06909633 0.6785788 0.050932184 -CAATG 1.0480319 0.31512052 -0.3643618 0.76768976 -0.71435976 0.071690686 -0.36955214 -0.84040785 -0.8300045 -0.26277316 -0.15840589 -1.0463035 -TTCAC 1.101289 1.0651414 0.03784381 -0.6835691 -0.576507 -1.4969674 -0.069215536 -0.083490096 -0.5171662 0.48622566 0.47516176 -0.22547482 -GCATT 1.3003292 1.0049497 -0.8925621 0.41902232 0.31647688 -0.019601537 0.4285257 -0.83989435 -0.088203445 0.2079134 0.65690166 -0.39898962 -AGATT 1.1761768 0.5089744 -0.75342274 -0.5140805 -0.24722293 0.45329204 -0.39185333 -0.74618214 -0.5478192 -0.556646 0.5015262 1.0669135 -CTGGG -0.45532218 1.9609722 -0.10248779 0.44230175 -0.5058144 0.019545374 -0.83782566 0.1643532 0.120034985 -0.40298605 1.1653206 -0.26751563 -CAGTG 0.066414386 0.30927423 -0.3006086 0.29822093 -0.07181383 -0.339665 -0.1794907 -0.6963717 -1.1795456 -0.38275903 1.1795485 -1.6320637 -ACTGG -0.09988042 1.6350665 0.23148699 0.53523624 -0.75570804 -0.44045612 -0.55447644 0.21468107 -0.46914917 -1.0564202 0.38045046 0.07850242 -ATGTA 1.6134158 0.048894405 -0.2907788 1.0517031 -0.2822172 -0.37248388 -1.1184034 -0.07244623 -0.2908389 -1.307203 0.09730531 -0.51392585 -ATACA 2.1526625 0.6746308 0.5540279 0.24798 -0.54118806 0.034628835 -0.28515613 0.15146503 -0.9072099 -0.43173254 -0.2950335 -0.5410436 -GACTC 0.016392866 1.3132749 0.3977939 -0.27526402 -1.0891821 -0.1687698 -1.2174393 -0.5218205 -0.7898382 -0.31842119 0.3781405 0.47985905 -ATGGT 0.80238515 0.433348 -0.6179588 0.82473636 -0.91981524 0.15480173 -0.5902649 0.12105775 0.36461124 -0.9850146 1.0638555 -0.33225566 -TATTA 2.245628 0.7977575 -0.6937969 0.33252195 0.11174395 -0.2571342 -0.7023623 0.30365166 0.12562896 -0.9638458 -0.01208729 0.70196664 -CATCA 1.4629815 0.60002434 0.09504841 -0.5624796 -1.148701 0.04836817 -0.28523687 -0.13379216 -0.73211604 0.64359874 0.43811002 -0.88161165 -ACATA 1.9428856 1.0250174 0.5556281 0.36125565 -0.5664025 0.08026476 -0.055629537 0.32796296 -0.5808203 -0.43556887 -0.24078022 -0.19489422 -GTGTT 0.528827 0.19533291 -1.0851488 0.62938017 -0.045928158 -1.4411598 -0.4401206 -0.3333694 -0.3667389 -0.83366805 1.3921311 -0.5185981 -GGAGA -0.002377756 1.1740057 -0.090813056 -0.0898022 -0.7537422 0.871097 -0.53103626 -0.6561766 -1.2106613 -1.2954981 0.7658705 0.40671772 -GATTC 1.082331 0.6759589 -0.9433558 -0.37349737 -0.694734 0.10760964 -0.77576685 -0.8145179 -0.15178593 0.31894568 0.74825996 0.72468346 -AGAGT 0.24306263 -0.00036798592 -0.21841538 -0.6759502 0.12456343 -0.0023201716 -0.6628772 -0.72557837 -1.3927164 -1.0577955 1.0706905 -0.13949747 -TCCTC 0.6433148 1.1028037 -0.21534653 -0.66202456 -0.43046218 -0.6092198 -1.6445203 -0.8584923 0.4171045 1.105921 0.8176925 -0.24970958 -CACAA 1.2751135 0.8393164 0.720395 -0.3441461 -0.8247144 -0.65281063 -0.03977754 -0.674429 -0.9902415 -0.066662356 -0.3733459 -0.96652997 -AGAGG -0.035025187 0.98008853 0.19213136 -0.55154335 -0.47872213 0.9867466 -0.46938577 -0.95145327 -1.2630435 -1.1948243 1.0554463 -0.34388852 -TACAA 2.0143905 0.5957548 0.7237146 0.087878205 -0.24714625 -0.54931366 -0.33147112 -0.25458783 -0.6517935 -0.55488825 -0.46659228 -0.1745119 -TATCT 1.6006494 0.42839924 -0.0888511 0.036205977 -0.038279172 -0.21658446 -1.4406292 0.39614925 0.21086662 0.086812206 0.81047636 0.65111303 -CAGTT 0.6912184 0.10982107 -0.7472786 -0.62680185 0.19243774 -0.85176426 0.08042522 -0.47724617 -1.1306555 -0.24154373 1.0546706 -0.7246686 -CTCG -0.1347319 1.3308417 0.12410972 -0.16628258 -0.8213786 0.064692825 -1.2666526 -0.44909906 -0.30277124 -0.48141003 0.5603653 0.08994165 -ATCG 0.748201 0.70783913 -0.16097055 -0.10130301 -1.0519751 0.62193704 -1.1159769 -0.6769495 -0.19472297 -0.5226347 0.3036919 -0.110879585 -CACCA 0.9797131 1.3657538 0.2638861 -0.15177971 -0.7554335 -0.58223 -0.48415858 -0.37739837 -0.5137028 0.5018504 -0.41077745 -1.5863209 -TGCCT 0.15669556 1.2558736 -0.8508944 0.34016186 0.64887726 -0.2800665 -1.3355932 -0.32392952 0.32440084 0.37545022 0.36564034 -0.77989453 -TCCAG 0.45024124 0.41061395 -0.18884191 -0.5606521 -0.4419822 -0.24934773 -0.63441503 -1.2988256 -0.32743114 0.5988128 0.9628833 -0.5137103 -GTGTG 0.19670619 0.29245564 -0.72177625 1.5033965 -0.042291407 -0.8429356 -0.7096994 -0.64010113 -0.5456212 -0.9931927 1.3955021 -0.976614 -CAGGA 0.24019046 0.8843082 0.19570382 -0.86809534 -0.89818025 0.58994627 -0.26040113 -0.51446223 -0.93164474 -0.3908781 0.7114948 -0.51194847 -TAAAG 1.28685 0.22654766 0.20902237 -0.5674836 0.2697538 -0.013746018 -0.44342142 -0.55938786 -0.3053669 -1.5816919 0.32394415 0.26757812 -AGTGT 0.34842536 -0.1443442 -0.42199856 0.5175403 0.09781471 -0.77691287 -0.6040309 -0.59236705 -0.6534247 -1.1775463 1.0993803 -0.8932708 -GCAAA 1.0394583 0.3513317 0.29776287 0.016732678 0.42498443 -0.086886786 0.020727456 -1.5101943 -0.55485576 -0.79402363 0.016675182 -0.8531454 -TGTCT 0.46176302 0.4149959 -0.5392827 0.47233564 -0.113176756 -1.0095185 -1.3719915 0.18663535 -0.050029878 -0.010145954 1.6678846 -0.025318472 -ATGTT 1.1533324 -0.122798026 -1.1354618 0.61547714 -0.41053417 -0.70727015 -0.48484996 -0.38601062 -0.08576568 -0.5441676 0.6779277 -0.25204584 -CACTC 0.58312064 1.3894191 0.48508346 -0.7613783 -0.379446 -1.1845729 -0.9663376 -0.13822947 -0.5904319 0.7821746 0.36715087 -0.69018507 -CCACA 0.95419115 1.2796988 0.39661157 -0.2189103 -0.68845516 -0.53489405 -0.239528 -0.4596277 -0.5144993 0.4291592 -0.2977658 -1.3656765 -TTCAG 0.616384 0.42858052 -0.3908214 -1.3553272 -0.34241888 -0.25236773 0.09998652 -0.811536 -0.47919464 -0.02490135 1.5032977 -0.19983375 -CCCAG 0.012071107 1.1864196 0.30825174 -0.43018427 -0.42477015 0.41893804 -0.9447328 -1.3456006 -0.07140055 0.13754527 0.22314617 -1.454375 -ACATG 1.1647298 1.0786301 0.0042523546 1.1884507 -0.88464326 -0.23534434 0.12275929 0.006607862 -0.5020702 -0.4699024 -0.36902446 -0.81532 -TGAAG 0.1559775 0.19716841 -0.5986264 0.14048493 -0.23218508 0.14614104 -0.60653114 -1.2747357 -0.777579 -1.1131287 0.32968503 0.058755998 -CTGAA -0.22440174 0.6264282 -0.44059896 -0.0229867 0.021398604 -0.2379717 -1.2332574 -1.1039809 -0.5935804 -0.58271277 -0.37082073 0.22659703 -TCATC 1.7999604 0.55169797 -0.058543425 -0.59802026 -1.0665171 -0.30938888 -0.85439163 -0.3089001 0.25589648 0.881727 1.0903101 -0.10921228 -AGGGA 0.19218023 0.99212956 0.23002064 -0.36836788 -0.7750392 0.72828215 -0.39480323 -0.6218903 -0.5354235 -1.5312275 0.7016162 -0.10382093 -TCTGA -0.008437359 0.5599888 -0.5473561 0.0070321644 -0.32282606 -0.06305528 -1.4702032 -0.6123969 -0.62509173 0.20081502 0.7053081 0.9585045 -ATCTG 0.57687736 0.38841107 -0.21792674 0.12273358 -0.3898891 0.22190435 -1.4668405 0.20191506 0.020813676 0.12270302 0.72231823 -0.12432392 -TGTCA 0.70263517 0.07326105 -0.27564722 0.42409715 -0.81526786 -0.86082596 -0.528182 0.087529406 -0.79924077 0.11417404 1.2536246 -0.9272604 -GTGAA 0.11547973 0.08661086 -0.6011361 0.6618904 -0.4935534 -0.2740846 -0.6288164 -1.0337675 -0.86331576 -1.4497422 0.3937314 -0.2800239 -GAACA 0.7729466 1.1317672 0.3183946 0.011875533 -0.8232788 -0.050350443 0.076513514 -0.6143163 -1.4881867 -1.0570937 -0.3727431 -0.22199082 -CACTT 0.5959302 1.4337239 -0.042209495 -0.55330795 0.22704339 -1.5027243 0.00041757748 -0.14480491 -0.8372576 0.091112785 0.114886746 -0.015029674 -CTTCC 0.4195593 1.2737743 -0.76265204 -0.7536117 0.28695416 -1.0266145 -1.2178241 -0.8686799 0.17475508 0.8015093 0.2543506 -0.046242356 -CCAGG 0.04507649 1.4221358 0.43679258 -0.38084152 -1.0021752 0.56884116 -0.6721932 -0.84765226 0.19888383 -0.22783391 0.5864598 -1.2207346 -CTGCT 0.060255043 1.7134876 -0.39539897 0.33538738 0.9246071 -0.5944183 -1.1840711 -0.14752759 -0.13887586 0.45240477 0.8998262 -0.25178605 -TGAGG -0.44319543 1.236886 -0.67206895 0.3670842 -0.10163029 0.7413477 -0.6847664 -0.5803481 -0.8301806 -0.5826639 1.0145282 -0.06447841 -TCCAA 1.0079725 0.2667635 0.0688214 -0.5330951 -0.5430992 -0.761607 -0.840679 -1.5324873 0.060072828 0.29589072 -0.09711824 -0.48670027 -TGGAT 0.79291475 0.96592927 -1.0123527 0.61622804 -0.80952036 0.70485324 -0.6420543 -0.095813096 -0.074582785 -0.5172025 0.6849934 0.41664714 -ATCAT 1.6992875 0.28594333 -0.48845407 -0.27013573 -1.3223909 0.18326859 -0.79469794 -0.05307297 0.18117154 0.19428922 0.3703867 -0.3367838 -CCTCC 0.2536711 1.6533604 -0.32470468 -0.7137713 -0.29430202 -0.50048494 -1.5741539 -1.1705248 0.616893 0.8310583 0.20291086 -0.86028516 -CCTCA 0.5270931 0.99962217 0.33244112 -1.1213471 -0.5111668 -0.47780418 -1.0062029 -0.51620185 -0.07477911 0.7143075 0.52517176 -0.8920664 -AACAC 0.8492692 1.138628 0.7140627 -0.21804988 -0.61479944 -1.0036818 -0.11344535 -0.49128723 -0.92254555 -0.6255958 -0.58913016 -0.603853 -AAGTT 0.82809776 -0.16511928 -0.5196202 -0.7644712 0.045480203 -0.8328223 -0.09043561 -1.0433922 -0.45895648 -1.32023 0.89300656 -0.043061763 -TTTAG 1.082684 0.69882804 -1.0487263 -0.67269236 0.77093935 -0.24067776 -0.24104528 -0.09386511 -0.32881477 -1.04952 0.64313614 0.4352794 -GTGAG -0.46936828 0.53339654 -0.621089 0.40043542 0.035883036 0.18126482 -0.7204817 -0.99728024 -1.2773973 -0.86639076 0.99354345 -0.5230688 -TGATG 0.43259475 0.48291108 -1.180162 1.3581501 -0.3758442 0.1571992 -0.9992623 -0.4677562 -0.6331334 -0.30841345 0.7415168 0.15670179 -GATAT 1.329074 0.36922103 -0.6168191 0.543741 -0.4931983 0.8041831 -0.9905929 -0.0069738035 -0.3375017 -0.46716973 0.37097535 0.5678733 -CAGAT 1.1202644 0.5689846 -0.009788307 -0.098584846 -0.48655394 0.9244767 -0.595691 -0.27791467 -1.2706269 0.022764802 0.30328023 0.062112954 -GCCTG -0.51053995 1.584487 -0.46426815 0.6723841 0.4226455 0.40372702 -1.168559 -0.8196016 -0.21407036 -0.0040043006 0.8074309 -0.9533175 -GAAGG 0.27261472 1.0017697 0.12837666 -0.34346554 -0.7718452 0.62877554 -0.35415277 -0.83970535 -0.63928306 -1.8092757 0.81405103 0.04201074 -CATGT 1.0401295 0.25507745 -0.61070466 0.98651695 -0.8002097 -0.7485969 -0.43582436 0.1764233 -0.59799147 0.14401586 0.4890356 -1.1736109 -GGGAA 0.09298732 0.92917657 0.0073520206 0.12595315 -1.1389289 0.2295557 -0.31426916 -0.7484403 -0.39427003 -1.8309716 0.41994756 -0.3062274 -TCCCT 0.44482785 1.242116 -0.7775567 -0.18355311 0.075867705 -0.6961048 -1.4192508 -1.0421902 0.5169448 0.6928354 0.48894107 -0.06765337 -CATTA 1.9210223 0.88196224 -0.6107581 -0.46265808 -0.4951466 -0.45981556 -0.27780202 0.1483787 -0.08641648 -0.06890234 -0.25178373 -0.24455985 -TATTG 1.4110659 0.6405078 -1.0253462 1.0163386 0.10840795 -0.11889251 -0.44086975 -0.2577779 -0.21275152 -0.65511334 0.42859536 0.7536822 -TTGTG 0.37207934 0.47259364 -1.2818257 0.9903306 0.06416704 -0.93832266 -0.5119191 -0.6654486 -0.33797136 -0.49388853 0.82185465 0.045369796 -AAGCA 1.1184009 0.6946616 0.21329087 -0.5565815 0.37598032 0.25858822 0.15330221 -1.1889986 -0.76458895 -0.7323167 -0.07219551 -0.80579376 -TTATG 1.241681 0.54049677 -1.3498284 0.86063296 -0.10344773 -0.29477373 -0.5848806 0.2683844 -0.030596213 -0.71916884 0.31045714 0.20471354 -GGAAG 0.16377106 0.8957632 0.11442456 -0.13206138 -0.6907091 0.5697171 -0.4108974 -1.0430721 -0.47920412 -1.6207355 0.8024966 -0.05428694 -TCACT 0.9604959 1.1163945 0.5619907 -0.4141395 -0.08649557 -1.4042263 -0.5018676 0.13559783 -0.49598193 0.6659111 1.1269914 -0.07974834 -CCTGT 0.04585914 0.8803256 -0.7756213 0.6496546 0.022233373 -1.2251986 -1.5020667 -0.1791019 0.19500674 0.31349263 0.73932487 -0.9914499 -AGCAG 0.4898615 0.83664346 0.21143618 -0.6289951 0.5170125 0.662304 -0.028532175 -1.0093414 -1.2446624 -0.7819658 0.7061964 -1.2751305 -CATTG 0.96255296 1.0445275 -1.3188008 0.6480872 -0.35854086 -0.3702421 0.1245707 -0.5722178 -0.5006526 0.26735598 0.26215184 -0.32010946 -CAACA 1.2323527 0.9435662 0.498837 -0.4899344 -0.76384544 -0.6629098 -0.011518882 -0.49014422 -0.90163845 -0.08074467 -0.35352615 -1.0306082 -GGTGG -0.15247567 1.2175667 -0.4798656 0.7365083 -0.76377845 0.29219338 -0.17861 -0.26565456 -0.119434915 -1.4834917 1.4751455 -0.7493173 -ACTCA 0.6675145 0.96445966 1.0141251 -0.8670361 -0.65855145 -0.869468 -0.7308646 -0.27788013 -0.8219193 -0.012872927 0.26993242 0.021922115 -GCTTT 0.5425464 1.1994886 -1.0141973 -0.35758144 1.0527022 -0.50393075 -0.13455328 -0.59165287 -0.19294 -0.30882645 0.8527093 0.31962246 -TCTGC 0.4826188 1.1294175 -0.3091959 0.108013436 0.7077918 -0.3104075 -0.9827974 -0.32159027 -0.111085035 0.79817194 1.2533364 -0.3764881 -GGGAG -0.32025445 1.3319203 -0.16258028 0.012897217 -0.5560358 0.8382535 -0.45211735 -0.5663139 -0.8726127 -1.3343041 1.1730323 0.032456916 -GAGAT 0.4694221 0.6878427 -0.4982897 0.06689769 -0.5046416 0.98342365 -0.8257645 -0.6892573 -1.0492477 -0.29729775 0.5762438 0.7527194 -CCCTT 0.5729656 1.4386784 -0.89609605 -0.3551902 0.17685512 -0.98136646 -1.0273887 -0.8316984 0.6144456 0.45153996 -0.15407622 -0.093404055 -CATAT 1.9599588 0.5637142 -0.47384354 0.3219019 -0.39850166 0.4122903 -0.62688285 0.43373966 -0.2658859 0.25705197 0.15001631 -0.51783067 -TGCTG -0.08906638 1.4095534 -0.8019068 0.8153583 0.78263766 -0.10020692 -0.826257 -0.227511 -0.4328298 -0.05175437 1.0160958 -0.36584175 -TGTAT 1.4766792 0.19205956 -0.8604664 1.1695604 0.064624354 -0.600362 -1.0225013 0.49595958 -0.17113724 -0.54444957 0.6834713 -0.1637233 -ACAAT 1.7896183 0.52177817 0.3391138 0.43489468 -0.6259529 -0.3466198 -0.053022407 -0.53560406 -0.7348246 -0.15188211 -0.3858769 -0.35856783 -AGGAG -0.025518142 0.8490121 0.005915151 -0.66138667 -0.5439325 0.85846823 -0.51431984 -0.83545595 -1.2631751 -1.201115 0.87738043 -0.24600945 -ATTGT 1.2721199 0.027849684 -1.110307 0.8844904 -0.2164512 -0.65677613 -0.57448643 -0.33729792 -0.30510247 -0.33833668 0.6561827 0.047543913 -ACTCT 0.3884905 1.0690653 0.63215774 -0.4973036 0.022946423 -1.2744938 -1.1534826 0.05191368 -0.3937431 0.065285675 0.48199058 0.5053351 -GCAAT 1.4319893 0.44661182 -0.17608663 0.62386 0.12433408 0.41402566 -0.103234164 -1.2349007 -0.33763707 -0.451521 0.17646468 -0.78205824 -CTCCC 0.22252284 1.6825945 -0.2458006 -0.53605336 -0.26778227 -0.4898393 -1.6228938 -0.796954 0.4586093 0.83835644 0.15861137 -0.5493982 -TGGCA 0.50165397 1.2899823 -0.33399066 0.5947679 -0.38886443 0.5336191 0.20079443 -0.24729446 -0.25170302 -0.5950809 0.5908398 -1.1870483 -AACTG 0.10645817 0.93579626 0.33639482 0.41195467 0.26063767 -1.0262922 -0.75169003 -0.24216418 -0.8886427 -0.83535606 -0.3249523 -0.17006324 -TTTGC 0.89611655 1.1422207 -1.2758632 0.2192482 0.9260965 -0.6189991 0.14802805 -0.97312033 -0.24008495 0.09575092 0.41672045 -0.16022445 -GGATT 0.88421124 1.0170392 -1.0005103 0.31927842 -0.61236227 0.43231943 -0.23621267 -0.54708123 -0.07197061 -0.8955045 0.8116569 0.7986597 -TGTGG -0.13202526 0.8635488 -0.6446786 1.1191387 -0.5427286 -0.3821213 -0.4802758 -0.009105879 -0.1992796 -1.0272765 1.345236 -0.53263396 -AACG 0.30036172 1.0096767 0.36801624 0.009199322 -0.731385 -0.18197997 -0.3589327 -0.6631237 -0.5488611 -1.0547944 -0.11619406 -0.43639573 -ACTCC 0.44967163 1.68382 0.2831981 -0.5012842 -0.36808679 -1.0934131 -1.2088588 -0.44953504 -0.26419905 0.7241558 -0.124916084 -0.28383186 -AAGGG 0.40441602 0.97472703 0.33631855 -0.25842384 -0.9036884 0.48617244 -0.07818513 -0.79916275 -0.29217806 -1.7470331 0.8920894 -0.38137043 -CCTGA -0.38581014 1.273475 -0.6317854 0.07182792 -0.27401718 0.1060104 -1.5193975 -0.8683201 -0.5952142 0.022070346 -0.52757776 -0.089645565 -TGAGC -0.2015185 0.995092 -0.63866454 0.20479989 0.6473176 0.36127794 -0.6357189 -1.1239774 -0.9675385 -0.006771887 0.55919176 -0.39212725 -AGTAA 1.348263 -0.15353455 0.121667795 -0.2072876 0.34571052 -0.41254 -0.6320908 -0.20105007 -0.79480314 -1.7565813 0.47662738 -0.4306392 -AGTGA -0.023846097 0.14686362 -0.59864235 0.37957454 -0.10412206 -0.046703998 -0.7682968 -0.9817019 -1.5066267 -1.2365588 0.45438427 -0.45851862 -CACG 0.13555056 1.3444878 0.29436395 -0.07744756 -0.5643781 -0.30333105 -0.16745694 -0.291668 -0.73258567 0.064789385 0.2857449 -0.9718908 -AAAGC 0.8661212 0.63922626 0.27762803 -0.88672954 0.51054245 0.041808244 -0.28341475 -1.3199376 -0.3239202 -1.027261 -0.16582744 -0.6597781 -TTGCT 0.6361773 1.2392238 -0.9719962 0.27862987 1.2441869 -0.5160294 -0.514622 -0.65137583 -0.07069982 -0.060151435 0.93701994 0.48735145 -GAGTT 0.29831415 0.18075536 -0.8008711 -0.41199967 -0.047011722 -0.30367258 -0.16961187 -0.652922 -1.0344884 -0.9469639 1.1702232 0.13517319 -GAGGC -0.44779658 1.6738292 -0.17248608 -0.048327662 0.121681765 1.0314307 -0.64849895 -0.7916323 -0.8646649 -0.5882199 0.89836466 -0.43685034 -CTAAA 1.4020215 0.22087505 0.61307216 -0.47716767 0.3739161 -0.596797 -1.3594466 -0.530431 -0.150891 -0.8031694 -0.43806976 0.09962361 -ACTTC 0.64233845 1.0893835 0.24567342 -0.786709 -0.12983978 -1.3636993 -0.45649955 -0.52399385 -0.49430078 0.20264538 0.21642329 0.37643942 -CCCCA 0.5394099 1.3140373 0.1986135 -0.18312812 -0.792579 -0.16600183 -1.312235 -1.2638869 0.021201292 0.453257 -0.6264893 -1.2579904 -TGACA 0.48510635 0.9888257 -0.041752055 0.8007886 -0.7292113 -0.32269117 -0.16337997 -0.31321624 -1.4664009 0.031450663 0.09562535 -0.042524025 -CCACC 0.5251795 1.8614631 0.28717554 -0.18622284 -0.5069267 -0.59647435 -1.1837114 -0.81493986 0.08434929 0.61993974 -0.50008297 -1.4515022 -CCTGG -0.5304803 1.7560791 -0.41489363 0.25915268 -0.5681466 -0.046410896 -1.0159922 -0.04501124 0.41975978 -0.21772967 0.6596223 -0.72305304 -GGCTG -0.3267448 1.7139417 -0.5015339 0.540139 0.38750988 0.43519938 -0.6462495 -0.10666266 -0.28486514 -0.6440094 1.374594 -0.35836166 -ACTGC 0.26056236 1.508184 0.27329215 0.45785087 0.6907495 -0.7614684 -0.4696962 -0.28556243 -0.87456495 0.10685254 -0.013824985 -0.7079604 -AGCCT -0.11347309 1.2856941 -0.14922248 -0.80975306 0.5501686 0.30274466 -1.1086946 -0.92599905 0.03614006 -0.13592991 0.26457483 -0.71974427 -TCTCC 0.5929671 0.9945772 -0.22555004 -0.64809006 -0.44381493 -0.79068434 -1.419703 -0.7647221 0.45995107 0.92051476 0.86786413 -0.22688963 -CCTTC 0.5125681 1.2427412 -0.7044532 -0.86428887 0.07998667 -1.0547974 -1.2957574 -0.7485151 0.5190843 0.6831365 0.6076254 -0.15991911 -TATCA 1.9882915 0.16258676 0.09819324 -0.48387527 -0.6261354 0.15605214 -0.6572455 0.23489897 -0.23619887 0.0029472057 0.73465776 -0.087350115 -CAAAC 1.1786714 0.6073643 0.7947403 -0.56909615 -0.5669311 -0.9239786 -0.61259484 -0.7849842 -1.0042592 -0.33535007 -0.6163926 -0.6938441 -ACCAT 1.327818 0.9639192 -0.17841153 0.40560344 -0.8466103 -0.33967367 -0.6212641 -0.112687275 -0.19303168 0.37221456 -0.6606639 -0.6149859 -ATATG 1.4275726 0.28507522 -0.7413525 1.0479794 -0.42852202 0.69136053 -1.1033317 0.2722405 -0.27659473 -0.72680223 0.11130059 -0.2595583 -CTCAC 0.3462781 1.4325095 0.5432745 -0.7827994 -0.42188904 -0.8419852 -0.6678039 0.1714747 -0.61567396 0.6192753 0.6337936 -0.5053497 -GTGGG -0.2597571 0.98001474 -0.26323837 0.6941684 -0.7721272 0.047163326 -0.3232302 -0.42182705 -0.2875603 -1.5107591 1.5101026 -0.62902 -TGTTG 0.41336206 0.33858126 -1.4956285 1.0465778 0.027284466 -0.8734094 -0.4471013 -0.46756667 -0.646491 -0.6526337 1.0428114 -0.012113012 -GTTCT 0.4774589 0.3080133 -0.623943 -0.32853043 0.14128625 -0.96499515 -1.0164952 -0.34893298 0.033805314 -0.12609966 1.796295 0.15221703 -GAGGA -0.01591969 1.1052139 -0.0019731103 -0.09381859 -0.6158961 1.0252908 -0.6402216 -0.83814555 -1.1029797 -1.2185308 0.5530266 0.19695337 -AAACC 0.6714064 0.8538157 0.4342487 -0.291525 -0.75926137 -0.3667442 -1.0599585 -1.013198 -0.35043862 -0.7538863 -1.2290514 -0.71425825 -ATCCA 1.2522665 0.44365424 -0.24692003 -0.38349432 -1.1062818 0.0041244724 -1.0764335 -0.61634696 0.10439265 0.3146285 -0.21947518 -0.6581739 -CTGCC 0.055916782 1.5612384 -0.5029931 0.26752344 0.5935571 -0.3157577 -1.303053 -0.5873476 0.19488259 0.5768286 0.6182684 -1.0112355 -ATGCT 0.6861443 0.8524896 -0.7066977 0.5885987 0.64946735 0.4855394 -0.7450648 -0.4204929 -0.005704548 0.011766967 0.2739528 -0.13654177 -AGATG 0.5022236 0.3477834 -0.37961444 0.5297537 -0.5720348 0.8669623 -0.645954 -0.7684108 -0.8749649 -0.71652114 0.31179166 -0.061915122 -GTAAA 1.3763908 -0.3377819 0.0721022 0.4380342 -0.09397857 -0.5968851 -0.6860553 -0.36111164 -0.29534534 -1.5549413 0.34200007 -0.46764013 -GGAGG -0.3486847 1.5257624 -0.09426295 0.038963407 -0.76157063 0.92526764 -0.51953536 -0.58365536 -0.6110985 -1.24733 1.361133 -0.37948337 -AACTA 1.2071756 0.7246166 0.7317113 -0.2614709 0.25952885 -0.58246195 -1.1125133 -0.14598764 -0.5466592 -1.1464205 -0.616166 0.2526115 -TGAAC 0.09825605 0.9113565 -0.3984691 0.3990661 -0.39326292 -0.77656746 -0.53474426 -0.72527164 -1.0993733 -0.58722603 -0.6018351 0.2382392 -ATCTC 1.1077051 0.5719599 0.08295734 -0.7731273 -0.79516923 -0.41896343 -1.2993556 -0.22766542 0.202805 0.6057731 0.6314089 -0.03944091 -TTACT 1.484079 1.1330745 -0.19816273 0.27094206 0.31205174 -1.4423664 -0.6065408 0.48088154 -0.29938948 -0.44192174 0.13737427 0.60197777 -TCAGG 0.37462175 0.8877802 0.5753242 -0.9682674 -0.72550267 0.22568509 -0.24714011 -0.51481783 -0.30206585 -0.04005164 1.5894147 -0.20044433 -CAGGC 0.04364032 1.586049 0.36416277 -0.37886855 -0.05175094 0.5869422 -0.4512185 -0.5256408 -0.5079072 -0.033822224 0.8231541 -1.4267961 -AAGTA 1.4408833 -0.12599108 0.2068743 -0.044429373 0.25871342 -0.2545657 -0.44636726 -0.3546497 -0.5887412 -1.788178 0.47558302 -0.52643293 -CTCAT 1.1932294 0.80807745 -0.33594742 -0.5027138 -0.54564726 -0.5094873 -0.85606015 0.1435064 0.2378671 0.7488337 0.6324761 -0.3446898 -TCTAA 1.5341914 0.18728714 0.48838788 -0.47184566 0.23114704 -0.5922223 -1.3354878 -0.4530867 0.3063556 -0.3637323 0.46307224 0.53913844 -AGGCC -0.37924623 1.3366567 -0.0119016655 -0.5081159 -0.051354915 0.6253723 -0.7302125 -0.8119587 -0.15965275 -0.43317688 0.5432129 -1.0471623 -GCAGT 0.38771805 0.31401202 -0.22662282 0.22959197 0.61329246 -0.203753 0.08155663 -0.7678709 -0.77092785 -0.7894034 1.3082443 -1.2340428 -ACACT 0.6363023 1.4501762 0.7106986 0.085731715 -0.16015562 -1.3501146 -0.36842635 0.04444573 -0.9714638 -0.05123703 -0.18216452 -0.27631104 -TTCCC 0.71074337 0.9535978 -0.97503155 -0.33726287 -0.38145483 -0.87040555 -0.96350956 -0.9693195 0.6963675 0.53924096 0.27697477 -0.30429843 -AGCAA 1.0451698 0.52337354 0.2872244 -0.61193466 0.43322077 0.25025442 -0.06518154 -1.2268482 -0.94114375 -0.7690011 -0.05142336 -0.9531052 -TCTGG -0.13727176 1.2277033 -0.33385208 0.0542169 -0.57347995 -0.054848656 -0.9707971 -0.0019180303 0.3330248 -0.044049606 1.5404972 0.44292095 -ACTGT 0.2205639 0.68320435 0.1167477 0.8727779 -0.07141151 -1.4302299 -0.82372576 0.16884507 -0.92280805 -0.50525683 0.4084781 -0.28444278 -AACTC 0.5446893 0.74060273 0.60241556 -0.7159582 -0.3847718 -1.04188 -1.0568563 -0.5361522 -0.5671796 -0.08590614 -0.24438219 0.17968546 -TGTTC 0.715363 0.15954563 -1.0537375 0.15764807 -0.11237574 -1.0102991 -0.72876805 -0.18355425 -0.26706508 0.22553079 1.4635099 -0.33475763 -CGAG -0.026487853 0.80290264 -0.22962637 -0.5280853 -0.44734198 0.15693715 -0.89334553 -0.92756045 -0.56123185 -0.042616636 0.7814933 -0.20209375 -CATAA 2.00893 0.29793918 0.08365665 -0.12523179 -0.24401976 -0.17566958 -0.43523058 -0.16520338 -0.4761256 -0.29468778 -0.42583275 -0.68904245 -TGCCA 0.62550944 0.7123386 -0.6275319 0.4440847 0.13043235 -0.066576004 -0.43146738 -0.7471317 -0.18396004 0.27858016 0.14238271 -1.2589782 -TGTAG 0.60424334 0.3097279 -0.43801114 0.6937727 0.48763233 -0.07558847 -0.7581163 0.29529205 -0.6572469 -1.1948285 1.0183702 -0.1933929 -GACAG 0.1458547 1.092064 0.525656 -0.23994517 -0.47046298 0.36622983 -0.31396484 -0.49299368 -1.6784408 -0.6933562 0.45072347 -0.3030652 -TAACA 1.9177545 0.46697623 0.32178533 0.23833427 -0.21384542 -0.6426802 -0.1182046 -0.05744245 -1.0192059 -1.0377043 -0.2383456 -0.22888759 -AGGCA 0.4690948 1.1982005 0.24402182 -0.19441658 -0.079378076 0.91263485 -0.041621447 -0.5636162 -0.61990845 -0.7853277 0.4856883 -1.2515323 -CCTGC -0.027134443 1.8980315 -0.659402 0.17932007 0.6109617 -0.3446571 -1.1661693 -0.5406573 0.12740344 0.5507503 0.5391189 -1.028428 -GGAAC 0.23235957 1.3455501 0.47962412 0.09100885 -0.86940515 -0.08664587 -0.33709702 -0.4587287 -0.75560194 -1.2102689 -0.1388213 -0.32604587 -CTAGA 0.6004692 0.8497198 0.3887057 -0.606441 0.35883725 0.49561775 -1.3670297 -0.2383276 -0.6430538 -0.5797062 -0.03029264 0.6000595 -GAAGT 0.331992 -0.048994876 -0.33672082 -0.09710217 -0.13411754 -0.13361558 -0.35399267 -0.9151429 -0.931016 -1.4252411 0.83464503 -0.22535358 -TACTT 1.329546 1.1460252 -0.2410232 0.19111335 0.44240952 -1.3226653 -0.55769086 0.3105972 -0.44876134 -0.35124224 0.0654789 0.7350187 -GACAT 0.9413604 1.0569234 -0.21245529 0.5106927 -0.9006634 0.06940461 0.075530544 -0.016389359 -0.98926127 -0.08604604 0.09993394 0.079455905 -GCTGG -0.2380096 1.6615855 -0.48000973 0.5535417 0.18451929 0.42815787 -0.4370456 -0.17014503 0.032525294 -0.65730286 1.2478273 -0.33792594 -GATTG 0.5197554 1.0312691 -1.1033494 0.71579784 -0.24797167 0.22906926 -0.30858707 -0.734638 -0.53262615 -0.66850716 0.6275708 0.71017426 -GACTG -0.17940326 1.4786273 0.125352 0.80397755 -0.38942933 -0.24721599 -0.8837451 -0.1099411 -1.0245045 -0.9393263 0.34801915 0.043666482 -AATCC 1.255351 0.24460948 -0.19020745 -0.36196488 -0.6567828 0.08810122 -1.3057507 -1.1140983 0.13227649 0.2892389 -0.26193464 -0.4427526 -ATTAC 1.7604103 0.96581525 -0.4594608 0.22642152 -0.28672564 -0.64091647 -0.45473778 0.30940336 -0.35447156 -0.031464092 -0.40078065 -0.07948801 -CTTGA -0.13127421 1.0446227 -0.75114316 -0.04604834 0.098876275 -0.4269791 -0.83388853 -0.6841503 -0.9669856 -0.35134056 0.16529831 0.83767664 -GTTTA 1.2026143 0.2196086 -0.90192956 0.08291187 0.16067979 -0.7342832 -0.15094173 0.035553496 -0.31905934 -1.243255 0.8029113 0.14518024 -GTTGA 0.17440042 0.25923246 -1.1000036 0.48679936 -0.31544888 -0.43137455 -0.6287547 -0.9261518 -1.0232023 -0.82012427 0.7409859 0.51737183 -TCATG 1.1004391 0.43246117 -0.5267683 0.6114798 -0.95252967 0.03282536 -0.26381734 -0.28715694 0.07297733 0.40935335 0.9912298 -0.37943092 -ACTGA 0.09646394 1.1255174 0.16244566 0.34184718 -0.19398814 -0.4599695 -0.9811604 -0.24498731 -1.309223 -0.4130638 -0.44397813 0.42659953 -TAGTT 1.3687484 -0.0366128 -0.8749807 -0.21250513 0.48730686 -0.54589844 -0.32450923 -0.09403662 -0.35920048 -0.9885621 1.2114744 0.17698084 -GGTTT 0.54899853 0.6315499 -1.0145013 -0.13853881 -0.37413412 -0.6749793 0.15931548 -0.14639634 -0.07971465 -0.8951158 1.5771011 0.17323968 -ACCTG -0.08086759 1.410081 0.0067612804 0.69053215 -0.15896954 -0.38446456 -1.0540663 -0.17758825 -0.30953854 -0.039118078 -0.35264394 -0.5335355 -GCACA 0.82178664 1.3848895 0.590946 0.2443307 0.04174393 -0.14698389 0.27617252 -0.45998156 -1.0528284 -0.12551738 0.18432325 -1.2952812 -CAGCC 0.22052799 1.249977 -0.0072195167 -0.7856506 0.10580338 0.22857729 -0.99372834 -1.0324014 -0.3831496 0.6383733 0.39946607 -1.4870616 -TGTGC 0.17992425 0.8280057 -1.0026656 1.1499656 0.510966 -0.695945 -0.56155676 -0.45264038 -0.44368562 -0.08470964 0.9493561 -1.0337292 -AGCTG -0.085773684 1.0787679 -0.27737987 0.111999065 0.9657488 0.40562662 -0.70516336 -0.6644639 -0.7356009 -0.5756611 0.7033616 -0.29089123 -GAGAC -0.1686766 1.487643 0.23700275 0.037025232 -0.68341553 0.1888224 -0.5037173 -0.5300083 -1.5501564 -0.4273168 0.102592416 0.4015088 -CAAGT 0.557306 -0.15904424 0.1816814 -0.31114522 -0.083649315 -0.7065871 -0.4723145 -0.86751765 -0.70338196 -0.6011083 0.66569394 -1.1696103 -GATGG 0.3602557 0.93987924 -0.5542544 0.7968476 -0.96380395 0.8296425 -0.5904528 -0.29999238 -0.5086105 -1.0923603 0.83010864 -0.005497147 -AACCT 0.33985308 1.0256175 0.06788065 -0.089432925 0.061161697 -0.7198248 -1.0144447 -0.5256677 -0.16170879 -0.43390098 -0.8709779 -0.2600561 -TGGCT 0.03128249 1.6207157 -0.6208239 0.19172145 0.3923026 -0.114585765 -0.42606616 0.04364949 0.062830836 -0.18689077 1.1456438 0.02886627 -ACGG 0.18529129 1.306953 0.2587556 0.1963886 -0.85522205 0.10793757 -0.20987743 -0.40262526 -0.54836386 -0.8764054 0.19688144 -0.44147503 -ATACT 1.5156685 0.8761333 0.33375373 0.2856637 0.042618185 -0.4996607 -0.97168094 0.45113948 -0.49940744 -0.2946212 -0.2855359 0.33760238 -ATTGG 0.69060826 0.92437935 -1.1009576 0.40041533 -0.5796173 0.2394367 -0.19071585 -0.396906 -0.22413051 -0.7627538 0.6641828 0.45814943 -TGTTA 1.1234862 0.24683325 -0.9798173 0.6235735 0.13523772 -1.1260731 -0.517781 0.34554872 -0.48574477 -1.029426 0.5489794 -0.18109758 -AGTCA 0.784922 -0.11817065 0.24517609 -0.5815962 -0.4913889 -0.37356597 -0.3177132 -0.2945337 -0.798988 -0.57504696 1.184101 -0.8425581 -AGCTT 0.42596215 1.0449228 -0.4082661 -0.90937316 1.1342212 -0.15651728 -0.22474258 -0.7706167 -0.48698315 -0.48770297 0.68163556 0.2742909 -CCTCT 0.2911748 1.4813447 -0.21745405 -0.7528023 0.07056816 -0.7701429 -1.729934 -0.3571026 0.4531883 0.6995919 0.5300859 -0.07401537 -GCCTC -0.13509038 1.5172014 -0.0127825355 -0.5589621 -0.029131964 0.10211971 -1.1250982 -1.0112047 0.2261779 0.49182102 0.7840121 -0.7397272 -CCAAT 1.3127815 0.5179099 -0.30477577 -0.102049425 -0.61815035 -0.10217853 -0.8024207 -1.0792574 0.2877619 0.26397765 -0.40200737 -0.6683957 -ACCTT 0.60492086 1.2958134 -0.39273736 -0.20558095 0.11379147 -1.1170659 -0.7057098 -0.34917188 -0.10312926 0.14475313 -0.47249815 0.16047737 -CTCTC 0.48907974 1.2871101 0.15746595 -1.0049698 -0.07128657 -0.9028915 -1.6339151 -0.3240088 0.13947697 0.7381944 0.960289 0.09024455 -GTGAT 0.33200642 0.23084188 -1.0296141 0.90958714 -0.5020053 0.15053079 -0.8926974 -0.47816598 -0.42547777 -0.4403161 0.9319559 0.07187915 -TATGA 1.1301923 0.5122459 -0.7963256 0.82614976 -0.43120193 0.3054784 -1.0967618 -0.097782254 -0.5937761 -0.6726042 -0.16207622 0.74028 -CATGA 0.5616861 0.7005652 -0.66093284 0.38984317 -0.848273 0.3162206 -0.70179707 -0.38598016 -0.9333257 0.19863285 -0.36736253 -0.46952686 -CCATG 0.5502114 0.98061264 -0.59639853 0.8465643 -0.80794615 0.035292577 -0.5840048 -0.45947313 0.20529264 0.2993094 -0.06514283 -1.1389648 -GGTGA -0.25878507 0.770114 -0.6506785 0.8466747 -0.8556515 0.16272494 -0.54782885 -0.6103684 -0.870741 -1.1066345 0.7759665 -0.2117469 -TATGG 1.0281186 0.8168291 -0.5452965 0.8478451 -0.36196676 0.47421226 -0.597704 0.42283687 0.29154545 -0.98316985 0.6561253 0.015731568 -ATCAC 1.1122671 0.85562223 0.39488634 -0.4842248 -1.0372654 -0.14566703 -0.54523534 0.17153592 -0.66478914 0.34111026 0.1073985 -0.4368502 -TAGAG 0.72171587 0.4744905 -0.04541398 -0.32349172 0.52732027 0.6923847 -0.6788435 -0.30053166 -1.0318696 -1.1532693 0.8289641 0.4476644 -TGGGG -0.28548455 1.3521669 -0.562276 0.5442745 -0.74690974 -0.0016222878 -0.37525624 -0.15317981 0.0016831693 -1.0735207 1.4327325 -0.28647134 -AGCAT 1.348521 0.8635166 -0.3857291 -0.253376 0.45506135 0.63820744 0.20447032 -0.47812882 -0.34535918 -0.3205593 0.1649596 -0.5516914 -GCAGA 0.33994997 1.0149102 0.458073 -0.26397482 0.17558362 0.8516001 -0.21127915 -1.1627277 -0.9570034 -0.46602196 0.5204228 -0.62737226 -GTCCA 0.39289254 0.47193375 -0.53155303 -0.16273865 -0.92428464 -0.7373342 -0.7033164 -0.6667918 0.054212697 0.119163744 0.8300356 -0.93944836 -CTGGT -0.0455717 1.1055893 -0.41854307 0.46609387 -0.23812371 -0.6394428 -0.6710783 0.27651092 0.17026973 -0.39593124 1.3419626 -0.30123326 -TGCTC 0.15210886 1.1815488 -0.35718876 0.07539445 0.49625435 -0.29081574 -0.92675316 -0.30868235 -0.03391251 0.5294195 1.00883 -0.36419 -GTTTG 0.28013456 0.54058796 -1.1830077 0.50574213 0.06317211 -0.76379645 -0.10943841 -0.48029065 -0.59945136 -0.80133337 1.2837324 0.07269219 -AACCA 0.91096556 0.8504056 0.35044473 -0.046387106 -0.60421133 -0.35678798 -0.7592801 -0.6834471 -0.46615553 -0.43702522 -1.0038351 -1.0211993 -GCTCC -0.103095606 1.4542023 -0.32678264 -0.23284999 0.28194448 -0.089943975 -1.067349 -0.85770434 0.18043885 0.5956944 0.6996899 -0.6047975 -CAATA 1.930593 0.17048241 0.18724932 0.082133844 -0.24383314 0.25524363 -0.6703894 -0.27202833 -0.61788553 -0.28263193 -0.21778971 -0.4850724 -ATGAT 1.095567 0.35674974 -0.9652158 0.8832198 -0.8029441 0.6914969 -1.1200701 -0.5717518 -0.2850226 -0.44609421 -0.089639336 0.24750258 -AGGCT -0.31379774 1.5329311 -0.18864512 -0.42112178 0.48226136 0.47401485 -0.6017855 -0.39059204 -0.41499624 -0.830958 1.0770396 -0.17931737 -GGACA 0.6073283 1.3492162 0.4826223 0.35594863 -0.9348059 0.053065334 0.16797909 -0.22293545 -1.076041 -0.64000314 0.24388699 -0.12758 -CCTTG -0.014361036 1.2266104 -1.2275804 0.1516442 0.18300012 -0.9990995 -0.7056327 -0.8850729 0.074902594 0.077157676 0.37144527 0.0811055 -ATGAG 0.42191768 0.4036555 -0.78646684 0.51229984 -0.39340782 0.8111779 -0.7399518 -0.7195104 -0.9538754 -0.84642375 0.00567776 -0.037579622 -AGGTG -0.09437727 0.5487175 -0.0705147 0.39656878 -0.43046477 0.26084116 -0.36975253 -0.3264918 -0.7421717 -1.2872123 1.2081046 -0.80782795 -GTATT 1.5594176 0.06717801 -1.0818496 0.64446384 -0.058520876 -0.47153452 -0.6997075 0.02408935 0.07095336 -0.8287631 0.83181894 0.28063732 -ATGTC 0.85088205 0.06661913 -0.36560765 0.7053526 -0.8467311 -0.6081685 -0.9901531 -0.070422255 -0.07407156 0.1398676 0.89823073 -0.58767116 -CGGA 0.05703751 1.2146215 0.04085902 -0.09499962 -0.854254 0.34050995 -0.39339784 -0.6367814 -0.4731197 -0.86067176 0.26582128 -0.25718024 -GGCAT 0.8966822 1.1801772 -0.5029313 0.44976932 -0.40165505 0.8176912 0.10948611 -0.16240008 -0.024666676 -0.23694031 0.68386704 -0.76688075 -GAGCT -0.24285679 1.2950015 -0.42821208 -0.37976602 0.5557009 0.39378127 -0.7092927 -0.7471955 -0.77283114 -0.30081543 0.89660054 0.30951613 -TGAGT 0.08324384 0.013483098 -0.9505223 0.1340219 0.12458975 -0.17117625 -0.89668494 -0.62485427 -1.0437473 -0.6417818 1.0608506 0.045087047 -GTAGA 0.78058016 0.180251 -0.15845929 0.23276906 0.14975548 0.40940216 -0.8389185 -0.10945679 -0.9005826 -1.1545341 0.73195386 0.22441514 -GGCCT -0.30045047 1.3995166 -0.24625556 -0.16445613 0.11974302 0.36873132 -0.68986624 -0.53907907 0.2329864 -0.17140572 0.8361426 -0.7035272 -CTGTA 0.85458374 0.46873963 0.10992993 0.898908 0.47991014 -0.6996617 -1.2806519 0.5725557 -0.1462755 -0.44886598 0.6157336 -0.32720786 -GTTCA 0.79659647 -0.009613584 -0.34254298 -0.41889513 -0.5661679 -0.87657005 -0.08416093 -0.3725998 -0.44690868 -0.10358899 1.3521311 -0.6367158 -TTTAC 1.6456082 1.25533 -0.56065077 -0.07184725 0.11406428 -1.30832 -0.22546332 0.31829762 -0.46702605 -0.18745084 -0.2211009 0.42055175 -TAAAC 1.5176841 0.49111983 0.38919196 -0.1203957 -0.14871988 -0.94564843 -0.58987874 -0.033056036 -0.61532557 -1.1273712 -0.56101054 -0.05973318 -GCTCA 0.4230391 0.98477745 0.38829097 -0.49210015 0.04299493 -0.25725713 -0.39257374 -0.31611025 -0.20311743 0.39174712 1.1676377 -0.59020984 -CGTT 0.44219923 0.7133215 -0.8377558 -0.16663986 -0.15201764 -0.85011154 -0.3899386 -0.3954297 -0.024198012 0.029624846 0.7798064 -0.23022753 -TCATA 1.8878627 0.22029224 0.3099202 -0.13617405 -0.274891 -0.018073462 -0.501083 0.060859114 -0.10863135 0.16373073 0.8586741 -0.14649415 -GAGCA 0.48725295 0.89244443 -0.2253235 -0.16287892 0.28345883 0.7328658 0.04328052 -1.0502193 -1.2572163 -0.44691223 0.4453431 -0.620538 -TGTCC 0.13146321 0.54356444 -0.82404685 0.4951854 -0.5691331 -0.87802935 -1.1824913 -0.5394287 0.2062331 0.30153295 0.886642 -0.9523887 -TAAGA 1.0495285 0.272821 0.26487064 -0.31960213 0.009955512 0.14722328 -0.7353909 -0.56244385 -0.76559234 -1.3670316 0.042511217 0.54367846 -CAGCT 0.41045618 1.4447622 0.30892006 -0.7303267 0.86084145 0.05482675 -0.658464 -0.48674905 -0.60241026 0.46751067 0.64866555 -0.66202396 -TCTTA 1.3492461 0.586843 -0.35220268 -0.47320855 0.25331572 -0.85083514 -0.77141505 -0.15619764 0.059379227 -0.21041718 0.5522309 0.681639 -TGATA 1.1974444 0.23968394 -0.5366327 0.8092387 -0.024795733 0.49526975 -1.0691248 -0.2328481 -0.68074137 -0.5320446 0.12174652 0.4890999 -TGGTT 0.5236475 0.67387 -1.1888762 0.3459536 -0.32884985 -0.78004134 -0.30407757 0.16592802 0.07967444 -0.84839803 1.4420733 0.1358912 -CAACT 0.78889453 0.9008196 0.5757095 -0.47209382 -0.020967595 -1.2203963 -0.5499972 -0.36138445 -0.94099414 -0.042487998 -0.21939264 -0.070784606 -ACCCA 0.6279558 1.1275895 0.5490139 0.04459636 -0.77447695 -0.1315695 -0.8593295 -0.8606097 -0.25596863 0.025792183 -0.774542 -1.2843014 -GTCTC 0.035409328 0.41218153 0.026558785 -0.35112706 -0.6342288 -0.81729853 -1.2768056 -0.2949114 0.12013409 0.05196215 1.5409724 -0.41506323 -TGGGT 0.10694949 1.0517396 -0.8429408 0.6715429 -0.5935085 -0.29690915 -0.29410172 0.017127456 0.23113337 -0.8676655 1.6038787 -0.24703743 -CAAGG 0.39254513 0.5162588 0.5759889 -0.8289278 -0.8184501 0.100732066 -0.09871219 -0.82481956 -0.39176536 -0.9204885 0.76626045 -0.8763031 -TTGGT 0.36838925 0.764162 -1.2139239 0.69795305 -0.31815153 -0.7128086 -0.053196564 -0.34043074 -0.0091636805 -0.84521824 1.5294936 0.13151428 -ACTAA 1.1724536 0.6587617 0.870079 -0.10748974 0.2460599 -0.69202274 -1.0259901 -0.32227948 -0.523709 -1.1091003 -0.18799452 0.35569543 -GTGTA 0.85971475 0.063324995 -0.44915655 1.1420586 0.11393744 -0.54654443 -0.73791635 0.031984445 -0.37629685 -1.2331845 1.0605285 -0.5449316 -CGTG -0.2551834 1.018133 -0.19037604 0.5686976 -0.30384833 -0.23694026 -0.5116139 -0.42090148 -0.21659467 -0.3109011 0.84389824 -0.95370525 -TTAGT 1.2283889 0.19682515 -0.6872241 -0.2764821 0.61004514 -0.7203254 -0.4455399 -0.032995064 -0.26688707 -1.1553878 0.87656814 0.008609806 -CATGG 0.65506047 1.0215029 -0.4686675 0.5179556 -1.237117 0.39211023 -0.16567126 0.24144706 -0.06562348 -0.25584438 0.5254417 -0.76891595 -CCATC 1.210096 0.93803 -0.021454649 -0.5334623 -0.986999 -0.2845913 -1.2568833 -0.55093807 0.5104247 0.80951846 0.19217114 -0.6209805 -CAGGG -0.1488811 1.2434913 0.28933895 -0.28064805 -0.91067284 0.41070136 -0.25954977 -0.50300896 -0.50718915 -0.4912338 0.96781135 -1.0716324 -GACAA 0.77096504 0.7942481 0.6334685 -0.021398203 -0.69340825 -0.21491835 -0.12316529 -0.6527637 -1.2916154 -0.8041875 -0.27349746 -0.24568109 -CTTGT 0.42950565 0.73788166 -1.0797572 0.4678789 0.35830727 -1.3706247 -0.8339575 -0.31870976 -0.30899557 -0.10307483 1.0371361 0.11898169 -AGTCC 0.32246885 0.42096233 -0.37572405 -0.5567311 -0.40452707 -0.6275349 -1.0439953 -0.7709779 -0.034076378 0.028708855 0.7735725 -0.83401567 -AGCAC 0.48771235 1.4277257 0.510856 -0.41475832 0.4896538 -0.41180623 -0.06581106 -0.42908087 -1.042984 -0.21531445 0.083397284 -1.232282 -ACAGT 0.84568524 0.3612696 0.42648563 0.06468559 -0.10766734 -1.0156934 0.26574883 -0.23006971 -1.0148668 -0.6511946 0.6958855 -0.8430855 -TCAAG 0.81493604 0.15603483 0.5220052 -1.0631585 -0.4443608 -0.31553608 -0.21152847 -1.148685 -0.092717476 -0.32194677 1.1327405 -0.23960547 -ATTGC 1.2417425 0.8821525 -1.0764713 0.51798826 0.4712769 -0.14831257 -0.1861491 -0.6517207 -0.2861702 0.16037272 0.18716826 -0.3376593 -CCCAT 1.200854 0.8962678 -0.4669953 0.18541645 -0.7053549 0.009741667 -1.0498164 -0.6262464 0.49551436 0.79987514 -0.18343893 -0.82545125 -AAGCT 0.515603 0.7686346 0.13513795 -0.9021071 1.0036206 0.06890696 -0.42532057 -1.0698293 -0.36816546 -0.58312124 0.3375493 -0.07275829 -GATGT 0.514355 0.16145992 -0.8288134 1.0972137 -0.5707527 -0.2638337 -0.8341079 -0.2493667 -0.6744425 -0.45351285 0.91235906 -0.021546915 -ACAGG 0.51594496 1.4424986 0.8167132 -0.21508735 -0.6932034 0.1272349 0.25780827 -0.061055426 -0.9238094 -0.7749969 0.6503342 -0.7286656 -TACAG 1.2022384 0.87553847 0.42661858 -0.012840337 0.23585936 0.041069537 0.12909226 0.27706522 -0.8967989 -0.53437656 0.4212826 -0.30316487 -CATGC 1.0460812 1.0480535 -0.5290194 0.55330503 0.13943212 0.15536273 -0.30674282 -0.21302025 -0.30299303 0.5576105 0.17000435 -1.4645047 -GCTTC 0.36845812 1.1321566 -0.38986057 -0.682433 0.53212833 -0.27216178 -0.46593556 -0.7653993 0.08546966 0.34237787 1.0353436 -0.03735323 -TGACT 0.075065285 1.1418389 -0.18444496 0.48714277 -0.2700073 -0.7947362 -0.9663815 -0.14482556 -0.9328756 -0.11746603 0.09779839 0.7653173 -CTTAT 1.3863224 0.9577286 -0.92766386 -0.018143369 0.3046615 -0.57744724 -1.0494671 0.32945582 0.23158514 -0.016690824 -0.020257901 0.3896021 -CCAAG 0.39074433 0.6656568 0.3233613 -0.68504024 -0.3166134 -0.0046973606 -0.5689861 -1.3802332 0.018495163 -0.31492892 -0.01014507 -0.9758222 -TCAGC 0.747902 0.9154473 0.22257341 -0.9975088 0.34178242 -0.12736739 -0.35347986 -0.9707351 -0.27066436 0.62056965 1.1366888 -0.8123586 -AAGAC 0.60730976 0.8919423 0.6985943 -0.5468244 -0.58695304 -0.20179206 -0.30032393 -0.80348 -1.1384209 -0.85231113 -0.2997535 0.073317856 -AGGTT 0.3197863 0.46438742 -0.6018793 -0.5161659 -0.17710738 -0.36426702 0.12080705 -0.35012048 -0.41827664 -1.0605634 1.2832863 -0.15367977 -TCAGT 0.76892793 -0.11167998 -0.10223914 -0.3520193 -0.1853491 -0.68967754 -0.23626344 -0.6586166 -0.49231052 -0.08221836 1.5505216 -0.6865688 -GCATG 0.71110415 0.9881403 -0.41147968 1.0392067 -0.066041246 0.5236313 0.09622461 -0.6786931 -0.29956922 -0.26940906 0.37109625 -1.1384642 -CCAGC 0.32617244 1.435228 0.2834 -0.54220927 0.12825698 0.08526331 -0.8577039 -1.099742 -0.18220332 0.43499202 0.01158791 -1.3406823 -TTAGA 1.1451036 0.5622809 -0.62674594 -0.5555754 0.1594047 0.14012653 -0.504366 -0.4031698 -0.5912647 -0.96080095 0.23597433 0.9727068 -AGTTA 1.0894564 0.11535618 -0.34427947 -0.30756974 0.3926393 -0.57379156 -0.2809083 0.0032352186 -0.69547325 -1.4398603 0.5594748 -0.17683965 -CTGAC -0.22695848 1.6856798 0.01669909 0.36653662 -0.21515821 -0.4839688 -1.1605092 -0.24742147 -1.004711 0.25112018 -0.070375405 0.1767018 -TCTTG 0.18725784 0.8665615 -0.805913 0.094281055 -0.07878817 -0.73027563 -0.7146784 -0.5601779 -0.11900694 0.0058174804 1.4587325 0.8027214 -TCACC 0.8525877 1.2441266 0.30651772 -0.32427555 -0.57618344 -0.94611394 -0.5632943 -0.32182902 -0.079874344 0.83719826 0.15085676 -0.7927539 -AATAC 1.7605313 0.42786047 0.46139014 0.23160212 -0.23197784 -0.2365856 -0.7807954 -0.15092582 -0.5685252 -0.69387376 -0.61431414 -0.17467035 -ACTTG 0.23415814 1.2411537 -0.36012766 0.2726494 0.14269622 -1.0313213 -0.20856453 -0.34103772 -0.90183866 -0.3208305 0.14121534 0.5237408 -GAACT -0.004295855 1.0920225 0.20010486 -0.11400833 -0.107929885 -0.68023795 -0.6968934 -0.4164376 -0.8926506 -0.94158477 -0.21682736 0.57173187 -CTGTC 0.14627369 0.761976 -0.2190724 0.26068437 -0.29777148 -1.2230979 -1.4087255 -0.09850268 0.044668164 0.4841054 1.1142446 -0.47997487 -CAAGA 0.8620233 0.5329279 0.4160904 -0.86847013 -0.5310257 0.23035881 -0.44442323 -1.0712179 -1.1161851 -0.38866356 -0.10416927 0.021885002 -ACAAG 0.8628674 0.7847106 0.9236624 -0.4676253 -0.44139016 -0.27958038 0.17824289 -0.76467603 -1.0356101 -0.96330696 0.19843572 -0.4629519 -CCCG -0.259517 1.4052782 -0.24648634 0.04449479 -0.61280054 0.0036596332 -1.1108471 -0.8298882 0.287992 0.0019826626 0.18059626 -0.7938227 -TTAAG 1.1501915 0.31877577 -0.423705 -0.45826757 0.10591993 -0.3123943 -0.10930209 -0.56891435 -0.23053333 -1.4066564 0.42102534 0.531383 -CCAGT 0.4430192 0.26086172 -0.2729211 -0.33215058 -0.16104564 -0.78392094 -0.67656785 -0.7716502 0.025671802 0.074210115 0.79016006 -1.2584575 -ACCAG 0.36567253 0.9377324 0.63781583 -0.20501333 -0.39826047 0.24824905 -0.6902335 -0.68687046 -0.6528307 -0.19962628 -0.16791138 -1.125182 -AGGAC 0.029857691 1.3059906 0.5441517 -0.49351162 -0.5028078 0.0010593664 -0.5540193 -0.28820926 -1.0262014 -1.0193294 0.11804266 -0.00479241 -TCTAG 0.7552607 0.3821275 0.18428811 -0.46477696 0.51751924 0.09522794 -1.3143235 -0.1652744 0.12912801 -0.3826723 1.1164027 0.40246758 -ATGGG 0.41574872 0.9811077 -0.44578734 0.6170927 -1.0832876 0.65283144 -0.26110718 -0.08207802 0.043312263 -1.0458729 0.60262173 -0.22446992 -TGGTA 0.88867867 0.44651517 -0.3617882 0.89180535 -0.29670778 -0.014676312 -0.6575154 0.4630253 0.058680702 -1.1956983 0.9267519 -0.43988895 -CCCTC 0.27225548 1.5321279 -0.021881713 -0.6625535 -0.23780504 -0.5198094 -1.4168175 -0.8610862 0.36251703 0.9112663 0.31483692 -0.6613476 -TTGGG 0.088966995 1.2420055 -0.9590636 0.36207694 -0.49807695 -0.33161116 0.07204592 -0.39188427 -0.09375104 -1.0539058 1.4009951 0.6249439 -GACTT 0.091231115 1.2854663 -0.29560816 -0.2946431 -0.16659819 -0.81730986 -0.49890336 -0.38773614 -0.846795 -0.5245444 0.14243573 0.9647631 -GCTGA -0.3208553 1.2860752 -0.4872036 0.31481373 0.5119532 0.5877049 -0.8752467 -0.8546046 -0.8838182 -0.48953965 0.46415436 0.12262995 -GGCAG 0.10207749 1.2733818 0.2315884 -0.20138836 -0.07543272 0.861221 -0.12679346 -0.7097286 -0.72743684 -0.6682487 1.0548283 -1.2912159 -AGAAC 0.4822737 0.988312 0.49776447 -0.5052515 -0.39571142 -0.027383825 -0.5847535 -0.60552996 -1.3452996 -1.03976 -0.52885157 -0.04200107 -AGCCA 0.33678916 0.879827 0.07316221 -0.40973058 0.015443971 0.4397745 -0.5954619 -1.0680591 -0.62137544 -0.3251563 -0.2635843 -1.364618 -GCACT 0.27689373 1.5136787 0.52294374 0.056731846 0.5888984 -0.7681107 -0.14840363 -0.3721146 -0.70071155 0.040286303 0.33624533 -0.56801045 -ATTCG 1.0119692 0.83222914 -0.8248129 -0.38502145 -0.61601865 -0.102456346 -0.82097197 -0.583291 0.014839322 0.25142407 0.54683757 -0.0117687965 -GTCTT 0.29826775 0.5464536 -0.7627127 -0.21526724 0.055135015 -1.2202212 -0.8595033 -0.21188729 0.08519313 -0.39297336 1.2709563 0.28046116 -GCCG -0.34557676 1.3921294 -0.19296613 -0.00028376098 0.1372041 0.43904483 -0.6585725 -0.8130834 -0.091650605 -0.27136254 0.5827383 -0.80641556 -CGGG -0.33527958 1.4465785 0.021949748 0.17950602 -0.76042855 0.09827935 -0.38406652 -0.40582463 -0.12644845 -0.6563689 0.9145145 -0.5778835 -CAGGT 0.23097561 0.54896545 0.07553606 -0.13212039 -0.5095941 0.119329646 -0.19629467 -0.15600266 -0.6118264 -0.37539372 1.2941649 -0.94411284 -ATAGT 1.5227683 -0.30214602 -0.33226487 0.0575217 0.23080088 0.09276158 -0.6937789 0.022476813 -0.42454898 -1.1389431 0.85453904 -0.49234173 -CTTAA 1.1048656 0.5199914 -0.19181502 -0.6020526 0.3551255 -0.88924664 -0.834146 -0.308811 -0.11605209 -0.59799623 -0.19788834 0.3362022 -TGCAC 0.433138 1.3905854 -0.25815982 0.3473538 0.45756274 -0.759339 -0.12417454 -0.07594912 -0.7617423 0.2042352 0.13072054 -0.94614446 -GTCCT -0.011136446 0.67315066 -0.57046235 -0.060210902 -0.19741665 -0.9384871 -1.2514433 -0.31059015 0.41307354 0.002234904 0.9904239 -0.43778923 -CGAT 0.8634682 0.8724041 -0.6649443 0.032573164 -0.6430706 0.2898024 -0.8013413 -0.5568837 -0.030171456 0.26845515 0.44040844 0.19986649 -CCGT -0.0012693655 0.8454634 -0.47948998 0.0886927 -0.4571175 -0.54778016 -0.730613 -0.48764583 0.19831549 0.10053192 0.57572913 -0.77133375 -CCCAA 0.76517445 0.6813169 0.28263322 -0.32515776 -0.5383715 -0.28248855 -0.9704292 -1.3774196 0.0634797 0.013067656 -0.5836289 -1.1736556 -AGTTC 0.50551 0.0479165 -0.44412655 -0.92998976 0.1954693 -0.8139159 -0.52106935 -0.48444292 -0.4302476 -0.41125748 1.2429243 -0.23714781 -ATCAG 1.039251 0.14120242 0.18847159 -0.89000994 -0.683734 0.43834206 -0.7330819 -0.33961186 -0.47524154 0.10876526 0.6936841 -0.585328 -ACGT 0.27084628 0.7359625 -0.026179178 0.2761383 -0.21417597 -0.73470414 -0.26557904 -0.016876772 -0.54754066 -0.313659 0.4913689 -0.6253494 -CTGAT 0.3514412 0.9062453 -0.69564855 0.6534614 -0.15397891 0.22470102 -1.2952156 -0.17564562 -0.42373008 0.15851499 0.26024404 0.64307266 -ATTAG 1.4044164 0.4536857 -0.6883068 -0.4995509 0.23202059 0.20838723 -0.56646335 -0.18091977 -0.2974602 -0.88110846 0.033176746 0.33395103 -CCAGA 0.24724598 0.968696 0.41072586 -0.48265338 -0.6660076 0.63211226 -0.8644832 -1.1921856 -0.60935557 -0.024567496 -0.30295175 -0.5627679 -AGCTC 0.13993275 1.2777003 0.22620025 -0.9748012 0.6345129 0.08701982 -0.8661617 -0.6407232 -0.40262598 0.10224997 0.8459727 -0.30405948 -GAGGT -0.19059773 0.6339808 -0.2121667 0.13130112 -0.46184483 0.41249225 -0.3536036 -0.52224135 -0.7808141 -1.105181 1.5229164 -0.21467777 -GATTA 1.3153265 0.94596374 -0.79155165 0.16549881 -0.3845194 0.3463171 -0.3413649 0.17404549 -0.24693911 -0.91749936 0.083196506 0.84343004 -TGGCC -0.25808626 1.426287 -0.64984536 0.45041993 -0.19912323 0.07822794 -0.56344616 -0.5053025 0.23992082 -0.13950959 0.56722647 -1.0369506 -GTGCA 0.3848449 0.593445 -0.42866248 0.7796178 0.27168882 -0.21225126 0.03913161 -0.72295094 -0.6341336 -0.37760228 0.81757486 -1.3620061 -CATAG 1.3051755 0.63886684 0.09877615 -0.10921028 0.006015271 0.64849836 -0.45403937 0.30537874 -0.5753889 -0.29342476 0.28558406 -0.503675 -CTCTA 1.0197308 0.85957277 0.47938246 -0.5480128 0.26510775 -0.606911 -1.7162659 0.10700797 0.40334946 -0.02796179 0.33518526 0.27451336 -CTTGC 0.28095132 1.5932178 -0.8799959 0.09463584 1.0677549 -0.5915637 -0.5350323 -0.54843235 -0.22148004 0.3587067 0.55092514 -0.21114415 -ACTTA 1.1887581 1.1681681 0.08627455 -0.40259773 0.20344825 -1.1112248 -0.4687844 0.17138372 -0.57676154 -0.594774 -0.3932987 0.53931093 -GGTGT 0.17338613 0.599389 -0.63169575 1.0064139 -0.41138026 -0.54652166 -0.4298997 0.00553635 -0.15351628 -1.1236951 1.5892438 -0.57396674 -ATCGA 0.7264612 0.691374 -0.13735305 -0.17022687 -0.95824635 0.46741462 -1.0487702 -0.8076112 -0.31641605 -0.6690019 0.20165773 0.01845667 -ATCCT 1.0224355 0.58997095 -0.3417601 -0.31735444 -0.47913492 -0.095802926 -1.522791 -0.2743891 0.4933742 0.55126613 0.09071263 -0.22367781 -AGTTG 0.20961723 0.11861158 -0.8070073 0.17731848 0.13498072 -0.36639684 -0.17344382 -0.81759065 -0.97357595 -1.1649158 0.8994489 -0.18382071 -CTACA 1.2068415 1.0758083 0.88422805 -0.15999977 0.2926093 -0.40552345 -0.67637867 0.21325715 -0.578113 0.05225753 -0.050074827 -0.20765327 -GATGA 0.36578867 0.7003587 -0.5697224 0.5896572 -0.7691693 0.709203 -0.7478577 -0.64746594 -1.0232075 -0.72184044 0.06949676 0.288877 -GCAGG 0.0904123 1.4490805 0.33062324 -0.054427642 -0.05683126 0.70357966 -0.06759362 -0.76542175 -0.61240715 -0.75564826 1.1124629 -1.0958898 -TAGAT 1.4090406 0.6098204 -0.2091336 0.14086121 -0.047389124 0.70527667 -0.89107627 -0.163719 -0.25599852 -0.56839484 0.34155685 0.76211715 -ATCTA 1.5310011 0.29142675 0.3533592 -0.31861383 -0.09512923 0.01052864 -1.4257537 -0.005308587 0.21459824 -0.46531698 0.16756499 0.2574811 -GCAGC 0.23582414 1.4651568 0.3122406 -0.075425096 0.836637 0.3136588 -0.26473776 -0.9850837 -0.5812336 -0.15381482 0.82398206 -1.4137743 -GTGCT -0.06474871 1.053645 -0.6078355 0.59620506 0.74146205 -0.37360442 -0.6138261 -0.39790437 -0.18258683 -0.20463368 1.2418492 -0.51771575 -CAATC 1.1078414 0.34542444 0.16030735 -0.41356945 -0.59899116 -0.10363279 -0.92785287 -0.78184134 -0.2743727 0.41129458 -0.01020779 -0.5876527 -AATCG 0.79235923 0.6814608 -0.13053942 -0.112003826 -0.9975898 0.5247902 -0.92985976 -0.85264593 -0.38524255 -0.7333629 0.21797599 -0.021629522 -TTCGA 0.7471323 0.9446283 -0.75272363 -0.34413412 -0.67637545 -0.017813781 -0.8415907 -0.70152074 -0.021417093 0.19500855 0.52814996 0.28644642 -CTAAT 1.5654229 0.25718915 -0.017181499 0.15626314 0.32208672 -0.32330263 -1.2040616 -0.28348073 0.07006132 -0.25266066 -0.03813146 0.27944654 -AGGGG -0.16118349 1.1771349 0.116823405 -0.15245785 -0.8098445 0.5638983 -0.34313345 -0.5118467 -0.2892596 -1.3830293 1.1353229 -0.6247179 -GGGTG -0.298141 1.0911775 -0.37279138 0.7127361 -0.60095227 0.07974744 -0.36791676 -0.48337066 -0.31689152 -1.1162227 1.5285946 -0.7278838 -CCATA 1.4908531 0.74960834 -0.025545755 0.09025356 -0.45388722 0.11137967 -0.7591361 -0.043338865 0.28924474 0.040808413 -0.2731521 -0.5572369 -CACCT 0.49274552 1.3987699 0.07830053 -0.19269782 -0.13091433 -0.8267986 -0.849739 -0.05149674 -0.12327752 0.37716496 -0.27952623 -0.72093636 -CTGGC -0.16534439 1.7588527 -0.21152748 0.19289653 0.29782817 0.030920448 -0.59092396 -0.17909402 0.03813977 0.028894398 0.92728996 -0.8017502 -GGAGC -0.20715156 1.2467287 -0.06219519 -0.22820793 0.021948019 0.78082055 -0.35169604 -0.8631779 -0.58179873 -0.57180405 0.8374797 -0.5659262 -GATAA 1.421452 0.25647753 -0.12047638 0.24924485 -0.3479983 0.5769543 -0.8448332 -0.4555017 -0.6445783 -0.9371831 -0.13017094 0.5349052 -CGCT 0.014221956 1.4984833 -0.046234634 -0.08776132 0.38956904 -0.21724516 -0.6816284 -0.396685 0.13353829 0.124541126 0.5804674 -0.41271257 -ATCCC 0.8505516 0.6028216 -0.3999422 -0.12346587 -0.8526958 0.34718037 -1.326944 -0.74978346 0.47528213 0.44019216 -0.19039413 -0.5854109 -AGAGC 0.20461604 0.9438253 0.21363509 -0.67065483 0.48138452 0.72295207 -0.5892715 -1.1781596 -1.1834644 -0.5902691 0.3648412 -0.46194044 -ATAAC 1.7367398 0.54696506 0.35589042 0.19305682 -0.17733589 -0.44069266 -0.7520407 0.0024172005 -0.50158244 -0.5683132 -0.6960185 -0.15680361 -GAGGG -0.22986111 1.3946362 0.0472814 0.053380482 -0.81928414 0.92923945 -0.43583384 -0.6654713 -0.873842 -1.3056519 1.1262885 -0.2252822 -GAGTC 0.14288542 0.3157398 -0.33635354 -0.40830922 -0.60943145 -0.18059804 -0.8467204 -0.620412 -0.5459694 -0.22223325 1.1587785 -0.2905068 -ACACC 0.75349563 1.6062125 0.67093354 0.040073097 -0.5730439 -0.75292224 -0.45027402 -0.26182687 -0.58223313 0.06842913 -0.6170626 -1.1036338 -ATGGC 0.59847385 1.0537436 -0.33840838 0.5704115 -0.42701864 0.6771121 -0.16423257 -0.38916922 0.09319892 -0.64605296 0.28864595 -0.71907794 -GGCG -0.2344636 1.4418913 0.012932832 0.08417533 -0.3299458 0.48725992 -0.26521292 -0.61225295 -0.1981443 -0.6987138 0.87889475 -0.7509278 -TAATC 1.644377 -0.03298121 0.007609672 -0.25027722 -0.33543146 -0.106264025 -1.3178824 -0.27508315 0.10505948 -0.14282225 0.092009045 -0.0024671087 -ACATC 1.2602979 0.91658413 0.49516788 -0.32664728 -0.9727521 -0.37226033 -0.45009083 -0.10793538 -0.46733266 0.34247622 -0.013555876 -0.26866835 -AGACT 0.09379032 1.1401083 0.4707998 -0.5699296 -0.08364964 -0.32204872 -0.75626546 -0.3250285 -1.1945307 -0.54832107 0.18168125 0.6536106 -AGTCT 0.15558964 0.075228766 0.053130873 -0.5499535 -0.06302731 -0.6959484 -0.92781353 -0.29180154 -0.4152538 -0.51862 1.2112628 -0.025153112 -GGGGA -0.19003034 1.3351995 0.04101988 0.1478906 -0.97743374 0.5673929 -0.35217386 -0.3815498 -0.40998015 -1.3604022 0.9326733 -0.15475883 -GAAGC 0.3091174 0.8724057 0.069960274 -0.41418365 0.31166497 0.613149 -0.22390778 -1.2840761 -0.6799512 -0.82500494 0.09357243 -0.4056703 -ACCAC 0.6128345 1.382385 0.5413921 0.093257755 -0.555318 -0.81079954 -0.56449616 -0.19002959 -0.671223 0.12382909 -0.46469888 -0.958424 -GGCAA 0.44407925 0.8748417 0.19627509 0.03532897 -0.24271911 0.38890678 0.112447664 -0.7043527 -0.47609112 -0.86732495 0.27103573 -0.9571841 -TAGCA 1.3530036 0.62935364 -0.073520415 -0.19515897 0.85878515 0.36944714 -0.111468 -0.3562152 -0.5493585 -0.51128274 0.2618863 -0.48945957 -GTGGC -0.20000915 1.1554238 -0.32046863 0.63652927 -0.030036148 -0.056810565 -0.12960614 -0.32882333 -0.22640346 -0.6180124 1.372043 -1.1200856 -TAACT 1.0564991 0.8081277 0.37054595 0.011753449 0.3338622 -1.0990192 -0.9248736 0.03526804 -0.57623655 -0.66225845 -0.16375016 0.54512215 -ACCCC 0.44632334 1.407275 0.30217946 -0.08843376 -0.8829275 -0.49914572 -1.2595743 -0.8820333 -0.17181224 0.36443612 -0.7964474 -0.96793157 -CTCGA 0.10372765 1.1077579 0.1547086 -0.27422974 -0.7682358 0.03757879 -1.1296264 -0.60986364 -0.45627987 -0.3951737 0.27886984 0.25621372 -GAGCC -0.37504533 1.2736893 -0.34529957 -0.1864051 0.07944638 0.6576764 -0.8768371 -1.1072296 -0.510086 -0.16829582 0.2416841 -0.78677094 -TCCG 0.12436705 0.92445046 -0.3808872 -0.22295739 -0.46285272 -0.19325249 -0.7978112 -0.7643822 0.28803787 0.27079892 0.8111994 -0.36532438 -TACAC 1.5420243 1.2207577 0.38762355 0.25289458 -0.25686932 -0.92851686 -0.11345405 0.488027 -0.64117527 -0.093444295 -0.30760068 -0.4235215 -CTATG 0.599184 0.6744815 -0.45479593 0.73249257 0.21684903 -0.040665083 -1.1558384 0.2374938 0.19440815 -0.24720699 0.4125245 -0.09550672 -TAGTA 1.6581376 0.18142769 -0.17078546 0.08947142 0.56823003 -0.2583563 -0.6046143 0.14360671 -0.34391576 -1.3245219 0.67735076 0.024880048 -ATAGG 0.91444343 0.70211256 -0.013480036 0.18568902 -0.22994642 1.006915 -0.53092974 0.22745046 -0.36244628 -1.067665 0.7254547 -0.22762078 -AGCCC 0.068026766 1.0712054 0.035702486 -0.65250045 0.051378246 0.36567786 -0.9689598 -1.1270381 -0.08135751 0.04839227 0.055212844 -1.2147064 -CTTGG -0.17421392 1.3679484 -0.76815987 0.073568165 -0.08958586 -0.3528104 -0.4263333 -0.23098123 -0.025852336 -0.4449139 0.9778781 0.3575196 -TCTAC 1.2850552 0.8977882 0.5336265 -0.11180443 -0.06576953 -0.94957197 -0.9781058 0.2659614 -0.06404883 0.33570644 0.3709436 0.23694181 -ACGA 0.3349619 0.98312527 0.2860061 -0.13610831 -0.67071265 -0.097537294 -0.46719387 -0.69406223 -0.73753035 -0.6855303 -0.2783291 -0.18123075 -GCTGC -0.005983199 1.5959498 -0.3623582 0.348577 0.9084133 0.21612753 -0.6518029 -0.5687292 -0.23077811 0.073738985 1.0083102 -0.752008 -AAGGT 0.52363294 0.20907399 0.11804694 -0.14090519 -0.32975823 -0.11109303 -0.0037076024 -0.50672185 -0.32659674 -1.498145 1.0800396 -0.38701868 -CCCTG -0.21715453 1.5318971 -0.3750778 0.3505278 -0.08767489 -0.18414979 -1.2990606 -0.5939235 -0.005730245 0.30669156 0.048755087 -0.68111116 -CCGA -0.07770984 1.1539869 -0.000156084 -0.12516303 -0.41642922 0.3135564 -0.84991604 -0.7833844 -0.32478634 -0.063190535 -0.01267816 -0.4583694 -AGTGC 0.089626245 0.3885467 -0.34690407 0.1808104 0.6028048 -0.14610313 -0.37504697 -0.76409155 -0.64712286 -0.6804024 0.7473301 -1.0499339 -ACTAT 1.4059191 0.9191722 0.15067528 0.30382064 0.07107535 -0.46450743 -0.98721147 0.37616888 -0.27442417 -0.32551324 -0.24158445 0.48753604 -TCAAC 1.2205484 0.71433127 0.5869406 -0.5772588 -0.5676349 -0.83468956 -0.21600956 -0.49273494 -0.46399903 0.24178977 0.07981519 -0.2270925 -ACCCT 0.40877524 1.5053725 0.103460655 0.07044767 -0.20688058 -0.6007551 -1.2791929 -0.47729754 0.11353108 0.31572914 -0.48428544 -0.49051765 -GGTCT 0.10984922 0.7098698 0.18661691 -0.1366457 -0.5351389 -0.36767057 -0.90786606 0.093174234 0.16721292 -0.5566994 1.711002 0.030764332 -CTACT 0.7987762 1.0644457 0.5064113 -0.24946074 0.58441955 -0.91326314 -1.1950141 0.22972736 -0.17305413 -0.0849384 0.3253713 0.24529926 -GCCAA 0.5287098 0.5172558 -0.10116828 -0.049146093 -0.12276854 0.13499519 -0.32567546 -1.3895311 -0.032812063 -0.32627803 -0.12069141 -0.9740556 -ACCAA 1.0262254 0.7356225 0.5632357 -0.21143046 -0.6367947 -0.4751445 -0.551125 -1.0028509 -0.52672344 -0.3112923 -0.77697223 -0.9320329 -AGTAT 1.3538368 -0.08069521 -0.3337231 0.19192283 0.15397586 -0.098397635 -0.74151176 0.21287005 -0.23288769 -1.2546997 0.6895016 -0.15591304 -CCCAC 0.4981824 1.5415591 0.2739034 -0.049775347 -0.6790089 -0.5833747 -1.0025859 -0.66098493 -0.22015123 0.562111 -0.4675176 -1.2892811 -ACAGC 0.8639304 1.4675395 0.7141905 -0.31643286 0.31840193 -0.020128023 0.018262113 -0.63153213 -0.880371 -0.073676735 0.09536547 -1.141376 -TATAC 1.9624784 0.9134135 0.14724004 0.63833255 -0.09025959 -0.33618858 -0.6918782 0.57598585 -0.24539329 -0.21244302 -0.27807975 -0.019215362 -TTGGC 0.18536314 1.4861412 -0.98707646 0.3324468 0.11536022 -0.093141824 0.1109069 -0.48229396 0.08090438 -0.18029763 0.78242564 0.029228693 -AGGAT 0.49151024 0.66944075 -0.26877606 0.13852058 -0.7509066 1.0478148 -0.6427803 -0.31815335 -0.35302168 -1.0810676 0.42535308 0.04148679 -TCCCC 0.4604084 1.2092034 -0.45548594 -0.23082487 -0.38045228 -0.43396655 -1.2114557 -1.0126456 0.5655743 0.82176644 0.15436602 -0.547581 -GTTCC 0.37523282 0.44211888 -0.9842223 -0.19130936 -0.29538277 -0.63365674 -0.6888987 -0.753893 0.26913157 0.02188415 0.9597374 -0.44833657 -CGAC -0.0074263844 1.5204982 0.230097 -0.10887362 -0.43902707 -0.31954893 -0.7689926 -0.62379247 -0.4287875 0.24250405 0.007875744 -0.2017111 -GGCCA -0.026680015 1.3783168 -0.06754083 0.056678817 -0.43758383 0.5885741 -0.39584157 -0.7174604 -0.056118935 -0.25205624 0.40754414 -1.2875693 -GGGGT -0.123939656 1.0761688 -0.41238794 0.3499486 -0.7467352 -0.025157347 -0.2210391 -0.35247824 0.014380901 -1.0396389 1.6714444 -0.54173553 -GCAAG 0.45425713 0.7636349 0.36910796 -0.061204366 0.38941208 0.3131791 0.024215527 -1.1242552 -0.4738547 -0.7326539 0.56902915 -0.9775218 -CGTC 0.10890633 0.7409292 0.0036520953 -0.27123788 -0.31864876 -0.7080785 -0.9079207 -0.38895097 -0.031844635 0.23105152 0.89135283 -0.70366615 -GCTGT -0.0072993715 0.85238695 -0.50370485 0.73057866 0.58255494 -0.57965 -0.8001062 -0.14190197 -0.3188499 -0.24334267 1.1558361 -0.5941918 -GCTCT 0.09160461 1.3229922 -0.20474282 -0.24839343 0.58134854 -0.41634154 -1.088251 -0.40312767 0.0435962 0.1969756 1.265606 0.13530533 -AACCC 0.43416086 1.0772815 0.19054481 -0.08349883 -0.5560947 -0.25773942 -1.0110054 -1.1533719 -0.24581936 -0.39517093 -0.987819 -0.9893688 -ATAAG 1.4606724 0.19579685 0.24408282 0.022723114 0.102199525 0.61045843 -0.64071935 -0.31504446 -0.5137388 -1.3623972 0.14784914 -0.16068439 -CCGG -0.30685028 1.361589 -0.150146 -0.029188693 -0.5529232 0.23213607 -0.55128545 -0.58683574 0.103647985 -0.37047216 0.6023062 -0.840137 -TGGGC -0.04172911 1.3077861 -0.18535809 0.5290518 -0.2647475 0.54068667 -0.39709142 -0.18843423 0.0148095125 -0.50938165 0.98714805 -0.823856 -ATGCC 0.7445835 0.739543 -0.6113699 0.5569134 0.1167886 0.38156745 -0.8606512 -0.711247 0.33416483 0.11319817 0.0038289202 -1.1933057 -TTGTC 0.6432358 0.4503326 -0.88429886 0.36922973 -0.38942707 -1.2225304 -0.58263147 -0.48909476 0.0040118853 0.253887 1.1349787 0.053147603 -GTCAG 0.10705204 0.16161716 -0.14229481 -0.3604077 -0.6062843 -0.19103956 -0.49915156 -0.46042237 -0.58202296 -0.4059697 1.6446174 -0.9331619 -ACAAC 0.8926264 1.2412384 0.830104 -0.10572147 -0.33643252 -0.81253755 -0.18476233 -0.4805318 -0.77547884 -0.59529984 -0.57787967 -0.4234995 -TACCA 1.2203175 0.9412226 0.3537929 0.029795049 -0.102336906 -0.1319818 -0.6737379 -0.011670166 -0.14294268 -0.15467545 -0.5738469 -0.6743431 -GTCAT 1.0915176 0.054098517 -0.5035911 0.13703045 -0.77774745 -0.40493214 -0.5397688 0.0950592 -0.032871436 -0.05169636 1.0279428 -0.5911173 -TAAGT 1.081031 -0.17143255 -0.12289124 0.14749055 0.43682745 -0.57413846 -0.5968246 -0.3014116 -0.47178975 -1.5085776 0.8438116 -0.16856149 -CACCC 0.5611821 1.4830383 0.2196094 -0.31291246 -0.5910944 -0.63455033 -1.0897559 -0.5244248 -0.13630639 0.57846427 -0.37276146 -1.2177209 -GTCTG -0.21662262 0.43405733 -0.45005268 0.2885763 -0.1536338 -0.53386575 -1.1450086 -0.14495316 -0.15229592 -0.45908266 1.4699429 -0.35303003 -AAGTC 0.58188194 -0.11749769 0.108278036 -0.6321231 -0.40255123 -0.6637344 -0.56562924 -0.7863762 -0.21470626 -0.5733349 0.7870021 -0.6207221 -GCCAC 0.2050505 1.4541379 0.25328994 0.048900925 -0.07425218 -0.26424885 -0.5077419 -0.67662936 -0.301963 0.27766377 -0.052694656 -1.2116725 -GTTAA 1.204319 -0.18035458 -0.6341766 0.1807485 -0.029530495 -0.8235352 -0.4113126 -0.30473393 -0.42876604 -1.3966215 0.43709698 -0.08612424 -TAGCT 0.828417 0.9486031 -0.11067531 -0.25490597 1.1079369 0.1360837 -0.68257797 -0.1667186 -0.20046471 -0.524166 0.77017754 0.2064621 -ACCG -0.07299719 1.3227754 0.25167388 0.10636204 -0.56364024 -0.23995733 -0.614227 -0.51638776 -0.28336862 -0.23781174 -0.058331955 -0.72695535 -TACTA 1.5407181 0.84660363 0.52092755 -0.01711318 0.4752108 -0.7507066 -1.1442053 0.23813312 -0.18419184 -0.7143122 -0.25372592 0.4133759 -CAGTC 0.4183819 0.3258256 -0.028005604 -0.58865905 -0.4422809 -0.6023556 -0.7520107 -0.45604652 -0.47678697 0.28199807 1.0050298 -1.0072405 -GCCTT 0.16334517 1.2377164 -0.6929024 -0.25763455 0.5465445 -0.39949623 -0.63171303 -0.81779134 0.32122558 0.14682254 0.40048277 -0.2698225 -AAGGC 0.23044406 0.9503489 0.3975638 -0.58130836 0.009468803 0.49050733 -0.19379272 -0.8430048 -0.13390322 -0.98007244 0.5035532 -0.7156058 -TCCTA 1.0916436 0.6969931 -0.096066535 -0.086852275 0.28249243 -0.27519482 -1.4880769 -0.36697072 0.5121366 0.31165376 0.23291674 0.16848332 -GTGTC 0.16507173 0.18517974 -0.43711653 0.6051016 -0.44103765 -0.9402644 -0.87866503 -0.25864756 -0.1719164 -0.35430717 1.4976791 -0.70747226 -AAGCC 0.47486708 0.64031434 0.1167559 -0.69605255 0.093902476 0.3662747 -0.65889496 -1.4048458 -0.099900715 -0.6143755 -0.2437747 -0.97184867 -GACAC 0.38038787 1.4054192 0.58216655 0.100063294 -0.7529577 -0.3452986 -0.21876249 -0.3299497 -1.3837788 -0.3683384 -0.19589615 -0.2562375 -CGCC -0.0485349 1.6449134 -0.18716681 -0.061739232 -0.22426435 0.024063027 -1.0490621 -0.75050724 0.28296578 0.1605824 0.22289166 -1.0467185 -GCCCT -0.028354164 1.2768271 -0.4817156 0.07155084 0.4237239 -0.030361328 -1.2551308 -0.7995584 0.21538511 0.19969216 0.22387703 -0.61955595 -GGATG 0.3014383 0.8688636 -0.5715125 0.8585422 -0.92473936 0.82377946 -0.59654015 -0.38157806 -0.25912464 -0.87781185 0.72790885 -0.25428957 -CATCC 0.9325586 0.90772563 -0.09674655 -0.36022958 -0.61311907 -0.11689896 -0.99164075 -0.42842716 0.09121001 0.87743056 0.10205641 -0.7364281 -AGTAG 0.6262561 0.25920677 0.08642157 -0.23624988 0.4854796 0.21290717 -0.59936666 -0.20190458 -0.7829481 -1.4770739 0.8841306 -0.3427196 -GGCTC -0.19466662 1.5327092 0.00376087 -0.35623944 -0.12431334 0.048540574 -0.64984035 -0.31761256 0.05255485 0.07143077 1.393209 -0.56112254 -GGGCA 0.027693452 1.4224867 0.14315903 0.14287354 -0.30304232 0.4692062 -0.037140172 -0.41969922 -0.41296476 -0.6517182 0.9311197 -1.1728361 -GCCCA 0.16328847 1.1107891 0.061558135 -0.24808525 -0.13350697 0.35244584 -0.68889385 -1.2827337 -0.107574336 -0.022706345 0.04253031 -1.3327144 -TTATC 1.7047836 0.35772845 -0.5989312 -0.3459637 -0.31433666 -0.4903068 -1.0308017 0.0152452085 0.30331358 0.03590751 0.51618725 0.45196187 -GGGTT 0.052780803 0.8840552 -0.81240696 0.04220024 -0.5672047 -0.31059027 0.029762147 -0.389792 -0.03640556 -0.9115155 1.6220033 -0.05770382 -ACCTC 0.35978878 1.1593417 0.4462326 -0.36365148 -0.3264702 -0.6818883 -1.0530664 -0.5047478 -0.2036084 0.5014379 -0.04793917 -0.35601622 -GGATA 0.9068693 0.7484064 -0.042372808 0.494965 -0.47729933 1.0140858 -0.6017563 0.042630196 -0.2602131 -0.93864936 0.6034561 0.21371776 -TGACC -0.049588624 1.1638634 -0.29519498 0.55632854 -0.6341194 -0.43548882 -0.9639317 -0.64210296 -0.48282468 0.28786322 -0.27110174 -0.2322434 -CCGC -0.07808222 1.6738191 -0.13633019 -0.04922902 -0.017251285 -0.04675466 -0.9836953 -0.77691436 0.25552857 0.13829161 0.100569986 -0.97721124 -TATCC 1.2998455 0.6361404 -0.3197342 -0.06881786 -0.40348566 -0.033294387 -1.2350937 -0.18601266 0.37958908 0.44576555 -0.01875685 -0.007415549 -TGGTC 0.11257515 0.6735497 -0.49445754 0.30903244 -0.7101759 -0.38000935 -0.6129044 -0.083655804 0.18504696 -0.30274597 1.4157331 -0.32421827 -GTGAC -0.08051686 0.8901295 -0.11653274 0.891211 -0.62274677 -0.46169242 -0.3930255 -0.35952586 -1.1403022 -0.3933373 0.3225262 -0.3250791 -TTAAC 1.4471015 0.7615364 -0.15907788 -0.1770942 0.0020235104 -1.2955215 -0.30465987 -0.09617049 -0.37808162 -0.60453933 -0.40942577 0.19339018 -AGCG -0.01755416 0.9020694 0.12521373 -0.13792185 0.10344333 0.22373223 -0.35680375 -0.564985 -0.40430298 -0.4595718 0.7331522 -0.6905586 -AGCTA 0.74925345 0.9996437 0.4649804 -0.34222567 0.9589926 0.39582682 -0.9372914 -0.34638652 -0.23274882 -0.6511488 0.05896432 -0.24806914 -GACCC -0.09193551 1.3947517 0.10322261 0.035489965 -0.7522894 0.0001963746 -1.1486372 -0.80116224 -0.3079145 0.07479232 -0.50435793 -0.6303175 -AGACC 0.094190516 1.097919 0.28317574 -0.17712864 -0.54881835 0.25855148 -0.90403134 -0.7188533 -0.7265606 -0.31004575 -0.42471117 -0.37931934 -TAGTG 0.57332236 0.1612666 -0.29541633 0.52291316 0.39196587 -0.031553697 -0.5975086 -0.11900505 -0.33765867 -0.9986476 1.0336821 -0.35276443 -GATAG 1.0596638 0.6774604 0.1248992 -0.037783403 0.036631707 1.0515059 -0.71563804 -0.19084741 -0.94927573 -0.99439085 0.3953312 0.21631832 -CTAAG 0.6110996 0.3871562 0.42999637 -0.38516578 0.52378815 -0.2170165 -0.82369816 -0.34076962 -0.15961112 -0.9514809 0.54594016 0.043803737 -CAGAC 0.4587007 1.184988 0.6418123 -0.42818084 -0.5488766 -0.11463006 -0.4359213 -0.4500412 -1.3581908 0.00659837 0.019929687 -0.44206905 -GACCA 0.3497215 1.0059797 0.2573368 0.11699781 -0.7684174 0.07675703 -0.68273056 -0.50314075 -0.7151099 -0.20436221 -0.4363278 -0.7357486 -GCTTG -0.050678845 1.2246763 -0.8595788 0.37932202 0.6366167 -0.34868002 -0.33609447 -0.6427412 -0.3165539 -0.26824895 0.75966936 0.1980333 -TAGAC 0.78078175 0.95821124 0.51295775 -0.041602973 0.012944814 0.10618093 -0.6799855 -0.028004484 -0.8064813 -0.43276218 -0.057538535 0.40457478 -GTTGG 0.17305139 0.6040117 -0.89368737 0.5612642 -0.30322847 -0.48142332 -0.05219999 -0.28146046 -0.34919465 -1.0634797 1.5460944 -0.20403028 -GAACC -0.00075487525 1.1465942 -0.108629614 -0.026437663 -0.6189592 -0.11876433 -0.67755777 -0.73640555 -0.42696565 -0.64210105 -0.6804921 -0.3554779 -TAGGA 0.76668733 0.80999565 0.05314614 0.076609015 -0.39062366 0.7093836 -0.37134346 -0.079247914 -0.5037156 -1.3385649 0.5584425 0.31498125 -AGATC 0.52333015 0.4408071 0.087428294 -0.56497806 -0.64766085 0.70211846 -1.0234784 -0.6196361 -0.65366143 0.083818555 0.53237385 0.3709466 -TTGAC 0.3047844 1.0691491 -0.6027609 0.36755648 -0.3462503 -0.7340763 -0.33052912 -0.49940425 -0.9030058 -0.058119744 0.04830478 0.5851565 -ACTAG 0.6005812 0.84774965 0.714485 -0.20438099 0.41619036 -0.16380844 -0.9179676 -0.08588793 -0.52576524 -0.9387794 -0.03237161 0.09389347 -TCGG -0.017995961 1.1122898 0.037957273 -0.031945903 -0.4368562 0.21094581 -0.5481701 -0.32231334 0.05106483 -0.28841633 0.83364904 -0.21125124 -GCGA -0.15935577 1.2430933 -0.06672146 0.08986671 -0.074721955 0.24497528 -0.48186734 -0.6144564 -0.48067772 -0.24504359 0.3145674 -0.27928138 -GATCA 0.72290474 0.57215405 0.05768126 -0.3265059 -1.0568181 0.49673477 -0.5176877 -0.22633395 -0.75711006 0.089993395 0.57697403 -0.008811455 -CATAC 1.5252254 0.9929271 0.31925637 0.1265686 -0.30983394 -0.36537224 -0.48751926 0.41793373 -0.60569245 0.16744772 -0.19113134 -0.38994318 -GCCAG -0.037569944 0.9696795 0.21324725 -0.101031974 -0.03985797 0.38742554 -0.6003545 -1.1267594 -0.4752358 -0.22159918 0.5046078 -1.3942538 -GGCTT 0.16004454 1.4174359 -0.6683008 -0.25758398 0.4887068 -0.17173281 -0.15774591 -0.25164145 0.02765966 -0.35547715 1.0833213 0.23320049 -TACCT 1.1491829 1.1500132 -0.1778239 0.115824364 0.23457912 -0.74473345 -1.0741912 0.15199183 0.1864686 0.06947958 -0.5161009 0.03584499 -TACTG 0.5230958 1.091774 0.028523961 0.72306 0.30689687 -0.49656227 -0.81289196 0.47738168 -0.43900496 -0.47700992 0.16750993 0.029803695 -GTTAT 1.4737948 0.20147477 -0.86712235 0.34453338 0.012010005 -0.42409864 -0.6690808 0.4075097 -0.1279294 -0.7657268 0.7542473 0.10792502 -GCATA 1.4119425 0.7399882 0.064190015 0.48321202 0.3226025 0.70472205 -0.14934422 -0.17044014 -0.27733642 -0.281607 0.2629541 -0.654385 -AGGTA 0.7454411 0.29055026 0.18893561 0.02349732 0.11367841 0.2025168 -0.5805486 0.065898605 -0.3354493 -1.3724803 0.8507788 -0.57712877 -TGTAC 0.9731478 0.6839304 -0.072233625 1.0339955 0.087211534 -0.93881667 -0.56900257 0.5471337 -0.48354167 -0.6037836 0.3169485 -0.47371918 -GTATA 1.6326604 0.028103443 -0.31614694 0.74858373 -0.025756339 0.067165025 -0.83601993 0.3503407 -0.24216895 -0.9804579 0.6373332 -0.18195051 -CAACC 0.64633447 1.01613 0.49301264 -0.38691944 -0.53444076 -0.496169 -0.7623113 -0.7858153 -0.36155695 0.116802864 -0.61740655 -1.0266271 -GGGAT 0.43379578 0.905991 -0.4039244 0.42071992 -0.7939489 0.7641882 -0.38552955 -0.175132 -0.042859994 -0.79022247 0.73334104 0.09182612 -TTAGG 0.74241036 0.6568012 -0.5420015 -0.2638838 0.11602373 0.03610576 -0.1634482 0.13980842 -0.12513404 -1.2089242 0.9226085 0.47475776 -TCGT 0.36685878 0.5533999 -0.44275227 -0.012192241 -0.20758307 -0.6604694 -0.6800992 -0.23144001 0.07048609 0.058428284 1.0389785 -0.2684218 -TTAGC 1.0137914 0.723161 -0.55045605 -0.3277571 1.113802 -0.06567937 -0.2984643 -0.38948986 -0.15596718 -0.53220767 0.38143435 -0.0028562467 -CTATA 1.6036808 0.57745826 0.060173266 0.17538299 0.41024122 -0.17705365 -1.3335745 0.3670905 -0.07503592 -0.31123078 -0.10055797 0.2144059 -TAAGG 0.9024076 0.40405068 0.20044126 -0.06846089 -0.21970436 0.30018657 -0.4005713 -0.2233661 -0.09846756 -1.4732316 0.6168089 0.061918624 -GTCTA 0.7052221 0.30192992 0.13170661 0.11299436 0.09589244 -0.6371577 -1.2871336 0.12337646 0.24922979 -0.45632285 1.0407357 0.17325146 -GATCC 0.2736147 0.7515687 -0.371567 -0.026429148 -0.84602404 0.56007546 -1.1015024 -0.63936335 -0.05093739 0.2401961 0.24470542 0.027328357 -TGCTA 0.795132 0.84672165 -0.4088798 0.4448813 0.98440295 -0.06821492 -0.7621501 -0.054707363 0.019590028 -0.2514133 0.4699743 0.05332473 -GTACA 1.0893847 0.57911605 0.3908358 0.6841933 -0.20453067 -0.46319497 -0.07398234 0.4540846 -0.7949419 -0.7011317 0.5037566 -0.73211116 -GACCT -0.18075305 1.2320225 -0.09744 0.06806446 -0.2365223 -0.24391949 -1.0092943 -0.34743965 -0.3434643 -0.056536146 -0.089071 -0.1137206 -GCGT -0.0107808905 0.8090131 -0.1981749 0.22069913 0.08964951 -0.09695939 -0.44341952 -0.34162408 -0.19293623 -0.2923369 0.9646127 -0.7852134 -TTGCC 0.3115155 1.0778795 -1.1394994 0.4038368 0.28443518 -0.5132256 -0.4718551 -0.7446896 0.15928006 0.32744062 0.3045478 -0.5011342 -GGTTC 0.042388268 0.6419607 -0.45998523 -0.36513773 -0.37693703 -0.4482344 -0.33622727 -0.3004795 0.13042949 -0.30198434 1.5322413 -0.39490074 -TATAG 1.5104394 0.37826735 -0.39894247 0.2811946 0.30585644 0.5187624 -0.7846697 0.17887777 -0.39209813 -1.0463817 0.539785 0.3763119 -CAGTA 1.0103363 0.0593147 0.235396 -0.006932683 0.20653273 -0.26413137 -0.45537066 0.09487792 -0.80320036 -0.59040236 0.57391 -0.959893 -GGGCT -0.30369297 1.7302653 -0.06730487 -0.13938743 -0.064259425 0.35690647 -0.48954347 -0.24610476 0.046956357 -0.5030135 1.2927015 -0.26822713 -CGGC -0.126144 1.5836447 0.044724014 -0.029963845 -0.062223807 0.2792101 -0.49070007 -0.48621303 5.235053e-05 -0.14569168 0.68002725 -0.85222995 -GGATC 0.3360864 0.7073001 -0.16186014 0.042459518 -0.9949873 0.64005435 -0.84005576 -0.24728891 0.00944041 -0.21175665 0.96866184 0.11037537 -GTGGT 0.20876144 0.60571957 -0.6849223 1.0439944 -0.36587894 -0.375071 -0.5245712 -0.014860748 -0.22652978 -1.073331 1.4148846 -0.6799149 -CCCCC 0.29554686 1.4243042 -0.18875147 -0.23867454 -0.40436432 -0.35802963 -1.2598313 -1.0487484 0.21983716 0.513619 -0.30920413 -1.0329083 -CTTAG 0.5422871 0.8614334 -0.34062386 -0.62251645 0.69854814 -0.30740064 -0.63390154 -0.029375052 -0.21172446 -0.49381343 0.36306018 0.28371772 -AGGGT 0.012537196 0.7787194 -0.14954856 0.053841293 -0.5285405 0.16926226 -0.1306176 -0.3760168 -0.2956458 -1.3703395 1.236844 -0.56399584 -GTCAC 0.32031226 0.61828434 0.07678686 0.296306 -0.75742793 -1.0246444 -0.42463887 0.11960116 -0.56998706 0.069565564 0.89397883 -0.97620815 -ATACC 1.2104425 0.8457985 0.092767365 0.25603625 -0.3004846 -0.038490117 -1.0876067 -0.031615727 -0.0850742 0.028025 -0.6693496 -0.49478018 -GCCAT 0.80970335 0.9009317 -0.6187137 0.42663646 -0.17593372 0.33552837 -0.58284354 -0.5557119 0.20014068 0.36088845 0.0412828 -0.8564476 -GCAAC 0.50753176 1.2949493 0.5380759 0.013630348 0.11408601 -0.50141144 -0.07256571 -0.6602177 -0.5327874 -0.29667455 -0.233528 -0.84040225 -ATGAC 0.6877864 0.9150968 -0.10356648 0.6087179 -0.7407066 -0.15263502 -0.707011 -0.20039748 -0.77510667 -0.16076775 -0.48412144 0.06310425 -ACGC 0.10658698 1.3853655 0.29253373 -0.08370545 -0.15186654 -0.102098845 -0.4130914 -0.4603193 -0.4602491 0.10145648 0.05906898 -0.86292124 -GCGG -0.15926938 1.4144114 -0.11508377 0.26375282 -0.19540368 0.4017582 -0.2829009 -0.5828886 -0.04882316 -0.6155763 0.87525004 -0.8304515 -CTATC 1.1728209 0.6829988 0.061996844 -0.30643675 -0.02350476 -0.27875572 -1.5570831 0.06019606 0.32345188 0.37508157 0.3341054 0.13987973 -GATCT 0.53882456 0.60645676 -0.18560556 -0.11558351 -0.5375962 0.21411037 -1.190984 -0.23334455 -0.15927036 0.15921405 0.8050997 0.7935916 -AGGGC -0.15908584 1.3653283 -0.029583704 -0.26408496 -0.088418104 0.5539255 -0.2606464 -0.4978372 -0.3532069 -0.6623605 0.9024997 -0.76730305 -CCTTA 0.9106829 1.0469525 -0.42690963 -0.47276822 0.34376246 -0.5196062 -1.0216571 0.018313168 0.37775835 -0.13529786 -0.27521333 0.023090728 -GTAGT 0.70055014 0.058956835 -0.43398523 0.3980934 0.3202466 -0.24524544 -0.59416914 -0.0014417336 -0.340357 -1.0593649 1.2239442 -0.44729194 -CCAAC 0.68432474 1.2437824 0.42024827 -0.34937787 -0.4699539 -0.6129155 -0.644875 -0.6835193 -0.10090638 0.0196896 -0.6019389 -0.9613783 -TGCCC 0.07308678 1.4629638 -0.75557715 0.3605979 0.18550445 -0.12255193 -1.0442524 -0.7887745 0.30906403 0.44618112 0.3210463 -0.93296874 -GCTAT 1.062625 0.90431404 -0.32659298 0.38969636 0.8150458 0.18155874 -0.79293066 0.106753044 0.23751 -0.3048386 0.50659585 0.096073106 -CCTAA 1.044769 0.4658077 0.11660557 -0.28136632 0.19598055 -0.36502978 -1.2965003 -0.5503447 0.44579354 -0.33203506 -0.3812996 -0.23060541 -CCCCT 0.1328326 1.3898025 -0.4008697 -0.21694955 -0.05260761 -0.31544352 -1.3370742 -0.8331707 0.4180191 0.53330964 0.081769936 -0.6488096 -GGGAC -0.26700622 1.5678757 0.3553567 0.21839234 -0.7607629 0.11210967 -0.36199582 -0.17110486 -0.5663749 -0.7797549 0.58198637 -0.1906355 -TAGTC 0.88224185 0.083070666 0.004973998 -0.27364916 0.081388995 -0.35359293 -0.8094836 -0.039738607 0.032462306 -0.358591 0.8671217 -0.429923 -GAGTA 0.688793 0.17863481 -0.03805829 0.2137351 -0.0021773784 0.29599735 -0.5671651 -0.14909476 -0.86477405 -1.3806328 0.7927012 -0.16221167 -GACTA 0.59851295 0.86894983 0.49340037 -0.07945895 -0.08218628 -0.09656 -0.85855246 -0.09266873 -0.60486895 -0.89992577 0.027942112 0.44080594 -GTGCC -0.06942545 0.91012317 -0.6545918 0.62892455 0.14691332 -0.32151088 -0.8153911 -0.5994958 0.00925058 -0.048892286 0.6764282 -1.1404271 -GTATG 0.9041428 0.2191152 -0.6870188 0.92175996 -0.13189727 0.0988189 -0.72085965 0.1337692 -0.1339869 -0.9431929 0.7330653 -0.3533807 -CAAGC 0.68630916 0.8933349 0.44926926 -0.7181856 0.18178608 0.09565693 -0.32909334 -0.92789096 -0.64250416 -0.1260813 0.026927512 -1.0123113 -CTAGT 0.54850835 0.36699128 -0.149904 -0.1835484 0.6414562 -0.4091823 -0.82971954 -0.0042815297 -0.028893316 -0.56949383 0.8821833 -0.30366117 -TACTC 0.91211635 0.97876203 0.37608254 -0.40078217 0.14828981 -0.79330593 -1.0118281 0.18864653 -0.13881285 0.15930927 0.31373286 0.1561977 -GATAC 0.9993482 0.9050319 0.31201398 0.2518285 -0.37794828 0.40494415 -0.72897816 0.015189533 -0.62359864 -0.3404072 -0.2046735 0.27512857 -GTTGT 0.57277596 0.27706763 -1.0170538 0.76822203 0.13766016 -0.90319055 -0.3455022 -0.23852465 -0.37517968 -0.7651193 1.2477342 -0.29323342 -CCTAG 0.27555892 0.8768625 0.07259271 -0.29053208 0.40104833 0.38001993 -1.2493439 -0.2628893 0.14184657 -0.35694712 0.29166305 -0.49663538 -CGCA 0.4226558 0.98886424 0.028267534 0.033143446 -0.07735699 0.16916624 -0.088264726 -0.5042351 -0.51062304 -0.041464046 0.32657278 -0.8707887 -ACTCG 0.14126953 1.274143 0.23248075 -0.0805559 -0.6389474 -0.08942545 -0.96509314 -0.55573016 -0.5160393 -0.4102234 0.33908534 0.09209346 -TGCG -0.012672903 1.0527102 -0.46942315 0.53187585 0.17460826 -0.010615041 -0.41167203 -0.2670032 -0.2665143 -0.10593525 0.7629214 -0.60885334 -CCTAT 0.83870184 0.8673139 -0.39297694 0.20160368 0.23876074 -0.070089296 -1.1819733 0.005129939 0.42539927 -0.026401674 -0.04254433 -0.11703354 -GGGGG -0.18769817 1.4319478 -0.16943385 0.19230716 -0.7022285 0.3399529 -0.2879877 -0.47305346 -0.31425312 -1.2127771 1.408763 -0.5269025 -CACTA 1.1046301 0.83387834 0.5545777 -0.181824 0.08145753 -0.57002705 -0.79730004 0.20190895 -0.32891983 -0.09809885 -0.22803031 -0.28883356 -GACG -0.09879821 1.2258575 0.13751464 0.07650093 -0.43936506 0.034739804 -0.35858637 -0.40546048 -0.48579827 -0.4717495 0.37893912 -0.31774876 -GGTAA 0.86002856 0.19946593 0.04346441 0.41886786 -0.25404304 0.023066333 -0.3444819 -0.036309227 -0.23466222 -1.6535656 0.6917023 -0.44255978 -TATGC 1.1942612 0.67821234 -0.49930274 0.7196028 0.36980996 0.29792324 -0.62967694 -0.02003228 -0.04272096 -0.08032036 0.14171334 -0.551898 -GGTAG 0.33528697 0.64049727 -0.15126447 0.25304875 0.089625224 0.40634578 -0.49523476 0.02719057 -0.20520607 -1.3670335 1.2248696 -0.3039766 -GCTAA 0.8747223 0.6071575 0.36026362 -0.13378254 0.71586204 0.009817984 -0.72548795 -0.43122315 -0.031241704 -0.70641476 0.095437594 -0.025912287 -GCATC 0.74238086 0.86060077 0.045527138 0.028275663 -0.24786489 0.3324946 -0.56566644 -0.4186409 -0.0077580283 0.472313 0.6381975 -0.5658862 -GTCAA 0.65650535 -0.11177046 0.06327056 -0.4301487 -0.72643954 -0.7093696 -0.4023398 -0.66157913 -0.27568167 -0.49188703 0.778148 -0.740305 -GGTCA 0.29040134 0.5038381 -0.009586123 -0.30126482 -0.8048952 -0.28404135 -0.156866 -0.21199717 -0.35762838 -0.43843743 1.4596684 -0.7190286 -GCCTA 0.40388265 0.8845152 0.03062896 0.041711815 0.5668292 0.17424737 -1.0206547 -0.31276163 0.303273 -0.21957958 0.18685706 -0.44238868 -GTTAC 1.0004714 0.6610868 -0.3624956 0.34985057 0.13386373 -1.0587076 -0.3491087 0.40967315 -0.4056331 -0.52892905 0.39531365 -0.13496214 -GTAAC 1.0594449 0.3166426 0.26741233 0.2336892 0.18651508 -0.7060383 -0.526823 0.00029400951 -0.689256 -1.0175596 0.09079004 -0.49355605 -GATGC 0.3139091 0.9211395 -0.51648444 0.5026795 0.17578709 0.76311374 -0.67599344 -0.5436309 -0.346864 -0.09541831 0.42449754 -0.3942588 -TAGGC 0.49575895 0.84558487 0.1523449 -0.002480785 0.27537984 0.48273098 -0.3993223 -0.11062768 -0.15809356 -0.5576769 0.6039759 -0.40018317 -ACCTA 0.8730156 0.93749815 0.45589718 -0.022409229 0.20966893 -0.29758248 -1.0752423 -0.17559339 -0.046631895 -0.28836727 -0.52391493 -0.23800917 -GCGC 0.010462266 1.2649106 -0.18195863 0.0058193156 0.18131633 0.057032634 -0.41918617 -0.5455449 -0.041870065 -0.045178726 0.51565176 -0.7955666 -TGATC 0.5461614 0.46033296 -0.6076023 0.25802925 -0.57816535 0.09194742 -1.0603722 -0.42026398 -0.1590783 0.28896925 0.5254722 0.26560667 -TAGGT 0.8364981 0.39783958 -0.29151857 0.25479117 -0.16399257 0.13040832 -0.3399885 0.07020979 -0.027711779 -0.89513874 1.121472 -0.05433838 -CTTAC 1.020431 1.2440525 -0.018119983 -0.20965043 0.24343082 -1.0849755 -0.7459682 0.31072766 -0.31094524 0.024444634 -0.15889953 0.09096418 -CGATT 0.9096232 0.8161738 -0.74969244 -0.21732874 -0.48333392 -0.19643825 -0.7209543 -0.6954329 -0.019081818 0.15880427 0.5161336 0.26039 -TCGAT 0.83803916 0.8529641 -0.6149795 -0.1501121 -0.4897315 -0.06505232 -0.74185944 -0.5625836 0.026591545 0.3489718 0.52746886 0.18023238 -GTAGG 0.3492093 0.540323 0.046436973 0.22536714 -0.114146724 0.34765425 -0.47869563 -0.04726515 -0.26547214 -1.3526853 1.1200832 -0.40186113 -TAAGC 1.0092486 0.64590496 0.17440352 -0.43003494 0.7208475 0.27527085 -0.5066821 -0.5589759 -0.13557482 -0.66351295 0.13595738 -0.2782534 -GGCAC 0.13649122 1.5387238 0.2929834 0.14949024 -0.119971775 -0.1359269 0.049915593 -0.1266411 -0.5122098 -0.33186966 0.48393703 -0.9842688 -AGGTC 0.103427455 0.57090455 0.1422968 -0.40290684 -0.48308283 -0.013001164 -0.5319906 -0.18748747 -0.14151335 -0.5859242 1.0958449 -0.3648886 -GGCTA 0.41942042 1.2330965 0.23831064 0.27050632 0.42231438 0.26101577 -0.60698414 0.08398811 0.09421146 -0.5472593 0.61808753 -0.1398289 -GGGGC -0.21518677 1.5396835 -0.089356005 0.20513645 -0.36656952 0.37834612 -0.27675748 -0.42298606 -0.12509863 -0.69507015 1.2028924 -0.70620584 -ACTAC 0.93739516 1.2211154 0.7589893 0.060118504 0.11567583 -0.73566425 -0.8133043 0.13017078 -0.4627641 -0.27772215 -0.29892078 0.03512381 -GTAAG 0.7632816 0.054472554 0.019333228 0.19881605 0.026451163 -0.07484319 -0.52819604 -0.329649 -0.39311022 -1.3805922 0.74431896 -0.21155557 -GCTTA 0.8135513 0.9897191 -0.4919023 0.05987956 0.69268364 -0.27734596 -0.40536883 -0.0013101192 0.023574349 -0.55959135 0.31462994 0.11281406 -GGTAT 1.0542983 0.34773642 -0.55510956 0.61307114 -0.32322702 0.12887001 -0.65130544 0.3876249 0.18803369 -0.91921306 0.89264834 -0.1223802 -ATAGC 1.1444645 0.59545815 -0.046008594 -0.13436462 0.46205357 0.7380048 -0.7010482 -0.26965436 -0.3457817 -0.45940125 0.1609967 -0.40295702 -GTAGC 0.40091372 0.64926404 -0.14082272 0.20675808 0.755285 0.24402873 -0.6571141 -0.19813399 -0.19836232 -0.66532296 0.8399946 -0.64876735 -GTCCC 0.07912737 0.7593852 -0.3521624 0.08330962 -0.55534446 -0.404417 -1.1266679 -0.63873 0.4146455 0.1494382 0.47900382 -0.8942763 -CTAAC 0.903847 0.9416458 0.49439293 -0.20123416 0.24844322 -0.83844787 -0.80580133 -0.07235298 -0.33576015 -0.32449397 -0.3406293 -0.14985351 -TAGGG 0.39416102 0.83917886 0.13233957 0.121874996 -0.25044516 0.333117 -0.23117958 -0.08167339 -0.06900123 -1.2110654 1.0913628 -0.104350984 -CTACC 0.8895147 1.0507983 0.16781528 -0.072286166 0.2020098 -0.54355884 -1.2823001 -0.08800897 0.19189833 0.25297835 -0.27615383 -0.42351472 -CTAGG 0.268271 0.82693243 0.21443646 -0.23371132 0.20179968 0.22375643 -0.7532944 0.031980325 -0.03728907 -0.6968872 0.6941918 -0.09750411 -GGACC -0.12837471 1.2670959 0.16231407 0.18611425 -0.7370306 0.20160025 -0.68161815 -0.4170165 -0.33860898 -0.2773663 0.09357287 -0.57560855 -GGGCC -0.28869885 1.6353495 0.0042024357 0.03114386 -0.34493384 0.4298926 -0.54926366 -0.61728394 0.014496594 -0.35485128 0.73261434 -1.0583565 -TCGC 0.2425724 1.0364976 -0.17978688 -0.10297659 0.0955845 -0.03084469 -0.58368284 -0.43711758 0.01797484 0.18684238 0.5748702 -0.40440744 -GTTGC 0.2777823 0.68758035 -0.9061888 0.43470287 0.5188644 -0.38955984 -0.24483106 -0.47899765 -0.32130647 -0.22325218 1.0781399 -0.56310993 -AAACG 0.3958219 0.7520728 0.33364844 -0.097253196 -0.6094791 -0.11681387 -0.4141505 -0.6961431 -0.49217546 -1.0141466 -0.079227366 -0.3113303 -CCTAC 0.7336398 1.2706084 0.22620039 -0.036059078 0.20118381 -0.41277266 -1.0830414 -0.032105763 0.1857615 0.25107086 -0.21354519 -0.55790156 -GCACC 0.2127362 1.4101659 0.27689874 0.039141428 -0.06726149 -0.21030302 -0.5554322 -0.5157973 -0.24116057 0.11871859 0.008127748 -1.2169647 -GGGTC -0.19484481 0.9244795 -0.33765393 0.034272905 -0.6904056 -0.25362238 -0.5262447 -0.21893258 0.065350786 -0.4135242 1.457102 -0.44585302 -ACGGA 0.18290626 0.9453782 0.06570417 -0.03581645 -0.59119606 0.15133518 -0.39122 -0.50729525 -0.5639499 -0.7665928 0.1600489 -0.31685495 -CGGT 0.029611824 0.88539726 -0.3241606 0.28048104 -0.20139116 -0.14277051 -0.36715835 -0.19597407 -0.07111741 -0.38502073 0.9067678 -0.5909115 -TTACC 0.99831784 0.95563644 -0.34927905 0.016154565 0.024085363 -0.81413496 -0.75689745 0.0050527616 0.07417733 0.1032945 -0.3007445 -0.18637918 -GGTTG -0.0030703887 0.7058906 -0.78569245 0.40453032 -0.082687296 -0.18577273 -0.16143431 -0.39933744 -0.39169014 -0.8721938 1.3862647 -0.21747315 -CGCG -0.120090656 1.3865792 -0.08439416 0.15706204 -0.24704123 0.10401774 -0.5353447 -0.4300834 -0.0681986 -0.22460154 0.5576241 -0.77816707 -GGCCC -0.13910337 1.4135159 -0.19157393 0.07747773 -0.34699586 0.20415749 -0.8477058 -0.6746729 0.13517056 0.020584041 0.37656748 -0.9700937 -GGTGC -0.08289015 1.0664756 -0.34585586 0.53938824 -0.09038213 0.18830398 -0.30876604 -0.4020152 -0.15267539 -0.6008058 1.0538938 -0.96602225 -TAGCC 0.53546745 0.9706745 -0.18043388 -0.033118274 0.43301982 0.35236275 -0.8162604 -0.31909412 0.22735819 -0.13285698 0.08778694 -0.525195 -TCACG 0.34389415 1.0393319 0.2545091 -0.015324567 -0.36667475 -0.40828273 -0.38687018 -0.21183632 -0.37003124 0.22372028 0.7107754 -0.460729 -GTTAG 0.68983805 0.2383224 -0.5850049 0.0031137448 0.3682163 -0.30294836 -0.41285428 -0.16493636 -0.35337368 -1.0621717 0.8424043 -0.15534177 -CGGAA 0.29870617 0.7846592 0.0030030352 0.022423137 -0.6753961 0.121672936 -0.44537824 -0.7414787 -0.3137332 -0.87806666 0.15002513 -0.3076389 -AACGG 0.22361958 0.9606868 0.14354092 -0.011868511 -0.58863336 0.035243217 -0.38661316 -0.49562758 -0.48849598 -0.8407934 0.14190938 -0.2728082 -GCCCC -0.07988319 1.4706142 -0.13567832 0.0981281 -0.12902912 0.14198856 -1.1482011 -0.89511436 0.20581287 0.26696938 0.039426014 -1.1492351 -TCGAG 0.3865939 0.56679434 -0.305758 -0.41503063 -0.35128888 0.029460358 -0.6950563 -0.6450556 -0.41596362 -0.011658062 0.6295272 -0.10367529 -GGTCC -0.13363557 0.89798045 -0.4962171 0.08491897 -0.4715889 -0.34817523 -0.7153877 -0.4261458 0.24635293 -0.078486994 1.0241759 -0.54853 -GAACG 0.23438318 0.9190483 0.113985054 -0.043009084 -0.52500814 0.12033372 -0.36506715 -0.62425566 -0.5667687 -0.8491545 0.058611367 -0.2238268 -TAACC 1.1800476 0.72401994 0.2242581 -0.0008925176 -0.12501371 -0.423831 -0.87369263 -0.29835293 -0.010837563 -0.37526488 -0.774206 -0.3825703 -AGTAC 0.7809462 0.41181067 0.3122642 0.09209472 0.08586088 -0.4480971 -0.45754 0.115727924 -0.5317402 -0.79732645 0.26190773 -0.4908088 -CCCTA 0.74029356 1.039398 0.115360446 -0.12543422 0.24212858 -0.19493152 -1.1272544 -0.45428276 0.41063473 0.072475314 -0.30766463 -0.36266732 -GGGTA 0.46724948 0.64342993 -0.06773329 0.5239515 -0.38431093 0.22773074 -0.37852672 0.13574834 -0.117708035 -1.2401901 1.0411265 -0.38250983 -GTATC 0.89438266 0.20322788 -0.25105873 0.38710168 -0.3343605 -0.06393068 -0.9564586 0.18418884 -0.039474197 -0.20454799 0.69621 -0.20962209 -TACCC 0.94486344 0.9778786 0.1022267 0.25655627 -0.20910086 -0.3207854 -1.0784467 -0.16881382 0.1650614 0.09554679 -0.47902063 -0.52857596 -CGAAA 0.4555249 0.6057529 0.19324036 -0.31369078 -0.52708703 0.043598954 -0.5486095 -0.8183925 -0.33264893 -0.69895816 -0.0325264 -0.27916285 -CTAGC 0.5617446 0.91849065 0.14254306 -0.4093497 0.8419071 0.050564967 -0.8731751 -0.28892788 -0.07613762 -0.16051143 0.28774607 -0.37023592 -GGTTA 0.7320432 0.52807057 -0.5182836 0.1083341 -0.0636372 -0.29818135 -0.26304707 0.2159096 -0.13552903 -0.9849167 0.81559795 0.036998257 -GTACT 0.6476837 0.65500927 0.0037627253 0.38930228 0.06455123 -0.73051697 -0.6773097 0.23497528 -0.2526001 -0.4037939 0.42557046 -0.16762798 -TACG 0.70711166 0.6748418 0.057123005 0.32454854 -0.15203322 -0.18872395 -0.4056012 -0.052015096 -0.2738119 -0.35933274 0.15750603 -0.1225925 -GTCG 0.1263909 0.68832546 -0.232377 0.0066187843 -0.38336962 -0.020210454 -0.59409446 -0.41655245 -0.16390976 -0.39964825 0.7731964 -0.3885041 -CACGT 0.3373553 0.92227125 0.028282693 0.16448343 -0.17718033 -0.5849063 -0.3453658 -0.12329522 -0.44927275 -0.031341325 0.43529242 -0.7862032 -CCCCG 0.014376082 1.3506174 -0.24586335 -0.113504544 -0.36791134 -0.12710623 -1.0346653 -0.78671205 0.12380496 0.29574937 0.11814047 -0.876499 -CGAGT 0.31946838 0.47634476 -0.28887472 -0.20834161 -0.29406124 -0.098066196 -0.7237202 -0.5640505 -0.32634372 -0.2618302 0.7515906 -0.3403398 -CGTA 0.635896 0.55877453 0.049541026 0.17386417 -0.08757052 -0.25842065 -0.5114364 0.040117025 -0.2163675 -0.5118825 0.24135524 -0.35689288 -GCTAC 0.72983766 1.139734 0.34260884 -0.01940298 0.45939794 -0.1649376 -0.71605223 -0.123232685 -0.24699791 -0.09514385 0.08162722 -0.27194595 -TCCGT 0.33023885 0.735041 -0.37553966 -0.0962422 -0.21830805 -0.5185871 -0.6325672 -0.5334274 0.08535049 0.16034009 0.6377196 -0.3808112 -GCTAG 0.3607732 0.9009324 0.032503817 -0.16116239 0.7567992 0.5386529 -0.73204964 -0.41500083 -0.266768 -0.6842694 0.7194804 -0.07263182 -TTCCG 0.37577206 0.8603126 -0.5525608 -0.23194875 -0.28938982 -0.47054625 -0.52593714 -0.55722624 0.25594327 0.14700356 0.59401995 -0.16867529 -CGGAG -0.1373993 1.0940216 0.0070511973 -0.08523675 -0.35202405 0.3095308 -0.4115586 -0.4365343 -0.5345023 -0.6821851 0.57974 -0.4291341 -AACGA 0.42595246 0.821637 0.13072217 -0.13852292 -0.5543397 0.03916752 -0.46365884 -0.67426413 -0.5699321 -0.720171 -0.1641897 -0.12771483 -CGTGG -0.14864653 1.058841 -0.07043324 0.38537234 -0.44234386 -0.0466462 -0.42641512 -0.34684512 -0.15111491 -0.5712359 0.6495179 -0.62338895 -GTACC 0.46174946 0.63353187 0.083760224 0.33307815 -0.08336044 -0.27666742 -0.72000414 -0.10502889 -0.14709102 -0.39086983 0.12374936 -0.6673554 -TTTCG 0.6198789 0.6346989 -0.5337181 -0.24692623 -0.049988925 -0.49605104 -0.45480752 -0.4719735 -0.03766597 -0.056261737 0.45910206 0.12946115 -CCTCG -0.041256085 1.0857356 -0.11668938 -0.24982208 -0.16969094 -0.0091830455 -0.930327 -0.54349786 0.090237826 0.05471672 0.484103 -0.35743734 -CGTGA -0.032423154 0.8735947 -0.10772515 0.2590844 -0.193632 -0.012646083 -0.50475264 -0.5088075 -0.67470264 -0.32901886 0.38408068 -0.49149013 -ACGAA 0.51536804 0.6894799 0.21687579 -0.17528895 -0.5293523 -0.061065976 -0.45576623 -0.5477137 -0.58297014 -0.7497299 -0.1698339 -0.17472154 -CACGC 0.33315697 1.2195797 0.25934708 -0.15452844 -0.22647227 -0.16912764 -0.3512271 -0.4063607 -0.44940063 0.118369654 0.18792798 -0.82031924 -ACGTG 0.16481796 0.8449647 -0.033617854 0.36595476 -0.3088359 -0.47028273 -0.35828966 -0.19440387 -0.4761169 -0.24152154 0.5165422 -0.63000524 -CCCGT 0.06858488 0.9838131 -0.1810561 0.026783023 -0.3706832 -0.40776893 -0.87631845 -0.5969647 0.09518663 0.118415356 0.27935567 -0.5521294 -CGACC 0.042838596 1.2989011 0.080026425 -0.044826053 -0.34259373 -0.1668623 -0.8014356 -0.5162238 -0.24458271 0.016520182 -0.1438639 -0.4946042 -TTCGT 0.45412654 0.6544824 -0.62848216 -0.018539153 -0.10840092 -0.49177173 -0.4339255 -0.32670817 0.10142654 -0.10111593 0.7712162 -0.14623554 -CCGCC 0.018972483 1.3780836 -0.32642412 -0.0431301 -0.1352477 -0.07632287 -1.0273969 -0.7748952 0.1853338 0.32917163 0.1745035 -0.8856859 -CCCGC 0.061807852 1.4061787 -0.13783173 -0.149324 -0.088577874 -0.13799568 -1.0390173 -0.7187859 0.13029319 0.25916958 -0.012385637 -0.87298054 -CACCG 0.15609962 1.0712967 0.09772952 -0.04818901 -0.37364432 -0.3778208 -0.5453529 -0.37553564 -0.2174592 0.079879545 0.09808895 -0.79277253 -GGCCG -0.040489353 1.2491442 0.03480641 -0.07658491 -0.20465744 0.3229482 -0.5601397 -0.46556935 -0.15807392 -0.28984475 0.6575869 -0.787523 -GGTAC 0.50564134 0.74790776 0.07338901 0.39372984 -0.19888854 -0.18211791 -0.31426242 0.15375829 -0.2178253 -0.6877786 0.4819161 -0.5262714 -CCGGG -0.13350612 1.1414152 -0.10474122 0.022025382 -0.43410656 0.14374541 -0.46772492 -0.41485056 -0.036702096 -0.31660935 0.7560584 -0.5968777 -CGTTT 0.54711825 0.5508986 -0.5924657 -0.09196382 -0.024298072 -0.64595735 -0.3219838 -0.33936355 -0.074929774 -0.09985882 0.6861567 -0.091385454 -CGTCT 0.16362675 0.7074467 -0.11767736 -0.064221464 -0.13946462 -0.5267539 -0.8594021 -0.17798606 -0.02143938 0.034014877 0.90664184 -0.20548335 -CGCCT 0.055848237 1.2762213 -0.25799772 0.007746617 0.044011503 -0.16119425 -0.95411366 -0.5308283 0.14469543 0.18583004 0.33269307 -0.6046503 -CCGTT 0.3053842 0.67976475 -0.47555074 -0.11633311 -0.21982223 -0.43374872 -0.5725757 -0.4177218 0.0029574365 0.08821878 0.50090957 -0.2876794 -ACACG 0.58636636 1.0654742 0.41719672 0.0033713346 -0.37962306 -0.34764984 -0.18192933 -0.25372148 -0.6027799 -0.21550839 0.035698485 -0.5154584 -CCACG 0.2441814 1.1148714 0.15287602 -0.07271372 -0.37987742 -0.22841434 -0.4537721 -0.47467718 -0.2959191 0.010314675 0.042175263 -0.77041274 -CCGTC 0.21518588 0.74167836 -0.06881476 -0.16926211 -0.33250144 -0.6005379 -0.9140563 -0.4496895 0.0758 0.21882269 0.46098354 -0.57652766 -CAGCG 0.13189968 0.96258724 0.09969733 -0.036250114 0.046435677 0.11257123 -0.35144937 -0.5216344 -0.49029085 -0.13785347 0.6213111 -0.98705137 -CCGTG -0.05177202 0.9347971 -0.2087438 0.27417642 -0.35257444 -0.16892804 -0.5844108 -0.4740783 -0.19662453 -0.19722039 0.38522968 -0.61712193 -CGACT 0.060640365 1.1401888 -0.0023345028 -0.14074846 -0.041595656 -0.4317638 -0.59160376 -0.40383643 -0.36873162 -0.003384242 0.31311384 -0.12671882 -CTTCG 0.1973574 0.97718215 -0.19823882 -0.33151534 -0.033202983 -0.33930135 -0.6133354 -0.41305032 0.0022998014 0.040362816 0.34501976 -0.23917285 -CGAGA 0.20383494 0.77596694 -0.0054294732 -0.22495387 -0.32641953 0.27012682 -0.628658 -0.455786 -0.56759375 -0.34076074 0.22081366 0.08264476 -GCCGA -0.044032577 0.9995096 0.0124618225 -0.106700756 -0.07000842 0.29587725 -0.59574854 -0.7351063 -0.3671478 -0.30073154 0.25501308 -0.49992886 -CACGA 0.34420615 0.9214382 0.13636395 -0.01343422 -0.35627455 -0.13100708 -0.3246873 -0.36396486 -0.51082 -0.25904712 0.053667657 -0.38502625 -CCGAG -0.0051012365 0.82185477 -0.13803658 -0.11576451 -0.26817214 0.19107679 -0.61950296 -0.5523114 -0.34158793 -0.2405367 0.31009609 -0.42095828 -CGCTT 0.20556194 0.92236215 -0.35461804 -0.059036873 0.16027084 -0.27386996 -0.4652444 -0.38698974 -0.087366514 -0.12760162 0.51239914 -0.19382423 -CGGAT 0.40038797 0.65802985 -0.24045418 0.1615206 -0.4667777 0.23186609 -0.45450786 -0.3149557 -0.25439453 -0.40290973 0.3465264 -0.1290558 -CTCGC 0.12452709 1.1493832 -0.16493039 -0.21865842 0.122600645 -0.17201379 -0.7402998 -0.3850866 -0.056309767 0.0714811 0.6638289 -0.33247522 -AACCG 0.2813032 0.78739667 0.13209927 0.0139407655 -0.39816296 -0.104789644 -0.48833647 -0.4235797 -0.36755174 -0.52996564 -0.052777372 -0.38421643 -ACGTT 0.606152 0.58161974 -0.2911759 0.044442385 -0.07353156 -0.58887434 -0.26867867 -0.23510212 -0.2584672 -0.09631422 0.39124614 -0.13161907 -AGGCG 0.022291156 0.9676935 0.032521702 -0.02200825 -0.18133506 0.35288936 -0.31593588 -0.5714349 -0.4102006 -0.5486041 0.628946 -0.5625311 -TCCGG -0.032258138 0.85045785 -0.26770294 -0.060346786 -0.31571478 -0.04841915 -0.5022827 -0.5056682 0.049635977 -0.19037895 0.6575917 -0.38051358 -TCGTT 0.5432423 0.5596354 -0.46551695 -0.124478325 -0.10398578 -0.5442628 -0.46990144 -0.26481906 -0.015938397 -0.027982064 0.6628418 -0.10277831 -GCGTG 0.088798665 0.8660394 -0.1874286 0.25562292 -0.2120065 -0.02127522 -0.3921871 -0.33234707 -0.17957436 -0.37137875 0.7539165 -0.6267647 -TGCCG 0.025175987 0.979118 -0.39462847 0.24395199 0.10180099 0.022722175 -0.692077 -0.42645305 -0.025582673 -0.024309503 0.52800924 -0.58905035 -TCCCG 0.15340838 0.98157984 -0.20643288 -0.0959264 -0.29811224 -0.13126844 -0.8436611 -0.5494426 0.06431761 0.26529375 0.3498021 -0.4104523 -TCTCG 0.23316774 0.6589273 -0.056514207 -0.036050986 -0.26358494 -0.31340078 -0.71715707 -0.22879988 -0.05060255 -0.055365972 0.84431255 -0.16091277 -CACGG 0.2126744 0.93860686 0.10896535 -0.06215719 -0.35412458 0.0114734825 -0.31523788 -0.32794368 -0.34393296 -0.21453886 0.33426952 -0.5956706 -GGCGG -0.026014384 1.1156331 -0.06572813 0.12236935 -0.27312475 0.268023 -0.32809404 -0.36413956 -0.2526344 -0.5612712 0.7461963 -0.5087149 -CGGTG -0.05028357 0.78881586 -0.22986647 0.34315017 -0.29078186 0.01914059 -0.36601123 -0.38149112 -0.23068875 -0.5414536 0.6937751 -0.5172968 -CGATG 0.24903543 0.7272612 -0.24123709 0.24514686 -0.10978275 0.18115534 -0.59905833 -0.4211162 -0.19089003 -0.15185219 0.46256933 -0.35260922 -TGGCG 0.06299468 0.9399174 -0.25751993 0.18616572 -0.10142693 0.04656436 -0.38264295 -0.26336697 -0.07006967 -0.40009046 0.56538767 -0.53424025 -CTCGG 0.018524596 1.0099626 0.011681416 -0.12320066 -0.20445408 -0.043755144 -0.6849725 -0.3155888 -0.03228631 -0.1180813 0.5839399 -0.28081933 -CGTTC 0.448029 0.6844741 -0.37618366 -0.093540795 -0.18466975 -0.4470496 -0.53690934 -0.37760657 -0.0061186124 0.07720519 0.56057847 -0.31224057 -CTCCG 0.028171236 1.0347267 -0.18243457 -0.16367553 -0.13246548 -0.20824261 -0.84614384 -0.4002352 -0.0062933313 0.086240165 0.42232272 -0.52841496 -AGCCG 0.074332155 0.8748116 -0.08198523 -0.10674079 0.09022351 0.2013368 -0.552081 -0.6119521 -0.39088714 -0.38266823 0.2787729 -0.44934428 -CATCG 0.54429287 0.7046652 -0.12148638 -0.06527802 -0.38418815 -0.013386342 -0.52981067 -0.20938271 -0.18669473 -0.0750157 0.34982812 -0.32710144 -GAGCG 0.08110694 0.78317916 -0.10200406 -0.02474319 -0.024655733 0.16868192 -0.36189485 -0.46402997 -0.45920557 -0.41413864 0.483668 -0.38382933 -GCGGC 0.16549282 1.0626673 -0.112632975 -0.0057942276 -0.04414117 0.155506 -0.3895667 -0.41166514 -0.1748738 -0.30720952 0.621844 -0.58748245 -TCGGC 0.15673086 1.019082 -0.119395606 -0.104625024 -0.04220427 -0.18619911 -0.43754944 -0.2879515 0.033853114 -0.06430356 0.561717 -0.36506104 -GTCGA 0.30371934 0.53609353 -0.15105544 -0.031463433 -0.27495018 -0.059931464 -0.6550593 -0.40198252 -0.33966246 -0.4102161 0.5206031 -0.2548953 -ACGGG 0.13317536 0.9686997 0.08316987 0.097059436 -0.4374119 0.018175658 -0.3280332 -0.29569215 -0.30850324 -0.5730483 0.42220992 -0.30338633 -CGCCA 0.2647727 0.94446146 -0.04170438 -0.0963534 -0.13621318 -0.05748257 -0.5596468 -0.5045443 -0.13591102 0.05623335 0.089967385 -0.75284624 -GCCGC 0.08112689 1.1364957 -0.14580292 0.08718877 -0.07448032 0.009445723 -0.64247614 -0.56353486 0.025773196 -0.061065834 0.42725757 -0.6971759 -ACCCG 0.08563804 1.069709 0.12180409 0.053323217 -0.37693548 -0.11296901 -0.68194354 -0.5007249 -0.1661935 -0.11844068 0.023490142 -0.49063113 -GCCGG -0.020447604 1.0525007 -0.10419079 0.16005896 -0.104139954 0.28878427 -0.4912312 -0.5006747 -0.18340765 -0.41968954 0.5960862 -0.7333703 -TCGCT 0.23207307 0.9998801 -0.21900098 -0.17715853 0.20768 -0.15203513 -0.704917 -0.34133732 -0.10857873 0.14309539 0.6013529 -0.24367069 -CGGGT 0.070832856 0.8476877 -0.15073459 0.18300258 -0.40972775 -0.0944926 -0.3540987 -0.3148417 -0.10219133 -0.4035038 0.73855036 -0.4455036 -ACCGT 0.3349076 0.746642 0.095407225 0.06901544 -0.44905415 -0.30475783 -0.49989584 -0.41574016 -0.2056432 -0.26988414 0.091617 -0.41287977 -AACGT 0.5463262 0.5356371 0.06432811 0.03671212 -0.23826052 -0.32018733 -0.30141556 -0.32403368 -0.38031968 -0.5525782 0.14305846 -0.3075986 -AAGCG 0.49241754 0.539886 0.14642116 -0.28250858 -0.079450496 0.08388537 -0.3329806 -0.57183206 -0.39967757 -0.52892584 0.26624292 -0.40264586 -CGCTC 0.20875874 0.8846037 -0.041765086 -0.14780647 -0.056937132 -0.19208878 -0.668631 -0.409638 -0.082002945 0.16206568 0.44430965 -0.37193704 -CGGCT 0.068316385 1.0323838 -0.17681234 -0.03608433 0.13989481 -0.09684374 -0.5427913 -0.30365098 -0.09839382 -0.1707881 0.76314074 -0.2867611 -CGTCA 0.5394731 0.5958743 -0.04959215 -0.28168473 -0.26321256 -0.487015 -0.4275629 -0.24959028 -0.18623465 0.06162203 0.6006903 -0.461376 -GCACG 0.2601336 0.97384304 0.16154654 0.094759434 -0.047452405 -0.009118985 -0.26436505 -0.4129918 -0.24886212 -0.30266845 0.42002168 -0.69807637 -CGCAG 0.18566166 0.96866894 0.14747174 -0.15242171 -0.10284263 0.056938794 -0.3296681 -0.4588753 -0.4707015 -0.17391647 0.46687493 -0.7166762 -AGTCG 0.15679176 0.59604186 -0.2087122 -0.008600584 -0.22388025 0.021707127 -0.5900691 -0.4567897 -0.32969794 -0.40344176 0.61123115 -0.35352415 -ACGCA 0.40447414 0.9905463 0.14841375 -0.10697902 -0.10570014 -0.10178333 -0.25340867 -0.42787373 -0.46999356 -0.14729556 0.08901095 -0.5920003 -CCCGG 0.05732372 1.1197591 -0.054789342 -0.008063937 -0.28268957 -0.0082494 -0.6750221 -0.43720296 0.028038746 0.011087519 0.3221896 -0.6542588 -GGCGA 0.10511653 0.9931611 0.01000314 0.06546841 -0.20156503 0.19385827 -0.37754625 -0.3630037 -0.25363976 -0.5000149 0.47895667 -0.2822508 -AGCGA 0.21827598 0.82624364 0.14116041 -0.12054323 -0.034500137 0.21577263 -0.444621 -0.5683244 -0.4776074 -0.35011968 0.25110066 -0.37725353 -CGGGG -0.073963456 1.0221995 -0.04317793 0.113398 -0.46270517 0.07866081 -0.3480572 -0.32680383 -0.19019292 -0.5429846 0.86724377 -0.39492542 -GGACG 0.14773478 0.85694474 -0.08350854 0.029112164 -0.43353558 0.050916277 -0.37839678 -0.33234277 -0.33728972 -0.36464116 0.42268136 -0.28690627 -TACGT 0.6753242 0.669721 -0.16665006 0.11082638 -0.0053961272 -0.34882435 -0.38826755 -0.08668681 -0.1911168 -0.29012004 0.22988917 -0.0931949 -TGACG 0.15629853 0.7664235 -0.18569393 0.1291729 -0.13616978 -0.21568698 -0.49022418 -0.37883502 -0.45945805 -0.26352575 0.2810209 -0.14458509 -CGAAC 0.38936126 0.7935817 0.15473367 -0.14010105 -0.3290525 -0.07667936 -0.41746548 -0.42138124 -0.47516793 -0.4078021 -0.0005625532 -0.20869043 -CGCAA 0.5223472 0.68226975 0.05541759 -0.13222112 -0.121944316 -0.14055564 -0.31550333 -0.5101437 -0.40516117 -0.22881773 0.048645563 -0.40689412 -GCGAT 0.4429539 0.5872452 -0.29137826 0.086909205 -0.15571423 0.07624704 -0.4709515 -0.4170799 -0.15890327 -0.1842168 0.31348893 -0.1172476 -TCGGG 0.08288179 0.9467887 -0.050511733 0.042354982 -0.28034514 -0.11944063 -0.50797 -0.27164596 -0.09948131 -0.228317 0.57433236 -0.24662517 -GGGCG -0.018260093 1.0498264 -0.10190584 0.17955782 -0.32469374 0.18600264 -0.30062807 -0.32687593 -0.17335737 -0.547337 0.78863573 -0.46312252 -ACCGA 0.29308507 0.80611765 0.028111339 -0.08115275 -0.3014391 -0.04032278 -0.5068411 -0.38599887 -0.3104199 -0.17299554 0.0670109 -0.35931703 -CCGCT 0.15525098 1.0687134 -0.14335552 -0.09849627 0.0070860796 -0.19325039 -0.6301602 -0.4244882 -0.028407032 -0.0045036147 0.27705705 -0.3806543 -CGGCC 0.10914166 1.0586387 -0.043676544 -0.016738161 -0.14480402 0.06477393 -0.54297304 -0.5067939 -0.05944706 -0.102873966 0.3713446 -0.6193352 -ACGTC 0.41436657 0.7041882 0.09889471 -0.13425857 -0.2610669 -0.49875614 -0.5343984 -0.21622585 -0.26248777 -0.10538623 0.43302637 -0.312192 -CCGAC 0.13932155 1.0048783 0.048698083 -0.05609531 -0.17984414 -0.16014272 -0.57891184 -0.3862107 -0.38104156 -0.084527746 0.088994876 -0.37760875 -ACCGC 0.13305096 1.0101945 0.04903097 -0.006075476 -0.13682087 -0.13485672 -0.5229622 -0.47247142 -0.16973896 -0.08531435 0.15985274 -0.5285603 -TCGTG 0.34411624 0.54877496 -0.2977916 0.16828768 -0.191524 -0.29254842 -0.5371258 -0.23331304 -0.09430722 -0.23576649 0.5719078 -0.27192482 -CGCAT 0.5999498 0.77115536 -0.3143071 0.14604495 -0.1267632 0.044745207 -0.20069544 -0.2821828 -0.13888013 -0.115316436 0.31549165 -0.44413847 -CTGCG 0.08983716 0.93369853 -0.17050038 0.11091761 0.1002238 -0.04551997 -0.64504606 -0.2920264 -0.16621426 -0.008796761 0.5698402 -0.48528722 -CGTCC 0.245341 0.76727617 -0.13357434 -0.044261087 -0.1989708 -0.40355113 -0.7563455 -0.4162556 0.052910525 0.08867081 0.46989238 -0.4285916 -GACGC 0.16410963 0.89442104 0.01159712 -0.011121146 -0.11937431 -0.05915108 -0.5035645 -0.4384444 -0.37111035 -0.12623958 0.29154614 -0.32345334 -CCGGA 0.058332212 0.8205382 -0.08229992 -0.10736659 -0.29781425 0.08876952 -0.5016987 -0.4282701 -0.22117661 -0.3539172 0.4084282 -0.32255137 -ATGCG 0.45746547 0.74587435 -0.2256686 0.20796381 -0.092729814 0.08140811 -0.3820175 -0.31876132 -0.15457374 -0.08827566 0.34446383 -0.43786836 -CGGGA 0.08454841 0.8865799 -0.06589037 0.07850295 -0.38353822 0.15499815 -0.38978544 -0.3915865 -0.29288107 -0.48632568 0.47004598 -0.22273763 -CGTGT 0.3587733 0.46255377 -0.21774971 0.33817008 -0.16342899 -0.47342494 -0.49634284 -0.20944923 -0.19120044 -0.30104682 0.56720686 -0.40124983 -ATCGG 0.4467741 0.53540653 -0.16378327 -0.051679328 -0.36054567 0.039056014 -0.44980177 -0.42431006 -0.1993221 -0.3981636 0.31392547 -0.13726616 -ACGTA 0.6846776 0.49651885 -0.011937649 0.095999256 -0.11928328 -0.25794634 -0.30146536 -0.15980381 -0.3410469 -0.49190113 0.18619311 -0.27106255 -AGACG 0.22637933 0.7886758 0.1557996 -0.059300177 -0.30837974 0.08826691 -0.34307343 -0.5280819 -0.5864912 -0.5125418 0.21805234 -0.14169978 -CGCTG 0.109269924 0.9421461 -0.11329338 0.11489977 0.09660793 0.03220303 -0.5476214 -0.36653262 -0.2620294 -0.15373728 0.4796221 -0.3443093 -CCGGC 0.07933518 1.1805159 -0.079249665 -0.08080104 -0.08533795 0.12096164 -0.4680168 -0.44940993 -0.0718533 -0.16378786 0.4880184 -0.6786108 -TCGCA 0.5093587 0.6123009 -0.06971234 -0.09415064 -0.06867955 -0.19658494 -0.37077153 -0.39136773 -0.22067744 -0.064741805 0.30727315 -0.32578817 -GCGCT 0.19598453 0.8524831 -0.14504342 -0.10225751 0.1107174 -0.035285678 -0.5135058 -0.3575492 -0.11120678 -0.13877839 0.48264188 -0.30264732 -TTCGG 0.33206633 0.7303355 -0.17783985 -0.17069048 -0.07733851 -0.30974936 -0.41775942 -0.33728114 -0.10499682 -0.16685705 0.50878644 -0.08704413 -AGCGC 0.24861671 0.7414726 -0.07987641 -0.053376317 0.130119 0.03927874 -0.41833106 -0.42271227 -0.20387319 -0.16402462 0.37013257 -0.52100134 -CGGCA 0.10773149 1.0356367 -0.037482366 -0.0496787 -0.05597208 0.12035737 -0.29910773 -0.34117004 -0.24103513 -0.20015611 0.51986897 -0.62199533 -CGTTG 0.23462825 0.6605234 -0.43078783 0.1783267 -0.07525331 -0.2776261 -0.32175398 -0.29069313 -0.20889689 -0.23851578 0.61807424 -0.15646519 -CCCGA 0.18517055 0.88543355 -0.088993445 0.0033474122 -0.24918851 0.11138379 -0.5706982 -0.5803055 -0.18326545 -0.13177122 0.093946815 -0.5087368 -TGTCG 0.3761877 0.5532033 -0.27454764 0.19720365 -0.17453016 -0.18760514 -0.57527536 -0.22734003 -0.18829924 -0.11891668 0.53284115 -0.24462125 -TCGAC 0.3711839 0.7802682 -0.03918522 -0.14113367 -0.21169063 -0.21919377 -0.51950467 -0.4370633 -0.2636366 0.034404453 0.2709706 -0.093297124 -CTCGT 0.30431286 0.585404 -0.11715559 -0.07886747 -0.103572644 -0.39326406 -0.61566556 -0.22465421 -0.12122476 -0.09473499 0.57269204 -0.27341387 -GCGAC 0.14229193 1.0802723 0.1531052 -0.003998651 -0.20075537 0.0008587567 -0.39934126 -0.37640613 -0.3962842 -0.20410754 0.32123917 -0.45658627 -ACGCT 0.2319897 0.98992676 0.016464422 -0.14697692 -0.099128105 -0.2745319 -0.49229258 -0.2673706 -0.31380245 0.05837459 0.37858307 -0.29031524 -ATCCG 0.44494155 0.67614853 -0.10988943 -0.15395594 -0.27178848 0.043136753 -0.5869654 -0.3413954 -0.057009637 -0.1021543 0.25962588 -0.27620903 -CGACA 0.38484517 0.76094204 0.16085283 -0.0025760487 -0.35698828 0.0014002178 -0.3628739 -0.34353507 -0.527777 -0.19167756 0.14295493 -0.2978486 -TGCGT 0.21629044 0.7146638 -0.23769908 0.10185099 0.026251195 -0.21726725 -0.49941668 -0.32253537 -0.2165744 -0.15614322 0.56764 -0.28481457 -CGTGC 0.20479777 0.8613295 -0.16811214 0.2207831 -0.012063874 -0.1525157 -0.4155969 -0.44804084 -0.1931988 -0.12205479 0.39258555 -0.66104126 -GCGGG -0.04823706 0.9842379 -0.10491692 0.11619564 -0.27953494 0.18199612 -0.3814843 -0.2933867 -0.115257084 -0.46269035 0.72302574 -0.5097751 -AGCGT 0.15187113 0.73284864 -0.12586361 0.007758793 -0.04450549 -0.16071768 -0.37323147 -0.38293424 -0.24903108 -0.29966897 0.60845613 -0.38774422 -CGTAT 0.6083593 0.5235605 -0.20541327 0.16399145 -0.07764127 -0.16315909 -0.51112586 -0.09627383 -0.123724155 -0.3619616 0.31379408 -0.20572792 -TCGGA 0.46181735 0.5365669 -0.11535127 -0.03139903 -0.3393817 0.105218165 -0.37339577 -0.41098672 -0.26798457 -0.40558428 0.29119235 -0.04510529 -TATCG 0.79220784 0.44438502 -0.09167931 0.0729161 -0.27797008 0.116199926 -0.5510992 -0.2438942 -0.112019174 -0.20014828 0.24741149 -0.045837533 -CCGAA 0.27334872 0.74018943 0.034107443 -0.09422981 -0.25402284 0.034587122 -0.5452814 -0.5163824 -0.32428738 -0.31704715 -0.009481952 -0.2692661 -GGCGT 0.084015355 0.82535577 -0.17682935 0.17369352 -0.12838666 0.048257068 -0.42439532 -0.34584004 -0.2502394 -0.29917267 0.64999974 -0.52971715 -CGAGG 0.07445335 0.84174186 -0.011793132 -0.0437459 -0.25198576 0.24996443 -0.43201926 -0.4470675 -0.33320057 -0.4061689 0.49648973 -0.34117237 -GCGCC 0.14006405 1.0315671 -0.059328478 -0.0018973728 -0.025963226 0.022032565 -0.52540576 -0.3933072 -0.045575157 -0.066453174 0.37417355 -0.5893297 -CGATA 0.54900914 0.54733175 -0.083066635 0.034003604 -0.18090108 0.13502015 -0.6184928 -0.16840051 -0.17098527 -0.14693159 0.20487243 -0.19315375 -ACCGG 0.15598232 0.8146331 -0.03728028 0.10408826 -0.30045483 -0.14121594 -0.4596298 -0.24731596 -0.23900372 -0.30396727 0.341781 -0.3377965 -CCGCG 0.11688634 0.974119 -0.09076175 0.024494119 -0.20931353 0.06094443 -0.51616555 -0.45724478 -0.1273008 -0.122643806 0.31302565 -0.60455054 -GCGAG 0.16464302 0.82806003 -0.060083356 -0.017757775 -0.014770796 0.114898525 -0.38488182 -0.41381434 -0.38594106 -0.34393492 0.38177162 -0.3008699 -ACGAC 0.31116658 0.9145611 0.10102729 -0.06469523 -0.2698209 -0.18236129 -0.47740173 -0.41485402 -0.3227766 -0.13396305 -0.0032004975 -0.2482087 -CGGCG 0.100718684 1.0105212 -0.0855946 0.10327357 -0.14634424 0.07621853 -0.38806435 -0.42261612 -0.12645002 -0.2693268 0.5318827 -0.42067865 -TAACG 0.613125 0.5400826 -0.02371912 0.08715879 -0.099589884 -0.19379026 -0.42217523 -0.15838777 -0.2858103 -0.5221862 0.15985225 -0.1631768 -CGGGC 0.10170622 1.0121357 -0.07068866 0.027501546 -0.10305804 0.11881538 -0.37572128 -0.3607727 -0.09107131 -0.2798078 0.6077527 -0.5142637 -CGCAC 0.41436076 0.9568743 0.15819527 -0.064467005 -0.100332305 -0.158394 -0.35261324 -0.32014903 -0.48232248 -0.015611821 0.1217589 -0.6324137 -GCTCG 0.12517852 0.84780216 -0.23020923 -0.0353109 0.08771136 -0.037550196 -0.5720468 -0.41469234 -0.23415218 -0.11718344 0.54925096 -0.29201427 -GCGTC 0.17625225 0.6657144 -0.15120286 -0.072867826 0.025284978 -0.22642486 -0.57686454 -0.2947524 -0.15801342 -0.1051245 0.653611 -0.4199482 -ATCGC 0.43218347 0.6422721 -0.046424735 -0.04559662 -0.192756 0.027957693 -0.57845557 -0.32167086 -0.09142548 -0.10308609 0.1762581 -0.2922503 -GCGAA 0.33499467 0.6662943 0.013396255 -0.07021264 -0.27180877 0.016593374 -0.3657789 -0.5190558 -0.33433896 -0.47746506 0.17464049 -0.23625587 -GACCG 0.12792362 0.862144 -0.10531382 0.09396836 -0.3121511 -0.043924764 -0.53111696 -0.34411362 -0.29495507 -0.2739333 0.2522165 -0.29553157 -ACGAG 0.2915579 0.61644155 0.0048402217 -0.053132642 -0.26765126 0.0074125966 -0.364736 -0.3904858 -0.45622498 -0.40392306 0.25129396 -0.17838643 -CCGCA 0.31315684 0.82554334 -0.050849233 -0.031445656 0.0017542602 -0.17227675 -0.381118 -0.40083867 -0.16714802 -0.06363461 0.25089982 -0.4876539 -ACGCC 0.27453902 0.9139614 -0.016418748 -0.049507987 -0.15475693 -0.10146861 -0.5280589 -0.37561938 -0.19311939 -0.059757773 0.19697833 -0.4060603 -CGAGC 0.23068199 0.81605464 -0.06472693 -0.13281535 -0.0036362347 0.121106476 -0.41411778 -0.48517027 -0.2684823 -0.10923135 0.31204268 -0.4314366 -CAACG 0.36734527 0.6864232 0.041082133 -0.08519132 -0.27082437 -0.14103675 -0.3853875 -0.41783404 -0.3458899 -0.23466533 0.13891613 -0.38991943 -CGTAA 0.6836104 0.39523068 -0.013389111 0.056046534 -0.076968476 -0.21756278 -0.43474323 -0.2774518 -0.23523888 -0.49481168 0.12444234 -0.21250312 -AGCGG 0.19166788 0.78303254 -0.03507164 -0.06324467 -0.12878418 0.027831553 -0.2994505 -0.36980578 -0.24742045 -0.35149744 0.43435952 -0.4476704 -TCGTC 0.28386825 0.65909785 -0.09484646 -0.11887253 -0.18031196 -0.36258647 -0.54475033 -0.30889645 -0.10018685 -0.006862956 0.61959344 -0.24842538 -CGAAG 0.22365893 0.5950588 0.06547372 -0.108499706 -0.21663356 0.0187646 -0.39006355 -0.46485373 -0.30491143 -0.48699167 0.34170282 -0.18695825 -TTGCG 0.45167094 0.6492631 -0.36905378 0.09879375 0.06162119 -0.31361 -0.31473917 -0.3289279 -0.22668692 -0.18907176 0.4295083 -0.13273326 -GACGG 0.18057455 0.8173748 0.006022948 0.029915813 -0.24005051 0.026680797 -0.35786912 -0.3356878 -0.38868833 -0.2997923 0.3773136 -0.31019574 -GCGTT 0.32445717 0.5673216 -0.291701 0.09784706 -0.061876766 -0.25136995 -0.37568378 -0.24524167 -0.21866772 -0.2698837 0.5454843 -0.191145 -GCGCA 0.4186589 0.70068896 -0.11601825 0.05617681 -0.05405617 0.09276731 -0.3539247 -0.38782504 -0.202887 -0.11552621 0.30841398 -0.46118358 -TGCGC 0.21938926 0.8030465 -0.2183658 0.062684186 0.056324925 -0.041100625 -0.40951997 -0.3727544 -0.20352507 -0.06690564 0.40167195 -0.45822665 -GCGGT 0.2727746 0.65443945 -0.13604201 0.068026625 -0.115408786 -0.0112635875 -0.3421461 -0.23556177 -0.25856158 -0.41944763 0.5442317 -0.32709333 -ATCGT 0.5914071 0.47815233 -0.16179761 0.005383702 -0.17392214 -0.16480339 -0.5571206 -0.20787238 -0.07364665 -0.19544326 0.29299197 -0.118795715 -GCGGA 0.14491186 0.7208372 -0.085424416 0.040284455 -0.17437355 0.20152724 -0.382568 -0.39912948 -0.21737434 -0.35155508 0.4286759 -0.28568628 -ACGAT 0.5085424 0.5255273 -0.18123145 0.09874366 -0.21431613 -0.012868109 -0.48926365 -0.34556204 -0.24926116 -0.19837412 0.14028098 -0.066710606 -TGCGA 0.24925464 0.7363432 -0.15194389 0.08777736 -0.015549034 -0.06590904 -0.4876559 -0.30893642 -0.23289742 -0.1619482 0.322327 -0.26929194 -AACGC 0.41052306 0.65147424 0.015659299 -0.044352055 -0.19198468 -0.07813023 -0.39212447 -0.34736386 -0.2799736 -0.31776097 0.12048461 -0.31891835 -GACGT 0.3833097 0.6166541 -0.042990636 0.0022263557 -0.20551336 -0.14040397 -0.38652924 -0.35503313 -0.4031566 -0.29883724 0.277574 -0.12958899 -GACGA 0.28305763 0.6054585 -0.0599279 -0.10785339 -0.24889399 0.13479638 -0.343243 -0.44819936 -0.43949208 -0.47915724 0.22896828 -0.035759747 -ACGGT 0.2835476 0.7306532 -0.0348893 0.085870236 -0.1390343 -0.18704613 -0.31888047 -0.23913445 -0.29178432 -0.2947359 0.38849375 -0.3271756 -GGCGC 0.19429758 0.82483315 -0.09930322 0.05602493 -0.09460882 -0.052020017 -0.4294462 -0.33539116 -0.12785006 -0.2659463 0.47064364 -0.3862575 -CGGTA 0.39491138 0.5789553 -0.036062364 0.08630009 -0.1037876 -0.0039342577 -0.45889524 -0.20442334 -0.24374259 -0.41960952 0.42967188 -0.27860045 -GTTCG 0.3137624 0.47111738 -0.24775985 -0.09091159 -0.14488807 -0.16228792 -0.4336282 -0.31579727 -0.20965792 -0.2703439 0.46405977 -0.17013302 -CTACG 0.48567435 0.5714033 0.0039960523 -0.035383895 -0.017031526 -0.23587415 -0.4865705 -0.22657835 -0.23552616 -0.25406092 0.3086071 -0.087677516 -CGCCC 0.21973588 0.855526 -0.11076913 0.0075104227 -0.14945759 -0.055730145 -0.7156115 -0.4752392 -0.055559743 -0.0023079952 0.19299366 -0.5407989 -CGCGC 0.20248468 0.90839136 -0.09026153 -0.06443657 -0.08591234 -0.06122271 -0.47523975 -0.4249522 -0.099241726 -0.102970555 0.2761888 -0.49064213 -ACGGC 0.19814552 0.9002955 -0.024458999 0.05218507 -0.22947024 -0.02038743 -0.4236225 -0.34585723 -0.2693316 -0.27418765 0.3642125 -0.3517428 -CGGAC 0.2589381 0.8000901 0.025889287 0.03230812 -0.29332614 -0.14255153 -0.37421387 -0.206734 -0.40247673 -0.25860998 0.14500576 -0.2088138 -CGTTA 0.6435564 0.46896133 -0.22117002 0.025884217 -0.07797562 -0.25124264 -0.39866513 -0.2061712 -0.20952106 -0.3623044 0.22605574 -0.08077692 -TACGG 0.40640238 0.66207904 -0.04985573 0.14395109 -0.1872122 -0.06859894 -0.34003702 -0.111290574 -0.10771497 -0.3091386 0.3535767 -0.21553649 -TTACG 0.5049254 0.59155047 -0.12635037 -0.0054484243 -0.09731682 -0.1903429 -0.39046034 -0.22669028 -0.19040841 -0.2879975 0.24021083 -0.16196124 -GGTCG 0.22276928 0.65036464 -0.1406106 0.14572383 -0.27537122 -0.010182865 -0.39117682 -0.27246222 -0.1574591 -0.3241613 0.6414483 -0.30998632 -CCGTA 0.43727857 0.62062097 -0.11909053 -0.02112093 -0.12686734 -0.17254208 -0.5399323 -0.23392683 -0.02614116 -0.10322481 0.24570265 -0.32866696 -GCCCG 0.17387235 0.89041126 -0.10857635 0.03603034 -0.07455798 -0.0494522 -0.49748975 -0.4292197 -0.13358715 -0.12738529 0.3579242 -0.46641946 -ATACG 0.67333764 0.61343783 -0.015081144 0.073765144 -0.17186274 -0.061398808 -0.29495838 -0.22843438 -0.24782392 -0.2974032 0.13895038 -0.23645681 -TGCGG 0.24816869 0.67898864 -0.17820807 0.115025386 -0.10699916 -0.0555269 -0.36901173 -0.3102684 -0.20495778 -0.32073215 0.46227655 -0.29117948 -CGTAG 0.31577316 0.5773228 -0.1110458 -0.0121434685 0.059343748 0.035527203 -0.46234366 -0.22058703 -0.21755667 -0.36697057 0.3759865 -0.26076585 -TCGCC 0.33663383 0.7092642 -0.05392878 -0.02040774 -0.19422963 -0.110859096 -0.55413634 -0.2658018 -0.09832843 -0.028200567 0.3029348 -0.32211083 -GATCG 0.24427843 0.6354222 -0.058864504 -0.04052692 -0.20716602 0.0942991 -0.4451534 -0.39367718 -0.2816737 -0.25888345 0.32086283 -0.14850117 -TTCGC 0.5042048 0.5594832 -0.18486407 -0.100241445 -0.11188205 -0.18471283 -0.47349462 -0.3175268 -0.08020178 -0.093106665 0.2313827 -0.18081765 -ACGCG 0.2737372 0.7799924 0.08429885 -0.043977585 -0.1840202 -0.17023458 -0.35446087 -0.30021858 -0.27154493 -0.19683813 0.28045344 -0.3802116 -CCGAT 0.47270718 0.57498366 -0.19015405 -0.03543979 -0.17859517 -0.12720495 -0.54837704 -0.33506656 -0.040143244 0.0002869348 0.2133257 -0.15197934 -GTCGG 0.2109715 0.61754423 -0.1352477 0.04234479 -0.13497059 -0.088509195 -0.39444152 -0.26800692 -0.23023893 -0.2934329 0.5256426 -0.34305066 -CCGGT 0.16465251 0.7231761 -0.16969211 0.123199746 -0.23505393 -0.06816793 -0.4045624 -0.3388314 -0.10245448 -0.26945153 0.5241111 -0.4125587 -CGCCG 0.15707815 0.825529 -0.06512038 -0.0062315087 -0.16612898 -0.101355165 -0.5323134 -0.3914411 -0.10652731 -0.12703282 0.252878 -0.47877654 -TACGA 0.52563304 0.63684595 -0.0034456279 0.06342301 -0.13070937 -0.048947427 -0.46240795 -0.22578107 -0.27735516 -0.29912913 0.11353661 -0.16748185 -TCCGA 0.34209198 0.55731356 -0.10424508 -0.06093521 -0.19275399 -0.09180255 -0.52428705 -0.35898665 -0.14862427 -0.1255333 0.2834762 -0.17062603 -GTGCG 0.22570156 0.54388237 -0.18745738 0.121104896 -0.07574034 -0.09228927 -0.38750088 -0.3621076 -0.1785592 -0.27696642 0.39058965 -0.3028654 -TCGGT 0.3625 0.5711019 -0.19553898 0.014553335 -0.18771197 -0.2470607 -0.3923491 -0.2718073 -0.1616296 -0.10967163 0.50603247 -0.14749175 -CGATC 0.37463164 0.58613735 -0.09239884 -0.1378136 -0.2622264 -0.05774198 -0.6135637 -0.3422522 -0.13730334 -0.04347661 0.35423905 -0.10254737 -GTCCG 0.34366176 0.50837976 -0.22669767 0.05159845 -0.18664432 -0.27536663 -0.405632 -0.31722862 -0.23357144 -0.2772044 0.4213718 -0.31675997 -TCGTA 0.56091386 0.44774878 -0.13560154 0.028763441 -0.049601696 -0.1648576 -0.44457248 -0.20864342 -0.13875033 -0.2517486 0.41172928 -0.085932665 -TCCGC 0.2936902 0.69361514 -0.15088624 -0.04593912 -0.07052694 -0.1934466 -0.52698624 -0.3583339 -0.057858437 -0.061933286 0.31237876 -0.2762147 -TAGCG 0.27723566 0.60799855 -0.07218342 0.033031933 -0.0046076393 -0.060085867 -0.4443989 -0.28831947 -0.17677468 -0.3099117 0.41209295 -0.28886044 -CGGTT 0.3204925 0.5983024 -0.2995915 0.0045160516 -0.08612622 -0.23993987 -0.29146367 -0.29537338 -0.19216464 -0.24394673 0.43876803 -0.15101181 -CGCGG 0.18840435 0.77837646 -0.055382174 0.0040839 -0.13955872 -0.06344208 -0.44111055 -0.33013055 -0.10997282 -0.1665869 0.3813939 -0.3531932 -GTCGT 0.2512613 0.50510037 -0.22800271 0.09895663 -0.14979947 -0.1899851 -0.4089756 -0.20026812 -0.11864176 -0.19765982 0.46055242 -0.19942743 -TCGCG 0.26875487 0.5936978 -0.101956025 0.0240186 -0.19610487 -0.105463706 -0.4569838 -0.28693357 -0.1324529 -0.10617747 0.34687015 -0.2804055 -GTCGC 0.27152252 0.60244715 -0.1505661 -0.0062822606 -0.09271514 -0.108846955 -0.47308534 -0.31182632 -0.20750397 -0.16676979 0.3477644 -0.25697994 -CGCGT 0.24275792 0.5369463 -0.15400235 0.07274942 -0.10562316 -0.11392815 -0.35456288 -0.2378091 -0.2291292 -0.17693806 0.39671206 -0.36473277 -TACGC 0.43450335 0.5352216 0.021081563 0.016770782 -0.10467155 -0.14872259 -0.32560515 -0.16691165 -0.16429608 -0.20848736 0.16648753 -0.22774969 -CGTAC 0.40615046 0.59267527 0.034077235 -0.0063927416 -0.10890854 -0.26863363 -0.37863404 -0.08460885 -0.24882472 -0.17786017 0.21354938 -0.29277527 -CGCGA 0.3059872 0.6037753 -0.061620787 -0.027523272 -0.15555193 -0.011013148 -0.4005894 -0.3071333 -0.28505582 -0.21411683 0.33610016 -0.2538459 -GTACG 0.43871516 0.37886068 -0.088519 0.07365365 -0.083434105 -0.1649298 -0.3634508 -0.24297598 -0.20741877 -0.30435285 0.30632606 -0.20905761 -GCCGT 0.2954574 0.5527247 -0.14502907 0.008469267 0.0031193409 -0.1108553 -0.32350197 -0.21660814 -0.18081915 -0.2162828 0.2823482 -0.27500796 -GCGTA 0.42557326 0.50005245 -0.025071995 0.002587751 -0.07374421 -0.13631892 -0.38124433 -0.21173291 -0.25819507 -0.2615294 0.2639797 -0.25223106 -CGGTC 0.2779801 0.56567186 -0.09557941 0.010159702 -0.17927946 -0.11389265 -0.4646568 -0.31228206 -0.099505365 -0.128638 0.35748193 -0.33450773 -CGCTA 0.30945092 0.63503236 -0.06296137 -0.025656067 0.029995138 -0.08547842 -0.408486 -0.1781955 -0.12015634 -0.18672344 0.19165578 -0.18148205 -TACCG 0.31511036 0.5569823 -0.036774326 0.06570257 -0.1010173 -0.1150532 -0.37943628 -0.25807694 -0.17973734 -0.18322282 0.20252092 -0.29309243 -GCGCG 0.19400129 0.5945594 -0.053965565 0.017920278 -0.06495427 -0.033026986 -0.31749913 -0.22656712 -0.19429347 -0.19204088 0.30635154 -0.30519772 -CGACG 0.13033171 0.5030788 -0.032329127 0.01818235 -0.10998572 0.016698118 -0.26357573 -0.17058271 -0.21161427 -0.17969412 0.28793362 -0.21529901 -CGTCG 0.23380579 0.35975367 -0.04398194 0.013210105 -0.06858995 -0.013591101 -0.24129055 -0.16111434 -0.09662623 -0.16158253 0.22476207 -0.14794464 From 9868c7ab428fb189a1e9c02f006cb5359eb95dea Mon Sep 17 00:00:00 2001 From: LightenedLimited Date: Thu, 21 May 2020 19:37:18 +0200 Subject: [PATCH 3/5] Added error logic to resources import --- attic_util/util.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/attic_util/util.py b/attic_util/util.py index 5c591dc..938282f 100644 --- a/attic_util/util.py +++ b/attic_util/util.py @@ -1,11 +1,18 @@ import random import string -# import resource import logbook import arrow import numpy as np import os +importedResource = False + +try: + import resource + importedResource = True +except ImportError: + pass + def split_Xy(df, y_colname='label'): X = df.drop([y_colname], axis=1) y = df[y_colname] @@ -26,8 +33,10 @@ def random_str(N): return ''.join(random.SystemRandom().choice(string.ascii_lowercase + string.ascii_uppercase + string.digits) for _ in range(N)) def memory_usage(): - # return resource.getrusage(resource.RUSAGE_SELF).ru_maxrss / 1E6 - return 0 + if(importedResource): + return resource.getrusage(resource.RUSAGE_SELF).ru_maxrss / 1E6 + else: + return 0 def estimate_bytes(filenames): return sum([os.stat(f).st_size for f in filenames]) From 81630efadaa0ed360cf1a4f036326aa9d70be710 Mon Sep 17 00:00:00 2001 From: LightenedLimited Date: Sun, 31 May 2020 10:50:52 +0200 Subject: [PATCH 4/5] Froze dependencies using pip freeze --- requirements.txt | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/requirements.txt b/requirements.txt index ce97a24..de84075 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,19 +1,18 @@ -arrow -biopython -biopython -bz2file -ConfigArgParse -gensim -Logbook -numpy -pep8 -pluggy -py -pytest -python-dateutil -requests -six -smart-open -tox -tox-pyenv -virtualenv +arrow==0.15.6 +biopython==1.76 +bz2file==0.98 +ConfigArgParse==1.2.3 +gensim==3.8.3 +Logbook==1.5.3 +numpy==1.18.1 +pep8==1.7.1 +pluggy==0.13.1 +py==1.8.1 +pytest==5.4.2 +python-dateutil==2.8.1 +requests==2.23.0 +six==1.14.0 +smart-open==2.0.0 +tox==3.15.0 +tox-pyenv==1.1.0 +virtualenv==20.0.20 From fc3139701ab5292f13160befc7168fee3b9a3945 Mon Sep 17 00:00:00 2001 From: LightenedLimited Date: Sun, 31 May 2020 10:55:31 +0200 Subject: [PATCH 5/5] removed hidden file issue on linus --- scripts/train_dna2vec.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/train_dna2vec.py b/scripts/train_dna2vec.py index d576208..c2e9347 100755 --- a/scripts/train_dna2vec.py +++ b/scripts/train_dna2vec.py @@ -52,7 +52,7 @@ def train(self, kmer_seq_generator): def write_vec(self): out_filename = '{}.w2v'.format(self.out_fileroot) - self.model.wv.save_word2vec_format("."+out_filename, binary=False) + self.model.wv.save_word2vec_format(out_filename, binary=False) def run_main(args, inputs, out_fileroot): logbook.info(' '.join(sys.argv)) @@ -132,7 +132,7 @@ def main(): args.kmer_fragmenter)) out_txt_filename = '{}.txt'.format(out_fileroot) - with open("."+out_txt_filename, 'w+') as summary_fptr: + with open(out_txt_filename, 'w+') as summary_fptr: with Tee(summary_fptr): logbook.StreamHandler(sys.stdout, level=log_level).push_application() redirect_logging()