Mercurial > repos > onnodg > cdhit_analysis
changeset 0:00d56396b32a draft
planemo upload for repository https://github.com/Onnodg/Naturalis_NLOOR/tree/main/NLOOR_scripts/process_clusters_tool commit c944fd5685f295acba06679e85b67973c173b137
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cdhit_analysis.py Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,787 @@ +#!/usr/bin/env python3 + +import argparse +import os +import re +from collections import Counter, defaultdict +from math import sqrt +import pandas as pd +import matplotlib + +matplotlib.use('Agg') # Non-interactive backend for Galaxy +import matplotlib.pyplot as plt + +""" +This script processes cluster output files from cd-hit-est for use in Galaxy. +It extracts cluster information, associates taxa and e-values from annotation files, +performs statistical calculations, and generates text and plot outputs +summarizing similarity and taxonomic distributions. + + +Main steps: +1. Parse cd-hit-est cluster file and (optional) annotation file. +2. Process each cluster to extract similarity, taxa, and e-value information. +3. Aggregate results across clusters. +4. Generate requested outputs: text summaries, plots, and Excel reports. + + +Note: Uses a non-interactive matplotlib backend (Agg) for compatibility with Galaxy. +""" + + +def parse_arguments(args_list=None): + """Parse command-line arguments for the script.""" + parser = argparse.ArgumentParser( + description='Create taxa analysis from cd-hit cluster files') + parser.add_argument('--input_cluster', type=str, required=True, + help='Input cluster file (.clstr)') + parser.add_argument('--input_annotation', type=str, required=False, + help='Input annotation file (.out)') + + # Galaxy output files + parser.add_argument('--output_similarity_txt', type=str, + help='Similarity text output file') + parser.add_argument('--output_similarity_plot', type=str, + help='Similarity plot output file') + parser.add_argument('--output_evalue_txt', type=str, + help='E-value text output file') + parser.add_argument('--output_evalue_plot', type=str, + help='E-value plot output file') + parser.add_argument('--output_count', type=str, + help='Count summary output file') + parser.add_argument('--output_taxa_clusters', type=str, + help='Taxa per cluster output file') + parser.add_argument('--output_taxa_processed', type=str, + help='Processed taxa output file') + # Plot parameters + parser.add_argument('--simi_plot_y_min', type=float, default=95.0, + help='Minimum value of the y-axis in the similarity plot') + parser.add_argument('--simi_plot_y_max', type=float, default=100.0, + help='Maximum value of the y-axis in the similarity plot') + + # Uncertain taxa configuration + parser.add_argument('--uncertain_taxa_use_ratio', type=float, default=0.5, + help='Ratio at which uncertain taxa count toward the correct taxa') + parser.add_argument('--min_to_split', type=float, default=0.45, + help='Minimum percentage for taxonomic split') + parser.add_argument('--min_count_to_split', type=int, default=10, + help='Minimum count for taxonomic split') + + # Processing options + parser.add_argument('--show_unannotated_clusters', action='store_true', default=False, + help='Show unannotated clusters in output') + parser.add_argument('--make_taxa_in_cluster_split', action='store_true', default=False, + help='Split clusters with multiple taxa') + parser.add_argument('--print_empty_files', action='store_true', default=False, + help='Print messages about empty annotation files') + + return parser.parse_args(args_list) + + +# Color map for plots +COLORMAP = [ +# List of RGBA tuples for bar coloring in plots + (0.12156862745098039, 0.4666666666666667, 0.7058823529411765, 1.0), + (1.0, 0.4980392156862745, 0.054901960784313725, 1.0), + (0.17254901960784313, 0.6274509803921569, 0.17254901960784313, 1.0), + (0.8392156862745098, 0.15294117647058825, 0.1568627450980392, 1.0), + (0.5803921568627451, 0.403921568627451, 0.7411764705882353, 1.0), + (0.5490196078431373, 0.33725490196078434, 0.29411764705882354, 1.0), + (0.8901960784313725, 0.4666666666666667, 0.7607843137254902, 1.0), + (0.4980392156862745, 0.4980392156862745, 0.4980392156862745, 1.0), + (0.7372549019607844, 0.7411764705882353, 0.13333333333333333, 1.0), + (0.09019607843137255, 0.7450980392156863, 0.8117647058823529, 1.0) +] + + +def parse_cluster_file(cluster_file, annotation_file=None, print_empty=False, raise_on_error=False): + """ + Parse the cd-hit-est cluster file (.clstr) and (optionally) an Excel annotation file. + + It extracts cluster information (header, read count, similarity) and associates + taxonomic information and E-values from the annotation file based on the read header. + + :param cluster_file: Path to cd-hit cluster file (.clstr). + :type cluster_file: str + :param annotation_file: Path to Excel annotation file with taxa and e-values. + :type annotation_file: str, optional + :param print_empty: Print a message if the annotation file is not found or empty. + :type print_empty: bool + :param raise_on_error: Raise parsing errors instead of printing warnings. + :type raise_on_error: bool + :return: List of clusters, where each cluster is a dict mapping read header to a dict of read info. + :rtype: list[dict[str, dict]] + :raises ValueError: If similarity cannot be parsed from a cluster line. + :raises UnboundLocalError: If an error occurs during annotation processing. + """ + clusters = [] + current_cluster = {} + + # Load annotations if provided + annotations = {} + if annotation_file and os.path.exists(annotation_file): + # Lees het Excel-bestand + df = pd.read_excel(annotation_file, sheet_name='Individual_Reads', engine='openpyxl') + + # Itereer over de rijen + for _, row in df.iterrows(): + header = row['header'] # kolomnaam zoals in Excel + evalue = row['e_value'] # of de kolomnaam die je wilt gebruiken + taxa = row['taxa'] # afhankelijk van hoe je taxa opslaat + + annotations[header] = {'evalue': evalue, 'taxa': taxa} + elif annotation_file and print_empty: + print(f"Annotation file {annotation_file} not found or empty") + with open(cluster_file, 'r') as f: + for line in f: + line = line.strip() + if line.startswith('>Cluster'): + # Start of new cluster, save previous if exists + if current_cluster: + clusters.append(current_cluster) + current_cluster = {} + else: + # Parse sequence line + parts = line.split() + if len(parts) >= 2: + # Extract header and count + header_part = parts[2].strip('>.') + header_parts = header_part.split('(') + if len(header_parts) > 1: + last_part = header_parts[-1].strip(')') + header = header_parts[0] + if last_part: + count = int(last_part) + else: + print('no count') + count = 0 + header = '' + # Extract similarity + similarity_part = parts[-1].strip() + if '*' in similarity_part: + similarity = 100.0 # Representative sequence + else: + matches = re.findall(r'[\d.]+', similarity_part) + if matches: + similarity = float(matches[-1]) + else: + raise ValueError(f"Could not parse similarity from: '{similarity_part}'") + # Get annotation info + try: + if header in annotations: + taxa = annotations[header]['taxa'] + evalue = annotations[header]['evalue'] + else: + taxa = 'Unannotated read' + evalue = 'Unannotated read' + + current_cluster[header] = { + 'count': count, + 'similarity': similarity, + 'taxa': taxa, + 'evalue': evalue + } + except UnboundLocalError as e: + if raise_on_error: + raise UnboundLocalError(str(e)) + print(f"Error: {e}, No annotations found") + + # Add the last cluster + if current_cluster: + clusters.append(current_cluster) + + return clusters + + +def process_cluster_data(cluster): + """ + Process a single cluster to extract E-value, similarity, and taxa data for all reads. + + Aggregates information from all reads in the cluster, storing read counts, + E-values, similarities, and taxa in lists and a dictionary. + + :param cluster: Cluster data mapping read headers to read info. + :type cluster: dict + :return: A tuple containing: (list of E-values, list of similarity values, dict of taxa -> counts). + The first element of the E-value list ([0]) stores the count of unannotated reads. + :rtype: tuple[list[float | int], list[float], dict[str, int]] + """ + eval_list = [0.0] # First element for unannotated count + simi_list = [] + taxa_dict = {'Unannotated read': 0} + + for header, info in cluster.items(): + count = info['count'] + similarity = info['similarity'] + taxa = info['taxa'] + evalue = info['evalue'] + + if evalue == 'Unannotated read': + eval_list[0] += count + taxa_dict['Unannotated read'] += count + else: + try: + eval_val = float(evalue) + for _ in range(count): + eval_list.append(eval_val) + except ValueError: + eval_list[0] += count + + if taxa not in taxa_dict: + taxa_dict[taxa] = 0 + taxa_dict[taxa] += count + + # Add similarity values + for _ in range(count): + simi_list.append(similarity) + return eval_list, simi_list, taxa_dict + + +def calculate_cluster_taxa(taxa_dict, args): + """ + Calculate the most likely taxa for a cluster based on read counts. + + This function applies the 'uncertain taxa use ratio' for unannotated reads + and uses a recursive approach to potentially split a cluster into sub-clusters + if taxonomic dominance is not strong enough (based on ``min_to_split`` + and ``min_count_to_split``). + + :param taxa_dict: Mapping of taxa (full string) -> read counts. + :type taxa_dict: dict[str, int] + :param args: Parsed script arguments, including parameters for taxa calculation. + :type args: argparse.Namespace + :return: A list of refined taxa assignments (dictionaries), where each dictionary + represents a potentially split sub-cluster. + :rtype: list[dict[str, float | int]] + """ + # Replace 'Unannotated read' with uncertain taxa format + processed_dict = {} + for taxa, count in taxa_dict.items(): + if taxa == 'Unannotated read': + uncertain_taxa = ' / '.join(['Uncertain taxa'] * 7) + processed_dict[uncertain_taxa] = count + else: + processed_dict[taxa] = count + + return _recursive_taxa_calculation(processed_dict, args, 0) + + +def _recursive_taxa_calculation(taxa_dict, args, level): + """ + Recursive helper to calculate and potentially split taxa at each taxonomic level. + + :param taxa_dict: Taxa counts at the current level (or sub-group). + :type taxa_dict: dict[str, float | int] + :param args: Parsed script arguments. + :type args: argparse.Namespace + :param level: Index of the current taxonomic level (0=kingdom, max 6=species). + :type level: int + :return: List of refined taxa dictionaries. + :rtype: list[dict[str, float | int]] + """ + if level >= 7: # Max 7 taxonomic levels + return [taxa_dict] + + level_dict = defaultdict(float) + + # Group by taxonomic level + for taxa, count in taxa_dict.items(): + taxa_parts = taxa.split(' / ') + if level < len(taxa_parts): + level_taxon = taxa_parts[level] + if level_taxon == 'Uncertain taxa': + level_dict[level_taxon] += count * args.uncertain_taxa_use_ratio + else: + level_dict[level_taxon] += count + + if len(level_dict) <= 1: + # Only one taxon at this level, continue to next level + return _recursive_taxa_calculation(taxa_dict, args, level + 1) + + # Sort by abundance + sorted_taxa = sorted(level_dict.items(), key=lambda x: x[1], reverse=True) + + result = [] + dominant_taxon = sorted_taxa[0][0] + + # Check if we should split + for i in range(1, len(sorted_taxa)): + secondary_taxon = sorted_taxa[i][0] + total_count = sorted_taxa[0][1] + sorted_taxa[i][1] + ratio = sorted_taxa[i][1] / total_count + + if ratio >= args.min_to_split or total_count <= args.min_count_to_split: + # Split off this taxon + split_dict = {taxa: count for taxa, count in taxa_dict.items() + if taxa.split(' / ')[level] == secondary_taxon} + result.extend(_recursive_taxa_calculation(split_dict, args, level + 1)) + + # Process the dominant group + dominant_dict = {taxa: count for taxa, count in taxa_dict.items() + if taxa.split(' / ')[level] == dominant_taxon} + result.extend(_recursive_taxa_calculation(dominant_dict, args, level + 1)) + + return result + + +def write_similarity_output(all_simi_data, output_file): + """ + Write the similarity text output, including the mean and standard deviation, + and a count per similarity percentage. + + :param all_simi_data: List of all similarity percentages from all reads. + :type all_simi_data: list[float] + :param output_file: Path to the output file. + :type output_file: str + :return: None + :rtype: None + """ + if not all_simi_data: + return + + avg = sum(all_simi_data) / len(all_simi_data) + variance = sum((s - avg) ** 2 for s in all_simi_data) / len(all_simi_data) + st_dev = sqrt(variance) + + simi_counter = Counter(all_simi_data) + simi_sorted = sorted(simi_counter.items(), key=lambda x: -x[0]) + + with open(output_file, 'w') as f: + f.write(f"# Average similarity: {avg:.2f}\n") + f.write(f"# Standard deviation: {st_dev:.2f}\n") + f.write("similarity\tcount\n") + for similarity, count in simi_sorted: + f.write(f"{similarity}\t{count}\n") + + +def write_evalue_output(all_eval_data, output_file): + """ + Write the E-value text output, including the count of unannotated reads + and a count per E-value. + + :param all_eval_data: List of E-values from all reads. The first element ([0]) is the count of unannotated reads. + :type all_eval_data: list[float | int] + :param output_file: Path to the output file. + :type output_file: str + :return: None + :rtype: None + """ + unanno_count = all_eval_data[0] + eval_counter = Counter(all_eval_data[1:]) + + with open(output_file, 'w') as f: + f.write("evalue\tcount\n") + if unanno_count > 0: + f.write(f"unannotated\t{unanno_count}\n") + + eval_sorted = sorted(eval_counter.items(), + key=lambda x: (-x[1], float(x[0]) if isinstance(x[0], (int, float)) else float('inf'))) + for value, count in eval_sorted: + f.write(f"{value}\t{count}\n") + + +def write_count_output(all_eval_data, cluster_data_list, output_file): + """ + Write a summary of annotated and unannotated read counts per cluster + and for the total sample. + + :param all_eval_data: List of E-values from all reads for the total count summary. + :type all_eval_data: list[float | int] + :param cluster_data_list: List of tuples (eval_list, simi_list, taxa_dict) per cluster. + :type cluster_data_list: list[tuple] + :param output_file: Path to the output file. + :type output_file: str + :return: None + :rtype: None + """ + with open(output_file, 'w') as f: + f.write("cluster\tunannotated\tannotated\ttotal\tperc_unannotated\tperc_annotated\n") + + for cluster_num, (eval_list, _, _) in enumerate(cluster_data_list): + unannotated = eval_list[0] + annotated = len(eval_list[1:]) + total = unannotated + annotated + + if total > 0: + perc_annotated = (annotated / total) * 100 + perc_unannotated = (unannotated / total) * 100 + else: + perc_annotated = perc_unannotated = 0 + + f.write( + f"{cluster_num}\t{unannotated}\t{annotated}\t{total}\t{perc_unannotated:.2f}\t{perc_annotated:.2f}\n") + + # Add full sample summary + total_unannotated = all_eval_data[0] + total_annotated = len(all_eval_data[1:]) + grand_total = total_unannotated + total_annotated + + if grand_total > 0: + perc_annotated = (total_annotated / grand_total) * 100 + perc_unannotated = (total_unannotated / grand_total) * 100 + else: + perc_annotated = perc_unannotated = 0 + + f.write( + f"TOTAL\t{total_unannotated}\t{total_annotated}\t{grand_total}\t{perc_unannotated:.2f}\t{perc_annotated:.2f}\n") + + +def write_taxa_clusters_output(cluster_data_list, output_file): + """ + Write raw taxa information per cluster to an Excel file. + + Each row contains the cluster number, read count, the full taxa string, + and the separate taxonomic levels (kingdom through species). + + :param cluster_data_list: List of tuples (eval_list, simi_list, taxa_dict) per cluster. + :type cluster_data_list: list[tuple] + :param output_file: Path to the output Excel file. + :type output_file: str + :return: None + :rtype: None + """ + # Create main dataframe + data = [] + for cluster_num, (_, _, taxa_dict) in enumerate(cluster_data_list): + for taxa, count in taxa_dict.items(): + if count > 0: + # Split taxa into taxonomic levels + taxa_levels = taxa.split(' / ') if taxa else [] + taxa_levels += ['Unannotated read'] * (7 - len(taxa_levels)) + try: + data.append({ + 'cluster': cluster_num, + 'count': count, + 'taxa_full': taxa, + 'kingdom': taxa_levels[0], + 'phylum': taxa_levels[1], + 'class': taxa_levels[2], + 'order': taxa_levels[3], + 'family': taxa_levels[4], + 'genus': taxa_levels[5], + 'species': taxa_levels[6] + }) + except IndexError as e: + # Skip entries with incomplete taxonomic data + print(f"Skipped entry in cluster {cluster_num}: incomplete taxonomic data for '{taxa}, error: {e}'") + continue + + df = pd.DataFrame(data) + # Write to Excel + temp_path = output_file + ".xlsx" + os.makedirs(os.path.dirname(temp_path), exist_ok=True) + with pd.ExcelWriter(temp_path, engine='openpyxl') as writer: + df.to_excel(writer, sheet_name='Raw_Taxa_Clusters', index=False, engine='openpyxl') + os.replace(temp_path, output_file) + +def write_taxa_processed_output(cluster_data_list, args, output_file): + """ + Write processed (potentially split) taxa information to an Excel file. + + This file contains the resulting sub-clusters from the taxonomic dominance + analysis and a separate sheet documenting the parameters used. + + :param cluster_data_list: List of tuples (eval_list, simi_list, taxa_dict) per cluster. + :type cluster_data_list: list[tuple] + :param args: Parsed script arguments, used for taxa calculation and settings documentation. + :type args: argparse.Namespace + :param output_file: Path to the output Excel file. + :type output_file: str + :return: None + :rtype: None + """ + # Create main dataframe + data = [] + for cluster_num, (_, _, taxa_dict) in enumerate(cluster_data_list): + processed_taxa = calculate_cluster_taxa(taxa_dict, args) + + for taxa_group in processed_taxa: + for taxa, count in taxa_group.items(): + if 'Uncertain taxa / Uncertain taxa / Uncertain taxa' in taxa: + if args.show_unannotated_clusters: + data.append({ + 'cluster': cluster_num, + 'count': count, + 'taxa_full': 'Unannotated read', + 'kingdom': 'Unannotated', + 'phylum': 'Unannotated', + 'class': 'Unannotated', + 'order': 'Unannotated', + 'family': 'Unannotated', + 'genus': 'Unannotated', + 'species': 'Unannotated' + }) + else: + # Split taxa into taxonomic levels + taxa_levels = taxa.split(' / ') if taxa else [] + + try: + data.append({ + 'cluster': cluster_num, + 'count': count, + 'taxa_full': taxa, + 'kingdom': taxa_levels[0], + 'phylum': taxa_levels[1], + 'class': taxa_levels[2], + 'order': taxa_levels[3], + 'family': taxa_levels[4], + 'genus': taxa_levels[5], + 'species': taxa_levels[6] + }) + except IndexError: + # Skip entries with incomplete taxonomic data + print(f"Skipped entry in cluster {cluster_num}: incomplete taxonomic data for '{taxa}'") + continue + + df = pd.DataFrame(data) + + # Create settings dataframe + settings_data = [ + ['uncertain_taxa_use_ratio', args.uncertain_taxa_use_ratio], + ['min_to_split', args.min_to_split], + ['min_count_to_split', args.min_count_to_split] + ] + settings_df = pd.DataFrame(settings_data, columns=['Parameter', 'Value']) + + # Write to Excel with multiple sheets + temp_path = output_file + ".xlsx" + os.makedirs(os.path.dirname(temp_path), exist_ok=True) + with pd.ExcelWriter(temp_path, engine='openpyxl') as writer: + df.to_excel(writer, sheet_name='Processed_Taxa_Clusters', index=False, engine='openpyxl') + settings_df.to_excel(writer, sheet_name='Settings', index=False, engine='openpyxl') + + # Auto-adjust column widths for better readability + for sheet_name in writer.sheets: + worksheet = writer.sheets[sheet_name] + for column in worksheet.columns: + max_length = 0 + column_letter = column[0].column_letter + for cell in column: + try: + if len(str(cell.value)) > max_length: + max_length = len(str(cell.value)) + except: + pass + adjusted_width = min(max_length + 2, 50) # Cap at 50 characters + worksheet.column_dimensions[column_letter].width = adjusted_width + os.replace(temp_path, output_file) + +def create_similarity_plot(all_simi_data, cluster_simi_lengths, args, output_file): + """ + Create a bar plot showing the distribution of intra-cluster similarity values. + + The plot uses different colors to distinguish reads belonging to different clusters. + + :param all_simi_data: List of all similarity values, sorted descending. + :type all_simi_data: list[float] + :param cluster_simi_lengths: List of lengths of similarity data per cluster, used for coloring. + :type cluster_simi_lengths: list[int] + :param args: Parsed script arguments, used for plot y-limits. + :type args: argparse.Namespace + :param output_file: Path to the output plot file (e.g., .png). + :type output_file: str + :return: None + :rtype: None + """ + if not all_simi_data: + return + + sorted_simi_list = sorted(all_simi_data, reverse=True) + bar_positions = list(range(len(sorted_simi_list))) + + # Create colormap for different clusters + colormap_full = [] + for i, length in enumerate(cluster_simi_lengths): + color = COLORMAP[i % len(COLORMAP)] + colormap_full.extend([color] * length) + + plt.figure(figsize=(12, 6)) + plt.bar(bar_positions, sorted_simi_list, width=1, color=colormap_full) + plt.grid(axis='y', linestyle='--', color='gray', alpha=0.7) + plt.ylabel("Similarity (%)") + plt.xlabel("Reads") + plt.title("Intra-cluster Similarity Distribution") + plt.ylim(ymin=args.simi_plot_y_min, ymax=args.simi_plot_y_max) + plt.tight_layout() + + plt.savefig(output_file, format='png', dpi=300, bbox_inches='tight') + plt.close() + + +def create_evalue_plot(all_eval_data, cluster_eval_lengths, output_file): + """ + Create a bar plot showing the distribution of E-values. + + The y-axis is log-scaled and displays ``1/E-values``. Reads are ordered + by E-value (ascending). The plot uses different colors to distinguish reads + belonging to different clusters. + + :param all_eval_data: List of E-values from all reads. Assumes E-values start at index 1. + :type all_eval_data: list[float | int] + :param cluster_eval_lengths: List of lengths of annotated E-value data per cluster, used for coloring. + :type cluster_eval_lengths: list[int] + :param output_file: Path to the output plot file (e.g., .png). + :type output_file: str + :return: None + :rtype: None + """ + if len(all_eval_data) <= 1: # Only unannotated reads + return + + sorted_eval_list = sorted(all_eval_data[1:]) # Skip unannotated count + + if not sorted_eval_list: + return + + bar_positions = list(range(len(sorted_eval_list))) + bar_heights = [1 / e if e > 0 else 0 for e in sorted_eval_list] + + # Create colormap for different clusters + colormap_full = [] + for i, length in enumerate(cluster_eval_lengths): + color = COLORMAP[i % len(COLORMAP)] + colormap_full.extend([color] * length) + + plt.figure(figsize=(12, 6)) + plt.bar(bar_positions, bar_heights, width=1, color=colormap_full) + plt.yscale('log') + plt.grid(axis='y', linestyle='--', color='gray', alpha=0.7) + plt.ylabel("1/E-values") + plt.xlabel("Reads") + plt.title("E-value Distribution") + plt.tight_layout() + + plt.savefig(output_file, format='png', dpi=300, bbox_inches='tight') + plt.close() + +def prepare_evalue_histogram(evalue_list, unannotated_list): + """ + Generate histogram data for E-value distributions. + + This function processes a list of E-values from BLAST or similar search + results, filters out invalid or zero entries, and computes histogram data + suitable for plotting. The histogram represents the frequency distribution + of E-values across all annotated hits. + + :param evalue_list: List of E-values from BLAST hits + :type evalue_list: list[float | int] + :param unannotated_list: List of unannotated E-values + :type unannotated_list: list + :return: Tuple containing: + - **counts** (*numpy.ndarray*): Number of entries per histogram bin. + - **bins** (*numpy.ndarray*): Bin edges corresponding to the histogram. + Returns ``(None, None)`` if no valid data is available. + :rtype: tuple[numpy.ndarray, numpy.ndarray] | tuple[None, None] + :note: + - Only positive numeric E-values are included in the histogram. + - Uses 50 bins in the range (0, 1) for visualization consistency. + """ + data = [ev for ev in evalue_list if isinstance(ev, (int, float)) and ev > 0] + if not data: + return None, None + + counts, bins, _ = plt.hist(data, bins=50, range=(0, 1)) + plt.close() + return counts, bins + +def create_evalue_plot_test(evalue_list, unannotated_list, output_file): + """ + Create and save an E-value distribution plot, returning the computed histogram data. + + This function visualizes the frequency distribution of E-values from BLAST or + annotation results. It saves the plot to the specified output file and returns + the histogram data (counts and bins) for testing with pytests. + + :param evalue_list: List of numeric E-values to plot + :type evalue_list: list[float | int] + :param unannotated_list: Optional list of E-values for unannotated sequences. + :type unannotated_list: list + :param output_file: Path where the histogram image will be saved. + :type output_file: str + + :return: Tuple containing: + - **counts** (*numpy.ndarray*): Frequency counts per histogram bin. + - **bins** (*numpy.ndarray*): Histogram bin edges. + Returns ``(None, None)`` if no valid data was available for plotting. + :rtype: tuple[numpy.ndarray, numpy.ndarray] | tuple[None, None] + """ + counts, bins = prepare_evalue_histogram(evalue_list, unannotated_list) + if counts is None: + return None, None + + plt.hist([ev for ev in evalue_list if isinstance(ev, (int, float)) and ev > 0], + bins=50, range=(0, 1)) + plt.xlabel("E-value") + plt.ylabel("Frequency") + plt.title("E-value Distribution") + plt.savefig(output_file) + plt.close() + return counts, bins + + +def main(arg_list=None): + """ + Main entry point of the script. + + Parses arguments, processes cd-hit cluster data, aggregates results, + and generates requested outputs (text summaries, plots, and Excel reports). + + :param arg_list: List of arguments for testing purposes. + :type arg_list: list, optional + :return: None + :rtype: None + """ + args = parse_arguments(arg_list) + # Parse cluster file + clusters = parse_cluster_file( + args.input_cluster, + args.input_annotation, + args.print_empty_files + ) + # Process each cluster + all_eval_data = [0] # For full sample statistics + all_simi_data = [] + cluster_eval_lengths = [] + cluster_simi_lengths = [] + cluster_data_list = [] + + for cluster in clusters: + eval_list, simi_list, taxa_dict = process_cluster_data(cluster) + cluster_data_list.append((eval_list, simi_list, taxa_dict)) + # Collect data for full sample plots + all_eval_data[0] += eval_list[0] + if len(eval_list) > 1: + all_eval_data.extend(sorted(eval_list[1:])) + cluster_eval_lengths.append(len(eval_list[1:])) + + if simi_list: + all_simi_data.extend(sorted(simi_list, reverse=True)) + cluster_simi_lengths.append(len(simi_list)) + + # Generate outputs based on what was requested + if args.output_similarity_txt: + write_similarity_output(all_simi_data, args.output_similarity_txt) + + if args.output_similarity_plot and all_simi_data: + create_similarity_plot(all_simi_data, cluster_simi_lengths, args, args.output_similarity_plot) + + if args.output_evalue_txt: + write_evalue_output(all_eval_data, args.output_evalue_txt) + + if args.output_evalue_plot and len(all_eval_data) > 1: + create_evalue_plot(all_eval_data, cluster_eval_lengths, args.output_evalue_plot) + + if args.output_count: + write_count_output(all_eval_data, cluster_data_list, args.output_count) + + if args.output_taxa_clusters: + write_taxa_clusters_output(cluster_data_list, args.output_taxa_clusters) + + if args.output_taxa_processed: + write_taxa_processed_output(cluster_data_list, args, args.output_taxa_processed) + + print(f"Processing complete. Processed {len(clusters)} clusters.") + + +if __name__ == "__main__": + main() \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cdhit_analysis.xml Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,243 @@ +<tool id="cdhit_cluster_analysis" name="CD-HIT Cluster Analysis" version="1.0.0"> + <description>Analyze CD-HIT clustering results with taxonomic annotation</description> + + <requirements> + <requirement type="package" version="3.12.3">python</requirement> + <requirement type="package" version="3.10.6">matplotlib</requirement> + <requirement type="package" version="2.3.2">pandas</requirement> + <requirement type="package" version="3.1.5">openpyxl</requirement> + </requirements> + + <command detect_errors="exit_code"><![CDATA[ + python '$__tool_directory__/cdhit_analysis.py' + --input_cluster '$input_cluster' + --input_annotation '$input_annotation' + + #if $output_options.similarity_output: + --output_similarity_txt '$output_similarity_txt' + --output_similarity_plot '$output_similarity_plot' + #end if + #if $output_options.evalue_output: + --output_evalue_txt '$output_evalue_txt' + --output_evalue_plot '$output_evalue_plot' + #end if + #if $output_options.count_output: + --output_count '$output_count' + #end if + #if $output_options.taxa_output: + --output_taxa_clusters '$output_taxa_clusters' + --output_taxa_processed '$output_taxa_processed' + #end if + + --simi_plot_y_min '$plot_params.simi_plot_y_min' + --simi_plot_y_max '$plot_params.simi_plot_y_max' + + --uncertain_taxa_use_ratio '$taxa_params.uncertain_taxa_use_ratio' + --min_to_split '$taxa_params.min_to_split' + --min_count_to_split '$taxa_params.min_count_to_split' + + #if $processing_options.show_unannotated_clusters: + --show_unannotated_clusters + #end if + #if $processing_options.make_taxa_in_cluster_split: + --make_taxa_in_cluster_split + #end if + #if $processing_options.print_empty_files: + --print_empty_files + #end if + ]]></command> + + <inputs> + <param name="input_cluster" type="data" format="txt" label="CD-HIT cluster file (.clstr/.txt)" + help="Output cluster file from cd-hit-est" /> + <param name="input_annotation" type="data" format="xlsx" + label="Annotation file" + help="Excel workfile with sequence annotations (header, evalue, taxa)" /> + + <section name="output_options" title="Output Options" expanded="true"> + <param name="similarity_output" type="boolean" truevalue="true" falsevalue="false" + checked="true" label="Create similarity output" + help="Generate similarity analysis and plots" /> + <param name="evalue_output" type="boolean" truevalue="true" falsevalue="false" + checked="true" label="Create E-value output" + help="Generate E-value analysis and plots" /> + <param name="count_output" type="boolean" truevalue="true" falsevalue="false" + checked="true" label="Create count output" + help="Generate read count summaries" /> + <param name="taxa_output" type="boolean" truevalue="true" falsevalue="false" + checked="true" label="Create taxa output" + help="Generate taxonomic analysis" /> + </section> + + <section name="plot_params" title="Plot Parameters" expanded="false"> + <param name="simi_plot_y_min" type="float" value="95.0" min="0" max="100" + label="Similarity plot Y-axis minimum" + help="Minimum value for similarity plot Y-axis" /> + <param name="simi_plot_y_max" type="float" value="100.0" min="0" max="100" + label="Similarity plot Y-axis maximum" + help="Maximum value for similarity plot Y-axis" /> + </section> + + <section name="taxa_params" title="Taxonomic Analysis Parameters" expanded="false"> + <param name="uncertain_taxa_use_ratio" type="float" value="0.5" min="0" max="1" + label="Uncertain taxa ratio" + help="Ratio at which uncertain taxa count toward the correct taxa" /> + <param name="min_to_split" type="float" value="0.45" min="0" max="1" + label="Minimum percentage to split" + help="Minimum percentage for taxonomic split" /> + <param name="min_count_to_split" type="integer" value="10" min="1" + label="Minimum count to split" + help="Minimum count for taxonomic split" /> + </section> + + <section name="processing_options" title="Processing Options" expanded="false"> + <param name="show_unannotated_clusters" type="boolean" truevalue="true" falsevalue="false" + checked="false" label="Show unannotated clusters" + help="Include unannotated clusters in output" /> + <param name="make_taxa_in_cluster_split" type="boolean" truevalue="true" falsevalue="false" + checked="false" label="Split clusters with multiple taxa" + help="Split clusters containing multiple taxa instead of marking as uncertain" /> + <param name="print_empty_files" type="boolean" truevalue="true" falsevalue="false" + checked="false" label="Print empty file messages" + help="Print messages about empty annotation files" /> + </section> + </inputs> + + <outputs> + <data name="output_similarity_txt" format="txt" label="Similarity data" > + <filter>output_options['similarity_output']</filter> + </data> + + <data name="output_similarity_plot" format="png" label="Similarity plot" > + <filter>output_options['similarity_output']</filter> + </data> + + <data name="output_evalue_txt" format="txt" label="E-value data" > + <filter>output_options['evalue_output']</filter> + </data> + + <data name="output_evalue_plot" format="png" label="E-value plot" > + <filter>output_options['evalue_output']</filter> + </data> + + <data name="output_count" format="txt" label="Count summary" > + <filter>output_options['count_output']</filter> + </data> + + <data name="output_taxa_clusters" format="xlsx" label="Raw taxa per cluster" > + <filter>output_options['taxa_output']</filter> + </data> + + <data name="output_taxa_processed" format="xlsx" label="Processed taxa" > + <filter>output_options['taxa_output']</filter> + </data> + </outputs> + + <tests> + <test expect_num_outputs="7"> + <param name="input_cluster" value="29-test.clstr.txt" /> + <param name="input_annotation" value="header_anno_29_test.xlsx" /> + <section name="output_options"> + <param name="similarity_output" value="true" /> + <param name="evalue_output" value="true" /> + <param name="count_output" value="true" /> + <param name="taxa_output" value="true" /> + </section> + <output name="output_similarity_txt" file="sim_out.txt" /> + <output name="output_similarity_plot" file="sim_out.png" compare="sim_size"/> + <output name="output_evalue_txt" file="evalue_out.txt" /> + <output name="output_evalue_plot" file="evalue_out.png" compare="sim_size"/> + <output name="output_count" file="count_out.txt" /> + <output name="output_taxa_clusters" file="taxa_out.xlsx" decompress="true"/> + <output name="output_taxa_processed" file="processed.xlsx" decompress="true"/> + </test> + <test expect_num_outputs="7"> + <param name="input_cluster" value="input2_test.clstr.txt" /> + <param name="input_annotation" value="header_anno_excel.xlsx" /> + <section name="output_options"> + <param name="similarity_output" value="true" /> + <param name="evalue_output" value="true" /> + <param name="count_output" value="true" /> + <param name="taxa_output" value="true" /> + </section> + <output name="output_similarity_txt" file="test2_sim_out.txt" /> + <output name="output_similarity_plot" file="test2_sim_out.png" compare="sim_size"/> + <output name="output_evalue_txt" file="test2_evalue_out.txt" /> + <output name="output_evalue_plot" file="test2_evalue_out.png" compare="sim_size"/> + <output name="output_count" file="test_2count_out.txt" /> + <output name="output_taxa_clusters" file="test_2taxa_out.xlsx" decompress="true"/> + <output name="output_taxa_processed" file="test_2processed.xlsx" decompress="true"/> + </test> + <test expect_num_outputs="5"> + <param name="input_cluster" value="input2_test.clstr.txt" /> + <param name="input_annotation" value="header_anno_excel.xlsx" /> + <section name="output_options"> + <param name="similarity_output" value="true" /> + <param name="count_output" value="true" /> + <param name="taxa_output" value="true" /> + <param name="evalue_output" value="false" /> + </section> + <section name="processing_options"> + <param name="show_unnanotated_clusters" value="true"/> + <param name="make_taxa_in_cluster_split" value="true"/> + <param name="print_empty_files" value="true"/> + </section> + <section name="taxa_params"> + <param name="uncertain_taxa_use_ratio" value="0.6"/> + <param name="min_to_split" value="0.6"/> + <param name="min_count_to_split" value="6"/> + </section> + <section name="plot_params" title="Plot Parameters" expanded="false"> + <param name="simi_plot_y_min" value="0.4" /> + <param name="simi_plot_y_max" value="0.4" /> + </section> + <output name="output_similarity_txt" file="test2_sim_extra_out.txt" /> + <output name="output_similarity_plot" file="test2_sim_extra_out.png" compare="sim_size"/> + <output name="output_count" file="test_2count_extra_out.txt" /> + <output name="output_taxa_clusters" file="test_2taxa_extra_out.xlsx" decompress="true"/> + <output name="output_taxa_processed" file="test_2processed_extra.xlsx" decompress="true"/> + </test> + </tests> + + <help><![CDATA[ +**CD-HIT Cluster Analysis** + +This tool analyzes CD-HIT clustering results and provides various outputs including taxonomic analysis, similarity analysis, E-value analysis, and read count summaries. + +**Input Files:** + +1. **CD-HIT cluster file (.txt/.clstr)**: Required. The cluster file output from cd-hit-est containing clustered sequences. + +2. **Annotation file (.xlsx)**: Tab-separated file containing sequence annotations with columns: + +**Output Options:** + +- **Similarity output**: Creates similarity analysis with plots and text files showing intra-cluster similarity distributions +- **E-value output**: Creates E-value analysis with plots and text files showing E-value distributions +- **Count output**: Creates summary tables with annotated/unannotated read counts per cluster +- **Taxa output**: Creates taxonomic analysis determining the most likely taxa for each cluster + +**Parameters:** + +- **Plot Parameters**: Control the size of similarity plots (X and Y-axis limits) +- **Taxonomic Analysis Parameters**: Control how uncertain taxa are handled and when clusters are split +- **Processing Options**: Control display of unannotated clusters and verbose output + +**Output Files:** + +- **Similarity data**: Tab-separated file with similarity statistics +- **Similarity plot**: PNG image showing similarity distribution across clusters +- **E-value data**: Tab-separated file with E-value statistics +- **E-value plot**: PNG image showing E-value distribution +- **Count summary**: Tab-separated file with read counts per cluster +- **Raw taxa per cluster**: Excel file showing all taxa found in each cluster +- **Processed taxa**: Excel file with clusters where a taxon was assigned + +**Note**: The tool expects that sequence counts are included in the cluster file headers in the format "header(count)". + +**Credits** +Authors = Onno de Gorter, 2025. +Based on a script by Nick Kortleven, translated, modified and wrapped by Onno de Gorter, +Developed for the New light on old remedies project, a PhD research by Anja Fischer + ]]></help> +</tool> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/29-test.clstr.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,116 @@ +>Cluster 0 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:8813:1648_CONS(365)... at 1:90:1:90/+/98.89% +1 89nt, >M01687:476:000000000-LL5F5:1:1102:23329:6743_CONS(2)... at 1:89:1:90/+/98.88% +2 89nt, >M01687:476:000000000-LL5F5:1:1102:22397:8283_CONS(1)... at 1:89:1:90/+/98.88% +3 90nt, >M01687:476:000000000-LL5F5:1:1101:12981:18414_CONS(1)... at 1:90:1:90/+/97.78% +4 89nt, >M01687:476:000000000-LL5F5:1:2115:14293:1261_CONS(1)... at 1:89:1:90/+/98.88% +5 90nt, >M01687:476:000000000-LL5F5:1:2114:23821:14217_CONS(1)... at 1:90:1:90/+/97.78% +6 90nt, >M01687:476:000000000-LL5F5:1:2113:8900:5403_CONS(2)... at 1:90:1:90/+/97.78% +7 90nt, >M01687:476:000000000-LL5F5:1:2113:19934:7483_CONS(1)... at 1:90:1:90/+/97.78% +8 90nt, >M01687:476:000000000-LL5F5:1:2113:27014:9568_CONS(1)... at 1:90:1:90/+/97.78% +9 89nt, >M01687:476:000000000-LL5F5:1:2111:11120:19867_CONS(2)... at 1:89:1:90/+/98.88% +10 89nt, >M01687:476:000000000-LL5F5:1:2110:14480:1097_CONS(1)... at 1:89:1:89/+/97.75% +11 90nt, >M01687:476:000000000-LL5F5:1:2108:12471:11056_CONS(1)... at 1:90:1:90/+/97.78% +12 89nt, >M01687:476:000000000-LL5F5:1:2106:6399:13942_CONS(1)... at 1:89:1:90/+/97.75% +13 90nt, >M01687:476:000000000-LL5F5:1:2106:7157:21740_CONS(2)... at 1:90:1:90/+/97.78% +14 90nt, >M01687:476:000000000-LL5F5:1:2107:12198:7133_CONS(1)... at 1:90:1:90/+/97.78% +15 90nt, >M01687:476:000000000-LL5F5:1:2107:23364:14939_CONS(1)... at 1:90:1:90/+/97.78% +16 90nt, >M01687:476:000000000-LL5F5:1:2104:18884:14966_CONS(1)... at 1:90:1:90/+/97.78% +17 90nt, >M01687:476:000000000-LL5F5:1:2105:13735:5005_CONS(2)... at 1:90:1:90/+/97.78% +18 90nt, >M01687:476:000000000-LL5F5:1:2102:25473:9203_CONS(1)... at 1:90:1:90/+/97.78% +19 90nt, >M01687:476:000000000-LL5F5:1:2103:18560:6298_CONS(1)... at 1:90:1:90/+/97.78% +20 88nt, >M01687:476:000000000-LL5F5:1:2116:7379:11104_CONS(1)... at 1:88:1:89/+/97.73% +21 90nt, >M01687:476:000000000-LL5F5:1:2116:20472:23674_CONS(1)... at 1:90:1:90/+/97.78% +22 46nt, >M01687:476:000000000-LL5F5:1:1114:19619:17564_CONS(1)... at 1:46:1:46/+/100.00% +23 90nt, >M01687:476:000000000-LL5F5:1:1113:27031:6298_CONS(1)... at 1:90:1:90/+/97.78% +24 90nt, >M01687:476:000000000-LL5F5:1:1113:10450:12029_CONS(1)... at 1:90:1:90/+/97.78% +25 90nt, >M01687:476:000000000-LL5F5:1:1113:24917:23549_CONS(1)... at 1:90:1:90/+/97.78% +26 89nt, >M01687:476:000000000-LL5F5:1:1112:22792:12782_CONS(1)... at 1:89:1:90/+/98.88% +27 90nt, >M01687:476:000000000-LL5F5:1:1111:27666:20157_CONS(1)... at 1:90:1:90/+/97.78% +28 90nt, >M01687:476:000000000-LL5F5:1:1110:19793:5429_CONS(1)... at 1:90:1:90/+/97.78% +29 90nt, >M01687:476:000000000-LL5F5:1:1109:16190:7357_CONS(1)... at 1:90:1:90/+/97.78% +30 223nt, >M01687:476:000000000-LL5F5:1:1107:11168:7701_CONS(1)... * +31 89nt, >M01687:476:000000000-LL5F5:1:1107:11260:19063_CONS(1)... at 1:89:2:90/+/98.88% +32 91nt, >M01687:476:000000000-LL5F5:1:1106:23871:2658_CONS(1)... at 1:91:1:90/+/97.80% +33 90nt, >M01687:476:000000000-LL5F5:1:1106:23295:14677_CONS(1)... at 1:90:1:90/+/97.78% +34 90nt, >M01687:476:000000000-LL5F5:1:1106:24932:15730_CONS(1)... at 1:90:1:90/+/97.78% +35 91nt, >M01687:476:000000000-LL5F5:1:1103:26333:15920_CONS(1)... at 2:91:1:90/+/97.80% +36 90nt, >M01687:476:000000000-LL5F5:1:1103:4781:21073_CONS(1)... at 1:90:1:90/+/97.78% +37 90nt, >M01687:476:000000000-LL5F5:1:1118:7252:16681_CONS(1)... at 1:90:1:90/+/97.78% +38 90nt, >M01687:476:000000000-LL5F5:1:1117:21225:8122_CONS(1)... at 1:90:1:90/+/97.78% +39 89nt, >M01687:476:000000000-LL5F5:1:2118:2579:13588_CONS(1)... at 1:89:1:90/+/98.88% +40 90nt, >M01687:476:000000000-LL5F5:1:2119:23468:21624_CONS(1)... at 1:90:1:90/+/97.78% +>Cluster 1 +0 181nt, >M01687:476:000000000-LL5F5:1:2102:18967:5026_PairEnd(1)... * +>Cluster 2 +0 91nt, >M01687:476:000000000-LL5F5:1:2108:17627:10678_CONS(1)... * +>Cluster 3 +0 90nt, >M01687:476:000000000-LL5F5:1:1101:13606:4665_CONS(49)... * +1 90nt, >M01687:476:000000000-LL5F5:1:2102:17942:13728_CONS(1)... at 1:90:1:90/+/98.89% +2 90nt, >M01687:476:000000000-LL5F5:1:1111:19965:15266_CONS(1)... at 1:90:1:90/+/98.89% +3 90nt, >M01687:476:000000000-LL5F5:1:1107:17618:13842_CONS(1)... at 1:90:1:90/+/98.89% +>Cluster 4 +0 90nt, >M01687:476:000000000-LL5F5:1:2106:11309:16764_CONS(1)... * +>Cluster 5 +0 89nt, >M01687:476:000000000-LL5F5:1:1102:8237:4093_CONS(164)... * +1 89nt, >M01687:476:000000000-LL5F5:1:2115:4173:9615_CONS(1)... at 1:89:1:89/+/98.88% +2 89nt, >M01687:476:000000000-LL5F5:1:2112:10233:6066_CONS(2)... at 1:89:1:89/+/98.88% +3 89nt, >M01687:476:000000000-LL5F5:1:2110:19366:13444_CONS(1)... at 1:89:1:89/+/98.88% +4 88nt, >M01687:476:000000000-LL5F5:1:2107:17376:5785_CONS(1)... at 1:88:1:89/+/100.00% +5 89nt, >M01687:476:000000000-LL5F5:1:2105:13892:8960_CONS(1)... at 1:89:1:89/+/98.88% +6 88nt, >M01687:476:000000000-LL5F5:1:1119:14291:7649_CONS(1)... at 1:88:1:89/+/100.00% +7 89nt, >M01687:476:000000000-LL5F5:1:1111:26431:5086_CONS(1)... at 1:89:1:89/+/98.88% +8 88nt, >M01687:476:000000000-LL5F5:1:1109:10397:1947_CONS(1)... at 1:88:1:88/+/98.86% +9 89nt, >M01687:476:000000000-LL5F5:1:1117:16805:11449_CONS(1)... at 1:89:1:89/+/98.88% +10 89nt, >M01687:476:000000000-LL5F5:1:2119:4216:6805_CONS(1)... at 1:89:1:89/+/98.88% +11 89nt, >M01687:476:000000000-LL5F5:1:2119:20434:13913_CONS(1)... at 1:89:1:89/+/98.88% +>Cluster 6 +0 88nt, >M01687:476:000000000-LL5F5:1:2102:3076:18608_CONS(1)... * +>Cluster 7 +0 79nt, >M01687:476:000000000-LL5F5:1:1102:15796:4670_CONS(72)... * +1 79nt, >M01687:476:000000000-LL5F5:1:2110:17405:16879_CONS(2)... at 1:79:1:79/+/98.73% +2 79nt, >M01687:476:000000000-LL5F5:1:2106:25640:19275_CONS(1)... at 1:79:1:79/+/98.73% +3 79nt, >M01687:476:000000000-LL5F5:1:2107:20039:2082_CONS(1)... at 1:79:1:79/+/98.73% +4 79nt, >M01687:476:000000000-LL5F5:1:2102:9297:20420_CONS(1)... at 1:79:1:79/+/98.73% +5 79nt, >M01687:476:000000000-LL5F5:1:1108:21080:8455_CONS(1)... at 1:79:1:79/+/98.73% +6 79nt, >M01687:476:000000000-LL5F5:1:1118:24896:9405_CONS(1)... at 1:79:1:79/+/98.73% +>Cluster 8 +0 79nt, >M01687:476:000000000-LL5F5:1:2111:13737:11786_CONS(1)... * +>Cluster 9 +0 74nt, >M01687:476:000000000-LL5F5:1:2112:29673:13958_CONS(8)... at 1:74:1:75/+/100.00% +1 75nt, >M01687:476:000000000-LL5F5:1:1111:12124:7307_CONS(1)... * +>Cluster 10 +0 74nt, >M01687:476:000000000-LL5F5:1:1101:5199:14638_CONS(3)... * +>Cluster 11 +0 69nt, >M01687:476:000000000-LL5F5:1:1113:12163:20390_CONS(2)... * +>Cluster 12 +0 66nt, >M01687:476:000000000-LL5F5:1:2110:12902:11860_CONS(1)... * +>Cluster 13 +0 65nt, >M01687:476:000000000-LL5F5:1:2109:21225:22693_CONS(1)... * +>Cluster 14 +0 65nt, >M01687:476:000000000-LL5F5:1:1119:7365:12136_CONS(1)... * +>Cluster 15 +0 59nt, >M01687:476:000000000-LL5F5:1:2113:21521:9151_CONS(5)... * +>Cluster 16 +0 58nt, >M01687:476:000000000-LL5F5:1:1102:25400:11650_CONS(20)... * +1 58nt, >M01687:476:000000000-LL5F5:1:2105:5136:6633_CONS(1)... at 1:58:1:58/+/98.28% +>Cluster 17 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:17745:8732_CONS(32)... * +1 56nt, >M01687:476:000000000-LL5F5:1:1101:25192:18501_CONS(1)... at 1:56:1:56/+/98.21% +2 56nt, >M01687:476:000000000-LL5F5:1:2112:27488:19524_CONS(2)... at 1:56:1:56/+/98.21% +3 56nt, >M01687:476:000000000-LL5F5:1:2111:18138:6590_CONS(1)... at 1:56:1:56/+/98.21% +4 56nt, >M01687:476:000000000-LL5F5:1:2108:16126:4049_CONS(1)... at 1:56:1:56/+/98.21% +5 56nt, >M01687:476:000000000-LL5F5:1:1117:20192:4344_CONS(1)... at 1:56:1:56/+/98.21% +>Cluster 18 +0 56nt, >M01687:476:000000000-LL5F5:1:2111:4483:9143_CONS(5)... * +>Cluster 19 +0 56nt, >M01687:476:000000000-LL5F5:1:2110:23335:24088_CONS(3)... * +1 56nt, >M01687:476:000000000-LL5F5:1:2103:19889:1427_CONS(2)... at 1:56:1:56/+/98.21% +>Cluster 20 +0 56nt, >M01687:476:000000000-LL5F5:1:1113:14234:20635_CONS(1)... * +>Cluster 21 +0 56nt, >M01687:476:000000000-LL5F5:1:1117:24310:10005_CONS(1)... * +>Cluster 22 +0 48nt, >M01687:476:000000000-LL5F5:1:2115:7191:13204_CONS(4)... * +>Cluster 23 +0 42nt, >M01687:476:000000000-LL5F5:1:1114:12212:6093_CONS(1)... *
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/count_out.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,26 @@ +cluster unannotated annotated total perc_unannotated perc_annotated +0 2.0 408 410.0 0.49 99.51 +1 1.0 0 1.0 100.00 0.00 +2 0.0 1 1.0 0.00 100.00 +3 0.0 52 52.0 0.00 100.00 +4 1.0 0 1.0 100.00 0.00 +5 0.0 176 176.0 0.00 100.00 +6 1.0 0 1.0 100.00 0.00 +7 0.0 79 79.0 0.00 100.00 +8 1.0 0 1.0 100.00 0.00 +9 9.0 0 9.0 100.00 0.00 +10 3.0 0 3.0 100.00 0.00 +11 2.0 0 2.0 100.00 0.00 +12 1.0 0 1.0 100.00 0.00 +13 1.0 0 1.0 100.00 0.00 +14 1.0 0 1.0 100.00 0.00 +15 5.0 0 5.0 100.00 0.00 +16 21.0 0 21.0 100.00 0.00 +17 38.0 0 38.0 100.00 0.00 +18 5.0 0 5.0 100.00 0.00 +19 5.0 0 5.0 100.00 0.00 +20 1.0 0 1.0 100.00 0.00 +21 1.0 0 1.0 100.00 0.00 +22 4.0 0 4.0 100.00 0.00 +23 0.0 1 1.0 0.00 100.00 +TOTAL 103.0 717 820.0 12.56 87.44
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/evalue_out.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,20 @@ +evalue count +unannotated 103.0 +1.41e-39 414 +4.99e-39 166 +1.54e-33 72 +6.56e-38 25 +2.32e-37 16 +7.17e-32 6 +1.82e-38 4 +5.07e-39 3 +8.21e-37 2 +1.43e-39 1 +6.45e-38 1 +6.66e-38 1 +2.28e-37 1 +8.62e-37 1 +1.06e-35 1 +1.08e-35 1 +3.33e-30 1 +8.16e-12 1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/header_anno.out Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,33 @@ +header e_value identity percentage coverage bitscore count source taxa +M01687:476:000000000-LL5F5:1:2115:26447:7735_CONS 1.44e-38 100.000 89 152 16 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:2114:23245:14996_CONS 6.69e-37 98.780 89 147 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:2114:26495:20130_PairEnd 5.74e-12 100.000 97 62.1 2 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Boraginales / Boraginaceae / Echium / Echium vulgare +M01687:476:000000000-LL5F5:1:2111:23635:6003_PairEnd 4.7e-13 100.000 100 65.8 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Moraceae / Morus / Morus nigra +M01687:476:000000000-LL5F5:1:2111:13710:23471_PairEnd 1.84e-19 98.000 100 87.9 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Malpighiales / Linaceae / Linum / Linum usitatissimum +M01687:476:000000000-LL5F5:1:2110:8045:10072_PairEnd 5.81e-19 100.000 100 86.1 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Betulaceae / Carpinus / Carpinus betulus +M01687:476:000000000-LL5F5:1:2110:19424:21789_PairEnd 1.82e-11 100.000 100 60.2 2 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Boraginales / Boraginaceae / Echium / Echium vulgare +M01687:476:000000000-LL5F5:1:2109:4173:12817_PairEnd 1.6e-12 100.000 100 63.9 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Boraginales / Boraginaceae / Echium / Echium vulgare +M01687:476:000000000-LL5F5:1:2108:25788:9128_PairEnd 1.6e-12 100.000 100 63.9 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Uncertain taxa / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2106:6185:5045_CONS 4e-39 98.851 95 154 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:2106:25223:15232_PairEnd 1.82e-11 100.000 100 60.2 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Caryophyllales / Polygonaceae / Persicaria / Persicaria capitata +M01687:476:000000000-LL5F5:1:2106:16583:24900_PairEnd 1.6e-12 100.000 100 63.9 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Moraceae / Morus / Morus nigra +M01687:476:000000000-LL5F5:1:2107:14441:4420_PairEnd 4.18e-21 98.113 100 93.5 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:2102:6786:11465_PairEnd 1.69e-12 100.000 97 63.9 2 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:2103:23936:5039_PairEnd 7.77e-18 97.872 100 82.4 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:2103:8294:17591_PairEnd 4.07e-21 100.000 98 93.5 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Betulaceae / Carpinus / Carpinus betulus +M01687:476:000000000-LL5F5:1:2117:17252:13628_PairEnd 1.6e-12 100.000 100 63.9 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Uncertain taxa / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:27592:18414_PairEnd 1.78e-12 100.000 94 63.9 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:2101:24893:3903_PairEnd 1.6e-12 100.000 100 63.9 2 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:1114:20282:19626_PairEnd 1.82e-11 100.000 100 60.2 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Uncertain taxa / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1111:16182:6304_PairEnd 6.56e-11 100.000 100 58.4 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Uncertain taxa / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1108:26724:9550_CONS 2.37e-36 98.780 89 145 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:1105:4502:18059_PairEnd 1.67e-19 100.000 100 87.9 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:1105:26423:19620_CONS 3.11e-35 97.590 89 141 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:1105:24716:23055_CONS 2.37e-36 98.780 89 145 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:1105:12483:23534_CONS 2.37e-36 98.780 89 145 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:1104:20290:19756_PairEnd 6.56e-11 100.000 100 58.4 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Brassicales / Brassicaceae / Arabis / Arabis hirsuta +M01687:476:000000000-LL5F5:1:1103:8194:22770_PairEnd 6.55e-11 100.000 97 58.4 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Lamiales / Orobanchaceae / Orobanche / Orobanche rapum-genistae +M01687:476:000000000-LL5F5:1:1118:10753:8663_PairEnd 2.02e-18 100.000 100 84.2 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Caryophyllales / Polygonaceae / Rumex / Uncertain taxa +M01687:476:000000000-LL5F5:1:1117:24949:20842_PairEnd 1.97e-12 97.368 100 63.9 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Fabales / Fabaceae / Melilotus / Melilotus albus +M01687:476:000000000-LL5F5:1:2118:15163:23154_PairEnd 3.43e-15 100.000 100 73.1 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:2119:16486:24247_PairEnd 7.42e-12 97.222 92 62.1 1 NCBI Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/header_anno_test.out Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,275 @@ +header e_value taxa +M01687:476:000000000-LL5F5:1:1102:11130:1143 4.03e-14 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1102:13335:1146 5.81e-19 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:12788:1545 5.81e-19 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:13185:1948 9.92e-40 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:13225:2515 4.36e-49 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1102:22471:3969 1.77e-42 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1102:15955:7488 2.80e-40 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:19228:8317 2.23e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1102:14493:8350 1.16e-44 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:16191:8877 1.41e-43 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:27669:11105 1.82e-11 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:22839:11494 1.67e-19 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:21193:11910 2.80e-40 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1102:18919:13706 1.28e-38 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1102:26589:14006 6.29e-42 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:10289:14793 1.24e-38 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:24822:16524 2.42e-17 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1102:28596:17833 5.40e-12 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1102:13483:18280 4.40e-38 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1102:25272:18461 4.40e-38 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1102:15717:24257 1.57e-48 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1101:11171:1541 1.01e-50 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1101:16126:2414 1.98e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1101:15009:4289 2.23e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1101:10923:5046 7.90e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1101:18747:5582 7.90e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1101:16806:5706 7.04e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1101:14246:7987 1.26e-38 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1101:4441:8637 8.25e-41 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1101:28373:8843 1.61e-48 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1101:3631:12511 2.80e-40 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1101:5903:13768 5.52e-37 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1101:23445:15198 3.43e-15 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1101:15823:21749 5.88e-37 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1101:5959:23034 1.63e-37 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2115:13381:1125 1.24e-38 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2115:7319:2978 4.36e-49 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2115:14537:5971 5.00e-43 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2115:7337:6060 1.30e-38 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2115:14277:6847 3.51e-39 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2115:29278:10426 3.80e-33 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2115:22699:11733 2.60e-46 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2115:13382:14208 8.25e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2115:14874:17624 1.21e-44 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2115:10194:19290 1.04e-39 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2115:17358:19638 1.56e-37 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2115:23282:21922 1.23e-49 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2115:6114:22641 3.68e-39 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2114:18323:4439 8.25e-41 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2114:26873:8491 1.24e-38 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2114:9623:9524 7.42e-11 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2114:4375:10764 5.21e-43 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2114:25947:12904 2.05e-36 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2114:11225:17246 2.16e-52 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2114:5149:18159 1.04e-39 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2114:3617:18537 3.43e-15 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:23681:2382 3.51e-39 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:18434:2725 3.50e-16 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:17382:7044 4.54e-38 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2113:11038:7053 3.68e-39 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:17807:7739 9.23e-46 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:21639:8430 7.90e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:26903:8535 1.61e-48 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:28207:9930 4.40e-38 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2113:15767:9976 5.40e-12 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2113:10130:10505 2.18e-11 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:27219:12019 3.36e-45 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:9605:12498 2.03e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:6550:12569 3.01e-16 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2113:21421:17653 5.79e-37 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:4495:19503 1.77e-42 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2113:6440:21003 4.24e-14 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:14937:21538 5.79e-37 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2113:14405:22966 1.60e-13 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:12476:22977 1.61e-48 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2113:13111:23469 9.97e-16 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2113:18161:24026 1.51e-14 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2113:8531:24574 6.29e-42 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2112:10888:9779 2.92e-40 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2112:20972:9923 9.92e-40 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2112:6159:10624 1.77e-42 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2112:18843:12214 5.00e-43 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2112:15171:15613 3.37e-16 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2112:14293:17982 3.68e-39 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2112:13697:18019 2.50e-46 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2111:22922:3142 5.71e-48 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2111:22949:3479 8.25e-41 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2111:10415:5421 4.40e-38 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2111:6690:5661 2.80e-40 Viridiplantae / Streptophyta / Magnoliopsida / Ranunculales / Ranunculaceae / Ranunculus / Ranunculus repens +M01687:476:000000000-LL5F5:1:2111:24146:6909 5.79e-37 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2111:3909:7515 1.13e-21 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2111:25541:13036 4.61e-38 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2111:14081:14614 8.38e-17 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2111:7199:15319 4.52e-49 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2111:20522:15943 8.99e-23 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2111:7375:19519 1.24e-38 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2111:4793:21161 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2111:15567:24924 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2110:17164:1410 3.46e-50 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2110:19698:1453 4.52e-49 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2110:7909:3420 4.03e-14 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2110:2690:9370 9.97e-16 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2110:14633:9997 1.40e-14 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2110:9002:11431 2.92e-40 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2110:25186:12729 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2110:4344:16421 6.73e-42 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2110:23262:19404 3.97e-44 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2109:23100:3667 8.38e-17 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2109:23088:3681 1.61e-48 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2109:20864:3975 5.40e-12 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2109:19423:6855 7.90e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2109:16113:7093 2.92e-40 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2109:10009:16822 2.92e-40 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2109:9567:24650 5.00e-43 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2108:7941:4646 1.57e-48 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2108:16474:8049 7.32e-30 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2108:5958:9567 4.03e-14 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2108:28490:9588 2.57e-35 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2108:2181:11398 3.51e-39 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2108:22920:11501 1.24e-38 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +M01687:476:000000000-LL5F5:1:2108:9628:13114 1.77e-42 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2108:22580:15430 4.86e-26 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2108:13958:20555 1.82e-11 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2106:7499:7969 4.70e-13 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2106:9101:9852 8.38e-17 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +M01687:476:000000000-LL5F5:1:2106:17843:10740 1.63e-37 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2106:2498:11108 6.99e-18 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2106:16878:22000 1.63e-37 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2107:10063:2565 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2107:6847:4358 9.97e-16 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2107:2057:12797 1.18e-14 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2107:14387:18220 5.65e-48 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2107:27607:18975 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2107:14776:20326 8.25e-41 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:2107:24711:23924 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2104:12961:4800 1.60e-12 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2104:5380:9551 8.38e-17 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2104:17022:10775 7.35e-24 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:2104:8956:12872 2.36e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2104:23747:17459 3.05e-34 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2104:24412:20176 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2104:16914:23064 1.08e-33 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2105:6171:7639 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2105:2416:9744 5.65e-48 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2105:2863:18586 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2102:21709:6420 1.19e-33 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2102:2353:15113 1.82e-11 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +M01687:476:000000000-LL5F5:1:2102:27115:20080 1.63e-37 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2102:14343:21991 1.34e-32 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2103:20304:1112 1.60e-12 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2103:14154:1872 5.40e-12 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2103:2662:9384 6.99e-18 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2103:10841:11211 2.42e-17 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2103:13538:14731 4.18e-21 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2103:13806:17129 5.81e-19 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2103:10502:19610 1.19e-33 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2103:18023:23300 1.67e-19 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2103:20500:24188 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2116:6764:10062 9.46e-29 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2116:2076:11869 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2116:26260:14873 4.03e-14 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2116:22321:20509 6.90e-36 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2116:25377:22820 2.74e-29 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2117:16550:1707 1.26e-38 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2117:21984:3229 6.56e-11 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:26249:4389 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:22228:7576 3.32e-34 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:3957:9107 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:10511:9330 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:24955:12422 6.41e-12 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:4289:14258 1.13e-21 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:2990:16170 5.99e-25 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:7442:19245 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +M01687:476:000000000-LL5F5:1:2117:8314:24221 5.99e-25 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1119:25600:4095 5.99e-25 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1119:3079:12038 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1119:21887:13405 1.38e-13 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1119:11147:14184 5.99e-25 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1119:20358:22142 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1119:16122:22528 5.40e-12 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2101:23296:4646 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2101:22242:10346 2.79e-23 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2101:26251:10659 2.79e-23 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2101:14394:10878 2.79e-23 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2101:3247:14341 4.70e-13 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2101:12529:15987 6.29e-25 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2101:9404:16143 5.99e-25 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2101:17516:19320 4.70e-13 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2101:23217:22634 2.26e-24 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1115:21275:1596 7.77e-18 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1115:19626:2218 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +M01687:476:000000000-LL5F5:1:1115:19708:5047 8.38e-17 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1115:22587:5393 4.86e-26 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1115:15621:11837 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Betulaceae / Alnus / Alnus incana +M01687:476:000000000-LL5F5:1:1116:23988:4105 2.89e-16 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1116:26996:7522 2.42e-17 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1116:23265:7881 1.38e-13 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1116:8932:8728 1.34e-32 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1116:14115:23793 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1114:22361:1319 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1114:6066:9920 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1114:18152:14124 5.81e-19 Viridiplantae / Streptophyta / Magnoliopsida / Uncertain taxa / Uncertain taxa / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1114:25932:15251 2.60e-46 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1114:6094:23341 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1113:14045:7750 1.20e-27 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1113:23326:10485 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1113:23287:11896 1.82e-11 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1113:20464:12378 1.30e-38 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1113:2405:16693 5.52e-37 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1113:3759:17512 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1113:13402:21744 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1113:14308:24861 5.79e-37 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +M01687:476:000000000-LL5F5:1:1112:12853:4344 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1112:5580:6653 2.02e-18 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1112:19429:8331 2.63e-29 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1112:9172:20701 4.80e-20 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Pyrus / Pyrus communis +M01687:476:000000000-LL5F5:1:1111:13633:1411 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1111:17345:6235 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1111:24916:9507 7.90e-41 Viridiplantae / Streptophyta / Magnoliopsida / Solanales / Solanaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1111:3087:10555 2.80e-29 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1111:12159:16382 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1110:11883:3947 1.21e-33 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1110:27035:8073 1.63e-37 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1110:6548:11512 1.38e-13 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1110:23609:16193 2.42e-17 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1110:23491:24128 3.13e-16 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1109:20616:7368 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +M01687:476:000000000-LL5F5:1:1109:22029:8132 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1109:24885:8423 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1109:21340:10090 3.47e-28 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1109:4665:11710 1.18e-14 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1108:7517:3767 5.22e-13 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +M01687:476:000000000-LL5F5:1:1108:27863:8966 1.38e-20 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1108:26015:9940 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1108:7962:13856 2.10e-24 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1108:29255:14150 1.63e-37 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1107:23750:10921 2.80e-40 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1107:15062:12300 7.35e-24 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1107:2760:14128 1.19e-33 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1107:14476:16710 2.58e-29 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1107:21011:20115 2.60e-46 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1107:10169:24039 2.69e-29 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1106:5007:5997 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1106:24718:7318 7.31e-47 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1106:6895:11621 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1106:15855:22707 1.60e-12 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1106:8642:24564 3.43e-15 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1105:22302:5860 3.40e-45 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1105:17783:9301 2.63e-29 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +M01687:476:000000000-LL5F5:1:1105:21554:11467 1.60e-12 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1105:26827:11694 2.08e-30 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1105:16893:17805 1.19e-33 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1104:6917:12489 1.26e-38 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1104:2893:12757 1.63e-37 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1104:6093:13533 5.65e-48 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1104:8893:14508 2.42e-17 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1104:15290:21784 1.18e-14 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1103:4180:5673 1.19e-33 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1103:15265:8121 1.19e-33 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1103:10055:13671 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1103:16680:16940 1.56e-37 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1103:13348:23457 3.95e-21 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1118:7891:7134 1.63e-37 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:1118:4428:9587 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1118:27420:12074 2.57e-23 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1118:14016:12860 1.38e-13 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1118:4347:17342 5.56e-32 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:1117:21934:5813 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +M01687:476:000000000-LL5F5:1:1117:23204:10746 8.25e-41 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:1117:9292:15028 2.33e-41 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2118:11429:1206 1.08e-39 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +M01687:476:000000000-LL5F5:1:2118:12113:17263 3.40e-28 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +M01687:476:000000000-LL5F5:1:2119:22772:1664 1.67e-31 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +M01687:476:000000000-LL5F5:1:2119:25128:7209 6.99e-18 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/input1.clstr Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,4997 @@ +>Cluster 0 +0 98nt, >M01687:476:000000000-LL5F5:1:2115:26447:7735:3... at +/98.98% +1 98nt, >M01687:476:000000000-LL5F5:1:1102:15697:1389:8501... at +/100.00% +2 79nt, >M01687:476:000000000-LL5F5:1:1102:8014:1733:18... at +/98.73% +3 99nt, >M01687:476:000000000-LL5F5:1:1102:9935:4644:496... at +/98.99% +4 98nt, >M01687:476:000000000-LL5F5:1:1102:14956:5173:6... at +/98.98% +5 98nt, >M01687:476:000000000-LL5F5:1:1102:18148:5343:62... at +/98.98% +6 98nt, >M01687:476:000000000-LL5F5:1:1102:18967:6017:7... at +/98.98% +7 94nt, >M01687:476:000000000-LL5F5:1:1102:10009:6138:9... at +/98.94% +8 77nt, >M01687:476:000000000-LL5F5:1:1102:17622:8386:22... at +/100.00% +9 98nt, >M01687:476:000000000-LL5F5:1:1102:24057:8815:5... at +/98.98% +10 97nt, >M01687:476:000000000-LL5F5:1:1102:28277:10429:224... at +/100.00% +11 97nt, >M01687:476:000000000-LL5F5:1:1102:23646:10792:31... at +/100.00% +12 97nt, >M01687:476:000000000-LL5F5:1:1102:4264:10829:3... at +/100.00% +13 98nt, >M01687:476:000000000-LL5F5:1:1102:12247:10892:37... at +/98.98% +14 98nt, >M01687:476:000000000-LL5F5:1:1102:2653:10894:15... at +/98.98% +15 98nt, >M01687:476:000000000-LL5F5:1:1102:7438:10940:6... at +/98.98% +16 97nt, >M01687:476:000000000-LL5F5:1:1102:3265:11056:10... at +/100.00% +17 98nt, >M01687:476:000000000-LL5F5:1:1102:19657:11463:18... at +/98.98% +18 98nt, >M01687:476:000000000-LL5F5:1:1102:19389:11743:1... at +/97.96% +19 98nt, >M01687:476:000000000-LL5F5:1:1102:24907:12220:3... at +/98.98% +20 93nt, >M01687:476:000000000-LL5F5:1:1102:8837:13105:35... at +/100.00% +21 98nt, >M01687:476:000000000-LL5F5:1:1102:7856:13853:8... at +/98.98% +22 98nt, >M01687:476:000000000-LL5F5:1:1102:28904:17266:8... at +/98.98% +23 98nt, >M01687:476:000000000-LL5F5:1:1102:25643:18307:81... at +/98.98% +24 88nt, >M01687:476:000000000-LL5F5:1:1102:27151:19146:13... at +/100.00% +25 98nt, >M01687:476:000000000-LL5F5:1:1102:8280:20081:44... at +/98.98% +26 98nt, >M01687:476:000000000-LL5F5:1:1102:16267:21233:22... at +/98.98% +27 98nt, >M01687:476:000000000-LL5F5:1:1102:5351:21607:3... at +/98.98% +28 98nt, >M01687:476:000000000-LL5F5:1:1102:19955:21830:7... at +/98.98% +29 85nt, >M01687:476:000000000-LL5F5:1:1102:24303:22873:4... at +/100.00% +30 98nt, >M01687:476:000000000-LL5F5:1:1101:23554:3184:1... at +/98.98% +31 98nt, >M01687:476:000000000-LL5F5:1:1101:13259:3571:16... at +/98.98% +32 99nt, >M01687:476:000000000-LL5F5:1:1101:13578:5640:3... at +/97.98% +33 98nt, >M01687:476:000000000-LL5F5:1:1101:19927:5708:1... at +/96.94% +34 97nt, >M01687:476:000000000-LL5F5:1:1101:6387:6268:1... at +/98.97% +35 95nt, >M01687:476:000000000-LL5F5:1:1101:3434:7086:6... at +/100.00% +36 98nt, >M01687:476:000000000-LL5F5:1:1101:8411:7196:4... at +/98.98% +37 98nt, >M01687:476:000000000-LL5F5:1:1101:20587:7233:38... at +/98.98% +38 98nt, >M01687:476:000000000-LL5F5:1:1101:24095:7951:3... at +/98.98% +39 98nt, >M01687:476:000000000-LL5F5:1:1101:27271:8277:14... at +/98.98% +40 98nt, >M01687:476:000000000-LL5F5:1:1101:6721:8542:8... at +/98.98% +41 97nt, >M01687:476:000000000-LL5F5:1:1101:19328:11368:1... at +/98.97% +42 98nt, >M01687:476:000000000-LL5F5:1:1101:5511:11480:4... at +/98.98% +43 98nt, >M01687:476:000000000-LL5F5:1:1101:7253:12060:2... at +/97.96% +44 98nt, >M01687:476:000000000-LL5F5:1:1101:5119:12235:3... at +/98.98% +45 80nt, >M01687:476:000000000-LL5F5:1:1101:15732:12847:1... at +/100.00% +46 98nt, >M01687:476:000000000-LL5F5:1:1101:25755:13111:4... at +/98.98% +47 98nt, >M01687:476:000000000-LL5F5:1:1101:5073:13655:11... at +/98.98% +48 98nt, >M01687:476:000000000-LL5F5:1:1101:22086:13829:6... at +/98.98% +49 99nt, >M01687:476:000000000-LL5F5:1:1101:14579:14076:1... at +/97.98% +50 98nt, >M01687:476:000000000-LL5F5:1:1101:28104:14755:4... at +/98.98% +51 98nt, >M01687:476:000000000-LL5F5:1:1101:26847:14940:10... at +/98.98% +52 98nt, >M01687:476:000000000-LL5F5:1:1101:9519:14986:19... at +/98.98% +53 98nt, >M01687:476:000000000-LL5F5:1:1101:20895:15159:4... at +/98.98% +54 82nt, >M01687:476:000000000-LL5F5:1:1101:6389:15315:2... at +/100.00% +55 97nt, >M01687:476:000000000-LL5F5:1:1101:3714:17195:15... at +/100.00% +56 98nt, >M01687:476:000000000-LL5F5:1:1101:24186:17444:3... at +/98.98% +57 98nt, >M01687:476:000000000-LL5F5:1:1101:25763:17725:3... at +/98.98% +58 98nt, >M01687:476:000000000-LL5F5:1:1101:11359:18105:11... at +/98.98% +59 97nt, >M01687:476:000000000-LL5F5:1:1101:25702:18488:14... at +/100.00% +60 94nt, >M01687:476:000000000-LL5F5:1:1101:20751:21052:10... at +/100.00% +61 97nt, >M01687:476:000000000-LL5F5:1:1101:21149:22420:13... at +/100.00% +62 98nt, >M01687:476:000000000-LL5F5:1:1101:16797:22590:4... at +/98.98% +63 78nt, >M01687:476:000000000-LL5F5:1:1101:17032:24257:17... at +/100.00% +64 98nt, >M01687:476:000000000-LL5F5:1:2115:8673:2437:1... at +/97.96% +65 98nt, >M01687:476:000000000-LL5F5:1:2115:4673:5659:10... at +/98.98% +66 98nt, >M01687:476:000000000-LL5F5:1:2115:29090:9236:8... at +/98.98% +67 97nt, >M01687:476:000000000-LL5F5:1:2115:28829:9324:5... at +/100.00% +68 99nt, >M01687:476:000000000-LL5F5:1:2115:10795:9888:2... at +/97.98% +69 98nt, >M01687:476:000000000-LL5F5:1:2115:12633:10074:7... at +/98.98% +70 98nt, >M01687:476:000000000-LL5F5:1:2115:10367:11899:2... at +/98.98% +71 97nt, >M01687:476:000000000-LL5F5:1:2115:26647:11990:5... at +/98.97% +72 98nt, >M01687:476:000000000-LL5F5:1:2115:26187:13958:9... at +/98.98% +73 97nt, >M01687:476:000000000-LL5F5:1:2115:10654:14049:1... at +/98.97% +74 98nt, >M01687:476:000000000-LL5F5:1:2115:5242:14278:9... at +/98.98% +75 98nt, >M01687:476:000000000-LL5F5:1:2115:22457:14334:7... at +/98.98% +76 99nt, >M01687:476:000000000-LL5F5:1:2115:11022:14406:2... at +/97.98% +77 83nt, >M01687:476:000000000-LL5F5:1:2115:7982:14767:27... at +/100.00% +78 98nt, >M01687:476:000000000-LL5F5:1:2115:14424:15194:7... at +/98.98% +79 92nt, >M01687:476:000000000-LL5F5:1:2115:2125:16060:1... at +/96.74% +80 98nt, >M01687:476:000000000-LL5F5:1:2115:13445:16688:2... at +/97.96% +81 98nt, >M01687:476:000000000-LL5F5:1:2115:24025:17598:5... at +/98.98% +82 98nt, >M01687:476:000000000-LL5F5:1:2115:7856:17879:3... at +/98.98% +83 98nt, >M01687:476:000000000-LL5F5:1:2115:12326:18294:1... at +/97.96% +84 99nt, >M01687:476:000000000-LL5F5:1:2115:8162:18525:2... at +/97.98% +85 98nt, >M01687:476:000000000-LL5F5:1:2115:22074:18615:3... at +/98.98% +86 98nt, >M01687:476:000000000-LL5F5:1:2115:26652:19711:2... at +/98.98% +87 98nt, >M01687:476:000000000-LL5F5:1:2115:8767:20700:1... at +/97.96% +88 91nt, >M01687:476:000000000-LL5F5:1:2115:4312:20702:29... at +/98.90% +89 98nt, >M01687:476:000000000-LL5F5:1:2115:16293:20974:7... at +/98.98% +90 97nt, >M01687:476:000000000-LL5F5:1:2114:7957:2958:1... at +/98.97% +91 87nt, >M01687:476:000000000-LL5F5:1:2114:18828:2973:1... at +/97.70% +92 99nt, >M01687:476:000000000-LL5F5:1:2114:9101:5200:1... at +/97.98% +93 98nt, >M01687:476:000000000-LL5F5:1:2114:19795:7535:1... at +/98.98% +94 98nt, >M01687:476:000000000-LL5F5:1:2114:6446:7594:2... at +/98.98% +95 98nt, >M01687:476:000000000-LL5F5:1:2114:11165:7950:2... at +/97.96% +96 98nt, >M01687:476:000000000-LL5F5:1:2114:21099:9294:3... at +/98.98% +97 97nt, >M01687:476:000000000-LL5F5:1:2114:10166:9309:2... at +/100.00% +98 99nt, >M01687:476:000000000-LL5F5:1:2114:21801:9625:1... at +/97.98% +99 98nt, >M01687:476:000000000-LL5F5:1:2114:16511:9917:3... at +/98.98% +100 99nt, >M01687:476:000000000-LL5F5:1:2114:12040:10354:1... at +/98.99% +101 98nt, >M01687:476:000000000-LL5F5:1:2114:22299:12158:1... at +/98.98% +102 98nt, >M01687:476:000000000-LL5F5:1:2114:28634:12425:1... at +/98.98% +103 98nt, >M01687:476:000000000-LL5F5:1:2114:24252:15147:7... at +/98.98% +104 98nt, >M01687:476:000000000-LL5F5:1:2114:18908:16068:19... at +/98.98% +105 98nt, >M01687:476:000000000-LL5F5:1:2114:19032:16282:2... at +/98.98% +106 98nt, >M01687:476:000000000-LL5F5:1:2114:17615:16291:5... at +/98.98% +107 98nt, >M01687:476:000000000-LL5F5:1:2114:21061:17886:15... at +/98.98% +108 96nt, >M01687:476:000000000-LL5F5:1:2114:10473:18071:1... at +/98.96% +109 98nt, >M01687:476:000000000-LL5F5:1:2114:25546:18431:4... at +/98.98% +110 98nt, >M01687:476:000000000-LL5F5:1:2114:17270:20830:4... at +/98.98% +111 98nt, >M01687:476:000000000-LL5F5:1:2114:20252:20949:5... at +/98.98% +112 76nt, >M01687:476:000000000-LL5F5:1:2114:12299:21776:1... at +/98.68% +113 98nt, >M01687:476:000000000-LL5F5:1:2114:5580:22491:2... at +/98.98% +114 98nt, >M01687:476:000000000-LL5F5:1:2114:10272:22682:7... at +/98.98% +115 98nt, >M01687:476:000000000-LL5F5:1:2113:22095:2481:1... at +/97.96% +116 92nt, >M01687:476:000000000-LL5F5:1:2113:20906:3662:15... at +/97.83% +117 101nt, >M01687:476:000000000-LL5F5:1:2113:14106:4182:1... * +118 98nt, >M01687:476:000000000-LL5F5:1:2113:15330:5460:6... at +/98.98% +119 98nt, >M01687:476:000000000-LL5F5:1:2113:23778:8762:6... at +/98.98% +120 76nt, >M01687:476:000000000-LL5F5:1:2113:23556:8956:9... at +/100.00% +121 98nt, >M01687:476:000000000-LL5F5:1:2113:20807:9682:8... at +/98.98% +122 95nt, >M01687:476:000000000-LL5F5:1:2113:7279:9974:1... at +/97.89% +123 98nt, >M01687:476:000000000-LL5F5:1:2113:19510:11059:3... at +/98.98% +124 98nt, >M01687:476:000000000-LL5F5:1:2113:15609:12305:11... at +/98.98% +125 98nt, >M01687:476:000000000-LL5F5:1:2113:25900:12549:1... at +/98.98% +126 98nt, >M01687:476:000000000-LL5F5:1:2113:24397:12648:2... at +/98.98% +127 98nt, >M01687:476:000000000-LL5F5:1:2113:8787:14747:5... at +/98.98% +128 97nt, >M01687:476:000000000-LL5F5:1:2113:8754:16853:1... at +/100.00% +129 97nt, >M01687:476:000000000-LL5F5:1:2113:5113:19196:3... at +/100.00% +130 98nt, >M01687:476:000000000-LL5F5:1:2113:26676:19773:1... at +/97.96% +131 98nt, >M01687:476:000000000-LL5F5:1:2113:10779:22579:1... at +/97.96% +132 98nt, >M01687:476:000000000-LL5F5:1:2113:15847:23530:3... at +/98.98% +133 98nt, >M01687:476:000000000-LL5F5:1:2113:14800:24694:5... at +/98.98% +134 89nt, >M01687:476:000000000-LL5F5:1:2112:15551:3613:8... at +/100.00% +135 97nt, >M01687:476:000000000-LL5F5:1:2112:14385:4723:2... at +/98.97% +136 98nt, >M01687:476:000000000-LL5F5:1:2112:14257:5772:1... at +/97.96% +137 97nt, >M01687:476:000000000-LL5F5:1:2112:23381:10391:3... at +/100.00% +138 96nt, >M01687:476:000000000-LL5F5:1:2112:8052:10835:2... at +/97.92% +139 98nt, >M01687:476:000000000-LL5F5:1:2112:20049:11157:4... at +/98.98% +140 91nt, >M01687:476:000000000-LL5F5:1:2112:29510:12481:1... at +/97.80% +141 98nt, >M01687:476:000000000-LL5F5:1:2112:2581:12489:3... at +/98.98% +142 98nt, >M01687:476:000000000-LL5F5:1:2112:7334:12726:2... at +/98.98% +143 98nt, >M01687:476:000000000-LL5F5:1:2112:20488:14116:11... at +/98.98% +144 98nt, >M01687:476:000000000-LL5F5:1:2112:20068:14271:4... at +/98.98% +145 97nt, >M01687:476:000000000-LL5F5:1:2112:6924:14365:7... at +/100.00% +146 92nt, >M01687:476:000000000-LL5F5:1:2112:22318:16709:8... at +/100.00% +147 94nt, >M01687:476:000000000-LL5F5:1:2112:10057:17269:1... at +/97.87% +148 98nt, >M01687:476:000000000-LL5F5:1:2112:26695:19056:1... at +/97.96% +149 98nt, >M01687:476:000000000-LL5F5:1:2112:7357:19927:3... at +/98.98% +150 89nt, >M01687:476:000000000-LL5F5:1:2112:15243:20535:6... at +/98.88% +151 98nt, >M01687:476:000000000-LL5F5:1:2112:23961:23218:6... at +/98.98% +152 99nt, >M01687:476:000000000-LL5F5:1:2112:19928:23897:1... at +/97.98% +153 98nt, >M01687:476:000000000-LL5F5:1:2111:22448:2742:4... at +/98.98% +154 98nt, >M01687:476:000000000-LL5F5:1:2111:9060:2888:10... at +/98.98% +155 98nt, >M01687:476:000000000-LL5F5:1:2111:9650:3067:1... at +/98.98% +156 97nt, >M01687:476:000000000-LL5F5:1:2111:8155:3977:1... at +/98.97% +157 98nt, >M01687:476:000000000-LL5F5:1:2111:24883:4218:2... at +/98.98% +158 98nt, >M01687:476:000000000-LL5F5:1:2111:3809:6137:1... at +/97.96% +159 79nt, >M01687:476:000000000-LL5F5:1:2111:16933:6990:11... at +/100.00% +160 77nt, >M01687:476:000000000-LL5F5:1:2111:13646:7906:1... at +/100.00% +161 99nt, >M01687:476:000000000-LL5F5:1:2111:12353:8190:2... at +/98.99% +162 98nt, >M01687:476:000000000-LL5F5:1:2111:27141:8309:4... at +/98.98% +163 77nt, >M01687:476:000000000-LL5F5:1:2111:21124:9391:1... at +/98.70% +164 99nt, >M01687:476:000000000-LL5F5:1:2111:16414:10852:1... at +/97.98% +165 98nt, >M01687:476:000000000-LL5F5:1:2111:26452:11553:1... at +/98.98% +166 98nt, >M01687:476:000000000-LL5F5:1:2111:16240:14027:4... at +/98.98% +167 98nt, >M01687:476:000000000-LL5F5:1:2111:8670:14499:5... at +/98.98% +168 97nt, >M01687:476:000000000-LL5F5:1:2111:15401:16528:1... at +/98.97% +169 98nt, >M01687:476:000000000-LL5F5:1:2111:26742:16582:7... at +/98.98% +170 98nt, >M01687:476:000000000-LL5F5:1:2111:18692:16692:8... at +/98.98% +171 82nt, >M01687:476:000000000-LL5F5:1:2111:11240:23035:2... at +/98.78% +172 97nt, >M01687:476:000000000-LL5F5:1:2111:24357:23169:3... at +/100.00% +173 99nt, >M01687:476:000000000-LL5F5:1:2110:8800:2807:1... at +/100.00% +174 98nt, >M01687:476:000000000-LL5F5:1:2110:10171:3324:3... at +/98.98% +175 98nt, >M01687:476:000000000-LL5F5:1:2110:17403:4521:2... at +/98.98% +176 81nt, >M01687:476:000000000-LL5F5:1:2110:7295:6255:4... at +/100.00% +177 98nt, >M01687:476:000000000-LL5F5:1:2110:3418:6704:1... at +/97.96% +178 97nt, >M01687:476:000000000-LL5F5:1:2110:10784:6751:5... at +/98.97% +179 99nt, >M01687:476:000000000-LL5F5:1:2110:18035:6998:1... at +/97.98% +180 96nt, >M01687:476:000000000-LL5F5:1:2110:18771:7217:1... at +/98.96% +181 98nt, >M01687:476:000000000-LL5F5:1:2110:11511:11029:1... at +/98.98% +182 99nt, >M01687:476:000000000-LL5F5:1:2110:4685:11911:1... at +/97.98% +183 98nt, >M01687:476:000000000-LL5F5:1:2110:10607:13112:1... at +/98.98% +184 98nt, >M01687:476:000000000-LL5F5:1:2110:18752:15467:6... at +/98.98% +185 97nt, >M01687:476:000000000-LL5F5:1:2110:10387:18213:6... at +/100.00% +186 97nt, >M01687:476:000000000-LL5F5:1:2110:15229:18268:7... at +/98.97% +187 83nt, >M01687:476:000000000-LL5F5:1:2110:11263:21811:1... at +/98.80% +188 97nt, >M01687:476:000000000-LL5F5:1:2110:6686:22284:1... at +/98.97% +189 99nt, >M01687:476:000000000-LL5F5:1:2110:8972:22333:1... at +/98.99% +190 98nt, >M01687:476:000000000-LL5F5:1:2110:13886:22606:2... at +/98.98% +191 80nt, >M01687:476:000000000-LL5F5:1:2110:24387:22806:6... at +/100.00% +192 91nt, >M01687:476:000000000-LL5F5:1:2110:14978:24477:1... at +/97.80% +193 98nt, >M01687:476:000000000-LL5F5:1:2110:11415:24830:2... at +/98.98% +194 98nt, >M01687:476:000000000-LL5F5:1:2109:7824:3888:1... at +/97.96% +195 97nt, >M01687:476:000000000-LL5F5:1:2109:4766:4535:2... at +/98.97% +196 97nt, >M01687:476:000000000-LL5F5:1:2109:22588:8290:3... at +/100.00% +197 99nt, >M01687:476:000000000-LL5F5:1:2109:17163:9016:1... at +/97.98% +198 98nt, >M01687:476:000000000-LL5F5:1:2109:4244:10642:1... at +/97.96% +199 97nt, >M01687:476:000000000-LL5F5:1:2109:16355:10727:1... at +/98.97% +200 97nt, >M01687:476:000000000-LL5F5:1:2109:4520:12446:1... at +/98.97% +201 97nt, >M01687:476:000000000-LL5F5:1:2109:18200:13895:1... at +/98.97% +202 98nt, >M01687:476:000000000-LL5F5:1:2109:8035:14528:2... at +/98.98% +203 83nt, >M01687:476:000000000-LL5F5:1:2109:14288:18723:1... at +/98.80% +204 98nt, >M01687:476:000000000-LL5F5:1:2109:27010:20379:2... at +/98.98% +205 99nt, >M01687:476:000000000-LL5F5:1:2109:9685:21285:1... at +/97.98% +206 90nt, >M01687:476:000000000-LL5F5:1:2109:11849:22262:3... at +/98.89% +207 99nt, >M01687:476:000000000-LL5F5:1:2109:14901:22467:1... at +/97.98% +208 85nt, >M01687:476:000000000-LL5F5:1:2109:24010:22701:3... at +/98.82% +209 98nt, >M01687:476:000000000-LL5F5:1:2109:10952:23265:1... at +/98.98% +210 98nt, >M01687:476:000000000-LL5F5:1:2109:9716:23285:2... at +/98.98% +211 98nt, >M01687:476:000000000-LL5F5:1:2109:16181:23844:1... at +/97.96% +212 96nt, >M01687:476:000000000-LL5F5:1:2108:10132:3578:4... at +/100.00% +213 97nt, >M01687:476:000000000-LL5F5:1:2108:5522:3941:1... at +/98.97% +214 98nt, >M01687:476:000000000-LL5F5:1:2108:9473:4603:5... at +/98.98% +215 98nt, >M01687:476:000000000-LL5F5:1:2108:22379:5596:2... at +/98.98% +216 93nt, >M01687:476:000000000-LL5F5:1:2108:9656:6178:1... at +/98.92% +217 94nt, >M01687:476:000000000-LL5F5:1:2108:22809:8820:1... at +/100.00% +218 97nt, >M01687:476:000000000-LL5F5:1:2108:15832:9128:2... at +/100.00% +219 98nt, >M01687:476:000000000-LL5F5:1:2108:18606:9642:3... at +/98.98% +220 97nt, >M01687:476:000000000-LL5F5:1:2108:9416:10964:1... at +/97.94% +221 98nt, >M01687:476:000000000-LL5F5:1:2108:7083:11163:6... at +/98.98% +222 79nt, >M01687:476:000000000-LL5F5:1:2108:5902:11214:1... at +/97.47% +223 98nt, >M01687:476:000000000-LL5F5:1:2108:12218:11425:4... at +/98.98% +224 96nt, >M01687:476:000000000-LL5F5:1:2108:11549:11651:5... at +/100.00% +225 98nt, >M01687:476:000000000-LL5F5:1:2108:23044:13634:3... at +/98.98% +226 98nt, >M01687:476:000000000-LL5F5:1:2108:14233:14121:1... at +/97.96% +227 97nt, >M01687:476:000000000-LL5F5:1:2108:10669:15655:7... at +/98.97% +228 98nt, >M01687:476:000000000-LL5F5:1:2108:8193:16872:1... at +/98.98% +229 98nt, >M01687:476:000000000-LL5F5:1:2108:27438:16990:1... at +/97.96% +230 97nt, >M01687:476:000000000-LL5F5:1:2108:3540:19235:3... at +/100.00% +231 80nt, >M01687:476:000000000-LL5F5:1:2108:11311:21507:1... at +/98.75% +232 98nt, >M01687:476:000000000-LL5F5:1:2108:16032:21759:1... at +/98.98% +233 97nt, >M01687:476:000000000-LL5F5:1:2106:9494:1208:2... at +/100.00% +234 78nt, >M01687:476:000000000-LL5F5:1:2106:25822:6425:2... at +/98.72% +235 96nt, >M01687:476:000000000-LL5F5:1:2106:9193:6935:1... at +/100.00% +236 99nt, >M01687:476:000000000-LL5F5:1:2106:3362:7211:1... at +/98.99% +237 98nt, >M01687:476:000000000-LL5F5:1:2106:7140:9273:2... at +/98.98% +238 98nt, >M01687:476:000000000-LL5F5:1:2106:17651:9416:3... at +/98.98% +239 98nt, >M01687:476:000000000-LL5F5:1:2106:16183:10910:1... at +/98.98% +240 97nt, >M01687:476:000000000-LL5F5:1:2106:9612:11265:1... at +/98.97% +241 97nt, >M01687:476:000000000-LL5F5:1:2106:14064:11995:1... at +/97.94% +242 81nt, >M01687:476:000000000-LL5F5:1:2106:4944:13793:1... at +/97.53% +243 98nt, >M01687:476:000000000-LL5F5:1:2106:11833:15090:1... at +/98.98% +244 97nt, >M01687:476:000000000-LL5F5:1:2106:7269:18374:1... at +/98.97% +245 99nt, >M01687:476:000000000-LL5F5:1:2106:4833:18528:5... at +/98.99% +246 87nt, >M01687:476:000000000-LL5F5:1:2106:13433:19133:1... at +/100.00% +247 98nt, >M01687:476:000000000-LL5F5:1:2106:8548:19644:1... at +/97.96% +248 98nt, >M01687:476:000000000-LL5F5:1:2106:3815:20258:1... at +/97.96% +249 94nt, >M01687:476:000000000-LL5F5:1:2106:18162:20401:1... at +/100.00% +250 98nt, >M01687:476:000000000-LL5F5:1:2106:25030:21151:1... at +/98.98% +251 86nt, >M01687:476:000000000-LL5F5:1:2106:13188:22359:4... at +/100.00% +252 99nt, >M01687:476:000000000-LL5F5:1:2106:17693:22856:1... at +/97.98% +253 94nt, >M01687:476:000000000-LL5F5:1:2107:13487:1261:1... at +/98.94% +254 97nt, >M01687:476:000000000-LL5F5:1:2107:14667:3904:2... at +/98.97% +255 95nt, >M01687:476:000000000-LL5F5:1:2107:23737:5444:1... at +/98.95% +256 89nt, >M01687:476:000000000-LL5F5:1:2107:28455:9556:1... at +/97.75% +257 97nt, >M01687:476:000000000-LL5F5:1:2107:25279:9645:1... at +/98.97% +258 98nt, >M01687:476:000000000-LL5F5:1:2107:9942:11621:3... at +/98.98% +259 92nt, >M01687:476:000000000-LL5F5:1:2107:7482:12519:1... at +/100.00% +260 91nt, >M01687:476:000000000-LL5F5:1:2107:1745:12575:1... at +/97.80% +261 98nt, >M01687:476:000000000-LL5F5:1:2107:20853:12586:1... at +/98.98% +262 97nt, >M01687:476:000000000-LL5F5:1:2107:14328:12904:2... at +/100.00% +263 84nt, >M01687:476:000000000-LL5F5:1:2107:19476:14043:4... at +/100.00% +264 98nt, >M01687:476:000000000-LL5F5:1:2107:17345:14335:1... at +/97.96% +265 98nt, >M01687:476:000000000-LL5F5:1:2107:22538:14853:1... at +/98.98% +266 98nt, >M01687:476:000000000-LL5F5:1:2107:25994:17422:1... at +/97.96% +267 93nt, >M01687:476:000000000-LL5F5:1:2107:22341:21100:1... at +/98.92% +268 98nt, >M01687:476:000000000-LL5F5:1:2107:17765:23515:3... at +/98.98% +269 98nt, >M01687:476:000000000-LL5F5:1:2104:6024:5563:1... at +/98.98% +270 95nt, >M01687:476:000000000-LL5F5:1:2104:25321:5878:1... at +/98.95% +271 97nt, >M01687:476:000000000-LL5F5:1:2104:6609:6092:2... at +/100.00% +272 98nt, >M01687:476:000000000-LL5F5:1:2104:24982:9584:1... at +/97.96% +273 98nt, >M01687:476:000000000-LL5F5:1:2104:23382:12545:4... at +/98.98% +274 85nt, >M01687:476:000000000-LL5F5:1:2104:24526:15286:1... at +/98.82% +275 98nt, >M01687:476:000000000-LL5F5:1:2104:9212:16308:5... at +/98.98% +276 97nt, >M01687:476:000000000-LL5F5:1:2104:23353:17600:1... at +/98.97% +277 98nt, >M01687:476:000000000-LL5F5:1:2104:13608:17795:1... at +/98.98% +278 98nt, >M01687:476:000000000-LL5F5:1:2104:20625:21669:7... at +/98.98% +279 97nt, >M01687:476:000000000-LL5F5:1:2105:12042:2715:1... at +/98.97% +280 98nt, >M01687:476:000000000-LL5F5:1:2105:23588:4160:2... at +/98.98% +281 98nt, >M01687:476:000000000-LL5F5:1:2105:24445:4599:1... at +/98.98% +282 98nt, >M01687:476:000000000-LL5F5:1:2105:7293:4848:1... at +/98.98% +283 87nt, >M01687:476:000000000-LL5F5:1:2105:5601:8892:4... at +/100.00% +284 98nt, >M01687:476:000000000-LL5F5:1:2105:21805:11477:4... at +/98.98% +285 98nt, >M01687:476:000000000-LL5F5:1:2105:5521:12407:1... at +/98.98% +286 98nt, >M01687:476:000000000-LL5F5:1:2105:7071:17487:5... at +/98.98% +287 98nt, >M01687:476:000000000-LL5F5:1:2105:18867:18228:1... at +/97.96% +288 98nt, >M01687:476:000000000-LL5F5:1:2105:12702:21313:1... at +/98.98% +289 96nt, >M01687:476:000000000-LL5F5:1:2105:15353:23086:1... at +/98.96% +290 99nt, >M01687:476:000000000-LL5F5:1:2102:20811:4257:3... at +/97.98% +291 98nt, >M01687:476:000000000-LL5F5:1:2102:14455:5675:8... at +/98.98% +292 98nt, >M01687:476:000000000-LL5F5:1:2102:25247:8392:2... at +/98.98% +293 93nt, >M01687:476:000000000-LL5F5:1:2102:19047:9474:1... at +/100.00% +294 97nt, >M01687:476:000000000-LL5F5:1:2102:2847:9605:1... at +/97.94% +295 88nt, >M01687:476:000000000-LL5F5:1:2102:23794:10044:1... at +/98.86% +296 98nt, >M01687:476:000000000-LL5F5:1:2102:19350:11899:1... at +/98.98% +297 99nt, >M01687:476:000000000-LL5F5:1:2102:22900:16704:2... at +/97.98% +298 99nt, >M01687:476:000000000-LL5F5:1:2102:12788:17371:1... at +/97.98% +299 98nt, >M01687:476:000000000-LL5F5:1:2102:18891:18136:7... at +/98.98% +300 99nt, >M01687:476:000000000-LL5F5:1:2102:21314:20362:1... at +/97.98% +301 98nt, >M01687:476:000000000-LL5F5:1:2102:12154:22288:1... at +/98.98% +302 99nt, >M01687:476:000000000-LL5F5:1:2103:20482:3328:1... at +/97.98% +303 97nt, >M01687:476:000000000-LL5F5:1:2103:9714:3559:1... at +/98.97% +304 98nt, >M01687:476:000000000-LL5F5:1:2103:16050:4879:2... at +/98.98% +305 98nt, >M01687:476:000000000-LL5F5:1:2103:23468:5243:1... at +/98.98% +306 87nt, >M01687:476:000000000-LL5F5:1:2103:27470:6704:1... at +/98.85% +307 98nt, >M01687:476:000000000-LL5F5:1:2103:24739:13053:2... at +/98.98% +308 98nt, >M01687:476:000000000-LL5F5:1:2103:19898:13580:4... at +/98.98% +309 99nt, >M01687:476:000000000-LL5F5:1:2103:5440:13725:4... at +/97.98% +310 98nt, >M01687:476:000000000-LL5F5:1:2103:16826:14556:2... at +/98.98% +311 97nt, >M01687:476:000000000-LL5F5:1:2103:17041:15418:1... at +/98.97% +312 98nt, >M01687:476:000000000-LL5F5:1:2103:15792:22786:2... at +/98.98% +313 98nt, >M01687:476:000000000-LL5F5:1:2116:9297:3652:2... at +/98.98% +314 85nt, >M01687:476:000000000-LL5F5:1:2116:18256:4541:1... at +/100.00% +315 99nt, >M01687:476:000000000-LL5F5:1:2116:15732:7009:1... at +/98.99% +316 98nt, >M01687:476:000000000-LL5F5:1:2116:13391:8030:1... at +/98.98% +317 98nt, >M01687:476:000000000-LL5F5:1:2116:12799:9059:2... at +/98.98% +318 97nt, >M01687:476:000000000-LL5F5:1:2116:8864:16851:1... at +/98.97% +319 97nt, >M01687:476:000000000-LL5F5:1:2116:17277:19016:1... at +/100.00% +320 97nt, >M01687:476:000000000-LL5F5:1:2116:8650:19102:1... at +/98.97% +321 98nt, >M01687:476:000000000-LL5F5:1:2117:24718:5074:1... at +/96.94% +322 97nt, >M01687:476:000000000-LL5F5:1:2117:6004:5288:1... at +/100.00% +323 98nt, >M01687:476:000000000-LL5F5:1:2117:16055:6175:1... at +/98.98% +324 98nt, >M01687:476:000000000-LL5F5:1:2117:17129:6813:2... at +/98.98% +325 99nt, >M01687:476:000000000-LL5F5:1:2117:27386:12088:1... at +/97.98% +326 97nt, >M01687:476:000000000-LL5F5:1:2117:5440:12119:1... at +/98.97% +327 97nt, >M01687:476:000000000-LL5F5:1:2117:3607:14548:1... at +/98.97% +328 98nt, >M01687:476:000000000-LL5F5:1:2117:13226:14720:2... at +/98.98% +329 94nt, >M01687:476:000000000-LL5F5:1:2117:25989:15763:1... at +/97.87% +330 98nt, >M01687:476:000000000-LL5F5:1:2117:23131:16482:2... at +/98.98% +331 98nt, >M01687:476:000000000-LL5F5:1:2117:2689:18166:1... at +/98.98% +332 97nt, >M01687:476:000000000-LL5F5:1:2117:22796:19116:1... at +/100.00% +333 98nt, >M01687:476:000000000-LL5F5:1:2117:26793:20058:1... at +/98.98% +334 98nt, >M01687:476:000000000-LL5F5:1:2117:15774:20154:6... at +/98.98% +335 98nt, >M01687:476:000000000-LL5F5:1:2117:23497:24146:1... at +/97.96% +336 98nt, >M01687:476:000000000-LL5F5:1:1119:18689:2200:3... at +/98.98% +337 80nt, >M01687:476:000000000-LL5F5:1:1119:5680:6936:1... at +/98.75% +338 97nt, >M01687:476:000000000-LL5F5:1:1119:24363:7756:2... at +/100.00% +339 96nt, >M01687:476:000000000-LL5F5:1:1119:2804:8702:1... at +/97.92% +340 99nt, >M01687:476:000000000-LL5F5:1:1119:16182:10410:2... at +/97.98% +341 98nt, >M01687:476:000000000-LL5F5:1:1119:5426:12141:5... at +/98.98% +342 98nt, >M01687:476:000000000-LL5F5:1:1119:24426:12590:2... at +/98.98% +343 99nt, >M01687:476:000000000-LL5F5:1:1119:7344:15234:1... at +/98.99% +344 98nt, >M01687:476:000000000-LL5F5:1:1119:20080:19650:1... at +/97.96% +345 99nt, >M01687:476:000000000-LL5F5:1:1119:20813:20497:1... at +/97.98% +346 98nt, >M01687:476:000000000-LL5F5:1:1119:21033:23653:2... at +/98.98% +347 97nt, >M01687:476:000000000-LL5F5:1:2101:5940:6847:2... at +/98.97% +348 98nt, >M01687:476:000000000-LL5F5:1:2101:15997:7066:5... at +/98.98% +349 98nt, >M01687:476:000000000-LL5F5:1:2101:15810:7569:1... at +/97.96% +350 95nt, >M01687:476:000000000-LL5F5:1:2101:16022:8408:1... at +/98.95% +351 97nt, >M01687:476:000000000-LL5F5:1:2101:19283:9278:1... at +/98.97% +352 97nt, >M01687:476:000000000-LL5F5:1:2101:26206:10392:1... at +/98.97% +353 98nt, >M01687:476:000000000-LL5F5:1:2101:25636:10745:1... at +/97.96% +354 98nt, >M01687:476:000000000-LL5F5:1:2101:18718:12324:1... at +/98.98% +355 98nt, >M01687:476:000000000-LL5F5:1:2101:12372:12928:2... at +/97.96% +356 99nt, >M01687:476:000000000-LL5F5:1:2101:15076:13001:1... at +/98.99% +357 97nt, >M01687:476:000000000-LL5F5:1:2101:9366:18135:1... at +/98.97% +358 94nt, >M01687:476:000000000-LL5F5:1:2101:8654:18394:1... at +/97.87% +359 98nt, >M01687:476:000000000-LL5F5:1:2101:3666:19713:1... at +/98.98% +360 98nt, >M01687:476:000000000-LL5F5:1:2101:21405:19957:1... at +/97.96% +361 99nt, >M01687:476:000000000-LL5F5:1:2101:26028:22639:1... at +/97.98% +362 98nt, >M01687:476:000000000-LL5F5:1:2101:19922:23105:3... at +/98.98% +363 97nt, >M01687:476:000000000-LL5F5:1:2101:13327:23546:1... at +/100.00% +364 98nt, >M01687:476:000000000-LL5F5:1:1115:23268:5338:1... at +/98.98% +365 98nt, >M01687:476:000000000-LL5F5:1:1115:13588:6683:1... at +/97.96% +366 98nt, >M01687:476:000000000-LL5F5:1:1115:21847:7532:1... at +/98.98% +367 98nt, >M01687:476:000000000-LL5F5:1:1115:22589:7787:6... at +/98.98% +368 98nt, >M01687:476:000000000-LL5F5:1:1115:6641:10736:2... at +/98.98% +369 98nt, >M01687:476:000000000-LL5F5:1:1115:26595:12546:1... at +/98.98% +370 97nt, >M01687:476:000000000-LL5F5:1:1115:14527:12830:1... at +/97.94% +371 99nt, >M01687:476:000000000-LL5F5:1:1115:14161:17909:1... at +/97.98% +372 98nt, >M01687:476:000000000-LL5F5:1:1115:14961:19591:1... at +/97.96% +373 98nt, >M01687:476:000000000-LL5F5:1:1115:19304:20762:1... at +/97.96% +374 97nt, >M01687:476:000000000-LL5F5:1:1116:19221:4739:1... at +/97.94% +375 96nt, >M01687:476:000000000-LL5F5:1:1116:27908:6379:1... at +/100.00% +376 82nt, >M01687:476:000000000-LL5F5:1:1116:11343:8000:1... at +/98.78% +377 98nt, >M01687:476:000000000-LL5F5:1:1116:23055:9638:1... at +/98.98% +378 96nt, >M01687:476:000000000-LL5F5:1:1116:9191:12921:1... at +/98.96% +379 96nt, >M01687:476:000000000-LL5F5:1:1116:23120:13673:1... at +/100.00% +380 97nt, >M01687:476:000000000-LL5F5:1:1116:14649:14604:1... at +/98.97% +381 97nt, >M01687:476:000000000-LL5F5:1:1116:5238:16394:1... at +/97.94% +382 89nt, >M01687:476:000000000-LL5F5:1:1116:28102:16856:1... at +/98.88% +383 98nt, >M01687:476:000000000-LL5F5:1:1116:27806:18372:2... at +/98.98% +384 90nt, >M01687:476:000000000-LL5F5:1:1114:22243:2718:3... at +/100.00% +385 99nt, >M01687:476:000000000-LL5F5:1:1114:8332:2800:1... at +/96.97% +386 80nt, >M01687:476:000000000-LL5F5:1:1114:23451:4661:1... at +/98.75% +387 98nt, >M01687:476:000000000-LL5F5:1:1114:7978:6806:4... at +/98.98% +388 98nt, >M01687:476:000000000-LL5F5:1:1114:21404:6938:2... at +/98.98% +389 98nt, >M01687:476:000000000-LL5F5:1:1114:28279:7178:1... at +/98.98% +390 97nt, >M01687:476:000000000-LL5F5:1:1114:2392:10352:1... at +/98.97% +391 90nt, >M01687:476:000000000-LL5F5:1:1114:10040:11214:1... at +/98.89% +392 99nt, >M01687:476:000000000-LL5F5:1:1114:27666:12849:1... at +/97.98% +393 99nt, >M01687:476:000000000-LL5F5:1:1114:18275:15931:1... at +/97.98% +394 98nt, >M01687:476:000000000-LL5F5:1:1113:10315:2357:1... at +/98.98% +395 98nt, >M01687:476:000000000-LL5F5:1:1113:23116:6364:1... at +/97.96% +396 97nt, >M01687:476:000000000-LL5F5:1:1113:17805:11884:1... at +/98.97% +397 99nt, >M01687:476:000000000-LL5F5:1:1113:23140:16740:1... at +/98.99% +398 93nt, >M01687:476:000000000-LL5F5:1:1113:4080:17698:1... at +/98.92% +399 95nt, >M01687:476:000000000-LL5F5:1:1113:5868:20729:2... at +/98.95% +400 98nt, >M01687:476:000000000-LL5F5:1:1113:18950:22494:1... at +/97.96% +401 96nt, >M01687:476:000000000-LL5F5:1:1113:15597:24713:1... at +/100.00% +402 76nt, >M01687:476:000000000-LL5F5:1:1112:17435:3131:1... at +/100.00% +403 98nt, >M01687:476:000000000-LL5F5:1:1112:7292:3811:1... at +/97.96% +404 98nt, >M01687:476:000000000-LL5F5:1:1112:2597:9575:1... at +/97.96% +405 98nt, >M01687:476:000000000-LL5F5:1:1112:25513:9777:1... at +/97.96% +406 99nt, >M01687:476:000000000-LL5F5:1:1112:3702:13802:2... at +/97.98% +407 99nt, >M01687:476:000000000-LL5F5:1:1112:19580:15558:1... at +/97.98% +408 99nt, >M01687:476:000000000-LL5F5:1:1112:20043:16475:1... at +/98.99% +409 98nt, >M01687:476:000000000-LL5F5:1:1112:24455:17799:1... at +/97.96% +410 91nt, >M01687:476:000000000-LL5F5:1:1112:16385:20302:1... at +/97.80% +411 98nt, >M01687:476:000000000-LL5F5:1:1112:13703:21089:1... at +/97.96% +412 98nt, >M01687:476:000000000-LL5F5:1:1112:14742:22983:1... at +/98.98% +413 97nt, >M01687:476:000000000-LL5F5:1:1112:7305:23507:1... at +/97.94% +414 97nt, >M01687:476:000000000-LL5F5:1:1112:10374:23551:1... at +/98.97% +415 98nt, >M01687:476:000000000-LL5F5:1:1111:16199:3400:2... at +/98.98% +416 98nt, >M01687:476:000000000-LL5F5:1:1111:25080:3909:2... at +/100.00% +417 98nt, >M01687:476:000000000-LL5F5:1:1111:3591:6542:2... at +/98.98% +418 99nt, >M01687:476:000000000-LL5F5:1:1111:11708:9117:1... at +/97.98% +419 98nt, >M01687:476:000000000-LL5F5:1:1111:22286:11972:3... at +/98.98% +420 98nt, >M01687:476:000000000-LL5F5:1:1111:10377:12123:1... at +/97.96% +421 98nt, >M01687:476:000000000-LL5F5:1:1111:18587:15337:1... at +/98.98% +422 97nt, >M01687:476:000000000-LL5F5:1:1111:13129:16161:1... at +/98.97% +423 76nt, >M01687:476:000000000-LL5F5:1:1111:4070:16276:1... at +/98.68% +424 98nt, >M01687:476:000000000-LL5F5:1:1111:4806:17252:1... at +/97.96% +425 99nt, >M01687:476:000000000-LL5F5:1:1111:11394:18160:1... at +/97.98% +426 99nt, >M01687:476:000000000-LL5F5:1:1111:16428:20757:1... at +/97.98% +427 97nt, >M01687:476:000000000-LL5F5:1:1111:7785:22367:2... at +/100.00% +428 97nt, >M01687:476:000000000-LL5F5:1:1110:20574:1789:1... at +/98.97% +429 98nt, >M01687:476:000000000-LL5F5:1:1110:17574:2031:2... at +/98.98% +430 98nt, >M01687:476:000000000-LL5F5:1:1110:21135:7266:1... at +/97.96% +431 84nt, >M01687:476:000000000-LL5F5:1:1110:16870:9383:1... at +/98.81% +432 98nt, >M01687:476:000000000-LL5F5:1:1110:2229:9776:4... at +/98.98% +433 96nt, >M01687:476:000000000-LL5F5:1:1110:7706:10412:1... at +/100.00% +434 98nt, >M01687:476:000000000-LL5F5:1:1110:24916:12586:1... at +/97.96% +435 96nt, >M01687:476:000000000-LL5F5:1:1110:12818:14415:1... at +/97.92% +436 92nt, >M01687:476:000000000-LL5F5:1:1110:18165:21380:1... at +/96.74% +437 98nt, >M01687:476:000000000-LL5F5:1:1110:8947:24181:1... at +/97.96% +438 98nt, >M01687:476:000000000-LL5F5:1:1109:7651:5426:2... at +/98.98% +439 98nt, >M01687:476:000000000-LL5F5:1:1109:9442:6927:1... at +/98.98% +440 97nt, >M01687:476:000000000-LL5F5:1:1109:15648:8391:4... at +/98.97% +441 98nt, >M01687:476:000000000-LL5F5:1:1109:15110:11973:2... at +/98.98% +442 98nt, >M01687:476:000000000-LL5F5:1:1109:13908:13486:1... at +/98.98% +443 98nt, >M01687:476:000000000-LL5F5:1:1109:8955:19554:1... at +/98.98% +444 99nt, >M01687:476:000000000-LL5F5:1:1109:21069:19744:1... at +/97.98% +445 81nt, >M01687:476:000000000-LL5F5:1:1109:13920:24072:1... at +/98.77% +446 76nt, >M01687:476:000000000-LL5F5:1:1108:19429:4299:1... at +/98.68% +447 99nt, >M01687:476:000000000-LL5F5:1:1108:6035:8158:1... at +/97.98% +448 97nt, >M01687:476:000000000-LL5F5:1:1108:28252:10244:1... at +/98.97% +449 99nt, >M01687:476:000000000-LL5F5:1:1108:20224:10895:1... at +/98.99% +450 99nt, >M01687:476:000000000-LL5F5:1:1108:13785:11109:1... at +/98.99% +451 94nt, >M01687:476:000000000-LL5F5:1:1108:16824:12195:1... at +/98.94% +452 98nt, >M01687:476:000000000-LL5F5:1:1108:8230:13721:1... at +/98.98% +453 98nt, >M01687:476:000000000-LL5F5:1:1108:25647:14020:1... at +/98.98% +454 98nt, >M01687:476:000000000-LL5F5:1:1108:27719:14638:1... at +/98.98% +455 99nt, >M01687:476:000000000-LL5F5:1:1108:21269:17094:1... at +/97.98% +456 98nt, >M01687:476:000000000-LL5F5:1:1108:12547:18643:1... at +/97.96% +457 97nt, >M01687:476:000000000-LL5F5:1:1108:11295:22817:1... at +/98.97% +458 98nt, >M01687:476:000000000-LL5F5:1:1108:20400:24152:2... at +/97.96% +459 98nt, >M01687:476:000000000-LL5F5:1:1107:11061:5237:1... at +/98.98% +460 83nt, >M01687:476:000000000-LL5F5:1:1107:13966:9221:1... at +/98.80% +461 99nt, >M01687:476:000000000-LL5F5:1:1107:5332:15920:1... at +/97.98% +462 95nt, >M01687:476:000000000-LL5F5:1:1107:25342:19115:1... at +/100.00% +463 98nt, >M01687:476:000000000-LL5F5:1:1107:15988:22588:1... at +/98.98% +464 99nt, >M01687:476:000000000-LL5F5:1:1107:25224:22736:1... at +/97.98% +465 98nt, >M01687:476:000000000-LL5F5:1:1106:22864:3580:1... at +/97.96% +466 99nt, >M01687:476:000000000-LL5F5:1:1106:8302:5033:1... at +/97.98% +467 98nt, >M01687:476:000000000-LL5F5:1:1106:9154:9253:2... at +/98.98% +468 98nt, >M01687:476:000000000-LL5F5:1:1106:15075:13195:1... at +/97.96% +469 99nt, >M01687:476:000000000-LL5F5:1:1106:10497:13314:1... at +/97.98% +470 77nt, >M01687:476:000000000-LL5F5:1:1106:29449:14275:1... at +/98.70% +471 98nt, >M01687:476:000000000-LL5F5:1:1106:19837:15442:1... at +/97.96% +472 98nt, >M01687:476:000000000-LL5F5:1:1106:4974:15860:1... at +/96.94% +473 98nt, >M01687:476:000000000-LL5F5:1:1106:12142:16975:1... at +/97.96% +474 97nt, >M01687:476:000000000-LL5F5:1:1106:11614:21513:1... at +/98.97% +475 97nt, >M01687:476:000000000-LL5F5:1:1105:6963:2277:1... at +/98.97% +476 97nt, >M01687:476:000000000-LL5F5:1:1105:25220:5778:1... at +/98.97% +477 97nt, >M01687:476:000000000-LL5F5:1:1105:3043:7421:1... at +/97.94% +478 97nt, >M01687:476:000000000-LL5F5:1:1105:14216:8411:1... at +/98.97% +479 80nt, >M01687:476:000000000-LL5F5:1:1105:8253:9750:1... at +/98.75% +480 91nt, >M01687:476:000000000-LL5F5:1:1105:29458:10597:1... at +/97.80% +481 98nt, >M01687:476:000000000-LL5F5:1:1105:21114:14513:1... at +/98.98% +482 78nt, >M01687:476:000000000-LL5F5:1:1105:19656:19806:1... at +/97.44% +483 98nt, >M01687:476:000000000-LL5F5:1:1105:13693:22834:1... at +/97.96% +484 89nt, >M01687:476:000000000-LL5F5:1:1105:22204:24195:1... at +/98.88% +485 97nt, >M01687:476:000000000-LL5F5:1:1104:16936:2094:1... at +/100.00% +486 92nt, >M01687:476:000000000-LL5F5:1:1104:15487:8718:1... at +/95.65% +487 99nt, >M01687:476:000000000-LL5F5:1:1104:9824:10033:1... at +/98.99% +488 99nt, >M01687:476:000000000-LL5F5:1:1104:25637:10732:1... at +/97.98% +489 98nt, >M01687:476:000000000-LL5F5:1:1104:26802:19182:1... at +/98.98% +490 99nt, >M01687:476:000000000-LL5F5:1:1103:10309:2455:1... at +/98.99% +491 96nt, >M01687:476:000000000-LL5F5:1:1103:10252:3405:1... at +/100.00% +492 93nt, >M01687:476:000000000-LL5F5:1:1103:23225:7144:1... at +/98.92% +493 97nt, >M01687:476:000000000-LL5F5:1:1103:6148:7408:2... at +/100.00% +494 98nt, >M01687:476:000000000-LL5F5:1:1103:15952:9635:1... at +/97.96% +495 97nt, >M01687:476:000000000-LL5F5:1:1103:13224:15410:2... at +/98.97% +496 96nt, >M01687:476:000000000-LL5F5:1:1103:11024:23139:1... at +/100.00% +497 99nt, >M01687:476:000000000-LL5F5:1:1118:13187:7593:1... at +/97.98% +498 99nt, >M01687:476:000000000-LL5F5:1:1118:8851:13970:1... at +/97.98% +499 79nt, >M01687:476:000000000-LL5F5:1:1118:8980:17671:1... at +/98.73% +500 84nt, >M01687:476:000000000-LL5F5:1:1118:7138:19492:1... at +/98.81% +501 99nt, >M01687:476:000000000-LL5F5:1:1118:20671:24276:1... at +/97.98% +502 97nt, >M01687:476:000000000-LL5F5:1:1117:24378:8158:1... at +/98.97% +503 97nt, >M01687:476:000000000-LL5F5:1:1117:17352:9903:1... at +/98.97% +504 83nt, >M01687:476:000000000-LL5F5:1:1117:22017:11403:1... at +/98.80% +505 97nt, >M01687:476:000000000-LL5F5:1:1117:10805:12907:1... at +/100.00% +506 98nt, >M01687:476:000000000-LL5F5:1:1117:12727:21066:1... at +/97.96% +507 97nt, >M01687:476:000000000-LL5F5:1:1117:9025:23623:1... at +/98.97% +508 98nt, >M01687:476:000000000-LL5F5:1:2118:15973:6079:1... at +/98.98% +509 97nt, >M01687:476:000000000-LL5F5:1:2118:25190:10381:1... at +/98.97% +510 98nt, >M01687:476:000000000-LL5F5:1:2118:22901:16093:1... at +/98.98% +511 98nt, >M01687:476:000000000-LL5F5:1:2118:21348:17094:1... at +/98.98% +512 98nt, >M01687:476:000000000-LL5F5:1:2118:11080:18923:1... at +/98.98% +513 97nt, >M01687:476:000000000-LL5F5:1:2118:18875:23845:1... at +/97.94% +514 99nt, >M01687:476:000000000-LL5F5:1:2119:3223:17151:1... at +/96.97% +515 99nt, >M01687:476:000000000-LL5F5:1:2119:4864:20258:1... at +/100.00% +516 99nt, >M01687:476:000000000-LL5F5:1:2119:9456:20266:1... at +/97.98% +517 77nt, >M01687:476:000000000-LL5F5:1:2119:16645:21045:1... at +/98.70% +518 97nt, >M01687:476:000000000-LL5F5:1:2119:15256:22453:1... at +/98.97% +>Cluster 1 +0 79nt, >M01687:476:000000000-LL5F5:1:1102:18166:1721:2401... at +/100.00% +1 79nt, >M01687:476:000000000-LL5F5:1:1102:20161:1810:37... at +/98.73% +2 79nt, >M01687:476:000000000-LL5F5:1:1102:13143:3605:969... at +/98.73% +3 79nt, >M01687:476:000000000-LL5F5:1:1102:10885:3988:22... at +/98.73% +4 80nt, >M01687:476:000000000-LL5F5:1:1102:9246:5125:1... * +5 79nt, >M01687:476:000000000-LL5F5:1:1102:4579:6849:4... at +/97.47% +6 78nt, >M01687:476:000000000-LL5F5:1:1102:17686:7417:1... at +/98.72% +7 79nt, >M01687:476:000000000-LL5F5:1:1102:23163:8003:2... at +/98.73% +8 79nt, >M01687:476:000000000-LL5F5:1:1102:22249:8276:1... at +/97.47% +9 79nt, >M01687:476:000000000-LL5F5:1:1102:18130:8589:2... at +/98.73% +10 79nt, >M01687:476:000000000-LL5F5:1:1102:10192:9084:4... at +/98.73% +11 74nt, >M01687:476:000000000-LL5F5:1:1102:7973:11543:5... at +/98.65% +12 79nt, >M01687:476:000000000-LL5F5:1:1102:28145:12521:1... at +/97.47% +13 78nt, >M01687:476:000000000-LL5F5:1:1102:2220:13667:7... at +/98.72% +14 79nt, >M01687:476:000000000-LL5F5:1:1102:4960:14493:2... at +/98.73% +15 78nt, >M01687:476:000000000-LL5F5:1:1102:15034:20129:1... at +/100.00% +16 78nt, >M01687:476:000000000-LL5F5:1:1102:6984:20282:1... at +/100.00% +17 79nt, >M01687:476:000000000-LL5F5:1:1102:12279:24527:4... at +/97.47% +18 79nt, >M01687:476:000000000-LL5F5:1:1101:7541:2215:2... at +/97.47% +19 79nt, >M01687:476:000000000-LL5F5:1:1101:8126:5312:8... at +/98.73% +20 79nt, >M01687:476:000000000-LL5F5:1:1101:13332:6650:5... at +/98.73% +21 69nt, >M01687:476:000000000-LL5F5:1:1101:7045:6922:1... at +/98.55% +22 78nt, >M01687:476:000000000-LL5F5:1:1101:4872:8655:4... at +/98.72% +23 60nt, >M01687:476:000000000-LL5F5:1:1101:25908:9485:3... at +/100.00% +24 78nt, >M01687:476:000000000-LL5F5:1:1101:12265:9565:2... at +/100.00% +25 79nt, >M01687:476:000000000-LL5F5:1:1101:24428:10000:3... at +/98.73% +26 79nt, >M01687:476:000000000-LL5F5:1:1101:27592:18425:5... at +/97.47% +27 77nt, >M01687:476:000000000-LL5F5:1:1101:12763:20874:1... at +/100.00% +28 75nt, >M01687:476:000000000-LL5F5:1:2115:13699:5557:2... at +/98.67% +29 79nt, >M01687:476:000000000-LL5F5:1:2115:8870:12276:3... at +/98.73% +30 79nt, >M01687:476:000000000-LL5F5:1:2115:23375:13690:1... at +/97.47% +31 79nt, >M01687:476:000000000-LL5F5:1:2115:6550:14267:4... at +/98.73% +32 79nt, >M01687:476:000000000-LL5F5:1:2115:16087:16196:5... at +/98.73% +33 79nt, >M01687:476:000000000-LL5F5:1:2115:5959:23100:1... at +/97.47% +34 78nt, >M01687:476:000000000-LL5F5:1:2115:15710:23202:2... at +/100.00% +35 79nt, >M01687:476:000000000-LL5F5:1:2114:23222:4083:3... at +/98.73% +36 79nt, >M01687:476:000000000-LL5F5:1:2114:25448:5929:2... at +/98.73% +37 79nt, >M01687:476:000000000-LL5F5:1:2114:10427:8072:3... at +/98.73% +38 79nt, >M01687:476:000000000-LL5F5:1:2114:8037:9040:3... at +/97.47% +39 79nt, >M01687:476:000000000-LL5F5:1:2114:8816:10627:4... at +/98.73% +40 79nt, >M01687:476:000000000-LL5F5:1:2114:22057:10710:8... at +/98.73% +41 78nt, >M01687:476:000000000-LL5F5:1:2114:6497:11758:9... at +/100.00% +42 79nt, >M01687:476:000000000-LL5F5:1:2114:7604:12958:1... at +/97.47% +43 79nt, >M01687:476:000000000-LL5F5:1:2114:5417:13282:11... at +/98.73% +44 79nt, >M01687:476:000000000-LL5F5:1:2114:7222:15455:2... at +/97.47% +45 79nt, >M01687:476:000000000-LL5F5:1:2114:16053:20905:3... at +/98.73% +46 79nt, >M01687:476:000000000-LL5F5:1:2114:19039:21772:2... at +/98.73% +47 79nt, >M01687:476:000000000-LL5F5:1:2113:4309:5354:1... at +/97.47% +48 62nt, >M01687:476:000000000-LL5F5:1:2113:18853:9781:6... at +/100.00% +49 79nt, >M01687:476:000000000-LL5F5:1:2113:25675:10858:1... at +/97.47% +50 79nt, >M01687:476:000000000-LL5F5:1:2113:4050:11486:1... at +/98.73% +51 79nt, >M01687:476:000000000-LL5F5:1:2113:9603:13401:2... at +/97.47% +52 79nt, >M01687:476:000000000-LL5F5:1:2113:27290:15698:2... at +/98.73% +53 78nt, >M01687:476:000000000-LL5F5:1:2113:22178:20025:2... at +/100.00% +54 79nt, >M01687:476:000000000-LL5F5:1:2113:21010:20221:13... at +/97.47% +55 79nt, >M01687:476:000000000-LL5F5:1:2113:22260:24602:5... at +/98.73% +56 79nt, >M01687:476:000000000-LL5F5:1:2112:8456:3997:1... at +/97.47% +57 78nt, >M01687:476:000000000-LL5F5:1:2112:22725:4207:1... at +/98.72% +58 79nt, >M01687:476:000000000-LL5F5:1:2112:18182:8810:4... at +/98.73% +59 79nt, >M01687:476:000000000-LL5F5:1:2112:7212:11179:2... at +/97.47% +60 79nt, >M01687:476:000000000-LL5F5:1:2112:27342:12826:2... at +/97.47% +61 79nt, >M01687:476:000000000-LL5F5:1:2112:6353:19017:1... at +/98.73% +62 72nt, >M01687:476:000000000-LL5F5:1:2112:10333:19297:1... at +/100.00% +63 79nt, >M01687:476:000000000-LL5F5:1:2112:10395:19817:1... at +/98.73% +64 79nt, >M01687:476:000000000-LL5F5:1:2112:21099:22022:1... at +/97.47% +65 79nt, >M01687:476:000000000-LL5F5:1:2112:5679:22332:2... at +/97.47% +66 79nt, >M01687:476:000000000-LL5F5:1:2111:12502:5251:2... at +/97.47% +67 79nt, >M01687:476:000000000-LL5F5:1:2111:23175:6083:2... at +/97.47% +68 79nt, >M01687:476:000000000-LL5F5:1:2111:20491:9038:1... at +/96.20% +69 78nt, >M01687:476:000000000-LL5F5:1:2111:20933:12594:3... at +/100.00% +70 80nt, >M01687:476:000000000-LL5F5:1:2111:18764:12903:1... at +/98.75% +71 79nt, >M01687:476:000000000-LL5F5:1:2111:7062:12958:2... at +/98.73% +72 79nt, >M01687:476:000000000-LL5F5:1:2111:24843:22334:1... at +/97.47% +73 79nt, >M01687:476:000000000-LL5F5:1:2111:10947:24178:1... at +/97.47% +74 79nt, >M01687:476:000000000-LL5F5:1:2110:15511:3584:7... at +/97.47% +75 79nt, >M01687:476:000000000-LL5F5:1:2110:23255:5418:2... at +/97.47% +76 79nt, >M01687:476:000000000-LL5F5:1:2110:11085:8875:1... at +/98.73% +77 79nt, >M01687:476:000000000-LL5F5:1:2110:21187:16196:1... at +/98.73% +78 78nt, >M01687:476:000000000-LL5F5:1:2109:15841:6866:1... at +/98.72% +79 79nt, >M01687:476:000000000-LL5F5:1:2109:3098:8710:2... at +/98.73% +80 79nt, >M01687:476:000000000-LL5F5:1:2109:8487:9620:5... at +/98.73% +81 79nt, >M01687:476:000000000-LL5F5:1:2109:28601:11575:1... at +/98.73% +82 79nt, >M01687:476:000000000-LL5F5:1:2109:12141:11934:1... at +/98.73% +83 79nt, >M01687:476:000000000-LL5F5:1:2109:2594:14778:2... at +/98.73% +84 78nt, >M01687:476:000000000-LL5F5:1:2109:7341:16041:3... at +/98.72% +85 78nt, >M01687:476:000000000-LL5F5:1:2109:27088:18740:2... at +/100.00% +86 79nt, >M01687:476:000000000-LL5F5:1:2109:11813:19431:1... at +/98.73% +87 78nt, >M01687:476:000000000-LL5F5:1:2109:12111:20354:2... at +/100.00% +88 78nt, >M01687:476:000000000-LL5F5:1:2109:16039:24130:1... at +/97.44% +89 79nt, >M01687:476:000000000-LL5F5:1:2108:21946:2284:4... at +/98.73% +90 79nt, >M01687:476:000000000-LL5F5:1:2108:10272:3671:3... at +/98.73% +91 77nt, >M01687:476:000000000-LL5F5:1:2108:11771:5010:1... at +/98.70% +92 79nt, >M01687:476:000000000-LL5F5:1:2108:18382:10275:4... at +/98.73% +93 79nt, >M01687:476:000000000-LL5F5:1:2108:9956:12385:3... at +/98.73% +94 79nt, >M01687:476:000000000-LL5F5:1:2108:2394:14204:1... at +/97.47% +95 79nt, >M01687:476:000000000-LL5F5:1:2108:23752:22522:1... at +/97.47% +96 79nt, >M01687:476:000000000-LL5F5:1:2108:9531:22879:7... at +/98.73% +97 79nt, >M01687:476:000000000-LL5F5:1:2106:23625:3499:1... at +/98.73% +98 79nt, >M01687:476:000000000-LL5F5:1:2106:14506:7247:9... at +/98.73% +99 79nt, >M01687:476:000000000-LL5F5:1:2106:10485:7319:3... at +/98.73% +100 79nt, >M01687:476:000000000-LL5F5:1:2106:26003:14786:1... at +/98.73% +101 79nt, >M01687:476:000000000-LL5F5:1:2106:5804:16962:1... at +/97.47% +102 79nt, >M01687:476:000000000-LL5F5:1:2106:21419:19210:8... at +/98.73% +103 79nt, >M01687:476:000000000-LL5F5:1:2107:18223:4572:2... at +/97.47% +104 79nt, >M01687:476:000000000-LL5F5:1:2107:13274:6862:2... at +/97.47% +105 79nt, >M01687:476:000000000-LL5F5:1:2107:8589:7836:1... at +/97.47% +106 78nt, >M01687:476:000000000-LL5F5:1:2107:16120:8775:1... at +/100.00% +107 79nt, >M01687:476:000000000-LL5F5:1:2107:7844:10465:2... at +/98.73% +108 79nt, >M01687:476:000000000-LL5F5:1:2107:12999:14397:1... at +/97.47% +109 80nt, >M01687:476:000000000-LL5F5:1:2107:20473:15569:1... at +/98.75% +110 79nt, >M01687:476:000000000-LL5F5:1:2107:15447:15799:5... at +/98.73% +111 79nt, >M01687:476:000000000-LL5F5:1:2107:11528:16287:1... at +/98.73% +112 78nt, >M01687:476:000000000-LL5F5:1:2107:19580:16903:1... at +/100.00% +113 64nt, >M01687:476:000000000-LL5F5:1:2107:15520:18499:3... at +/100.00% +114 78nt, >M01687:476:000000000-LL5F5:1:2107:22379:24248:4... at +/100.00% +115 79nt, >M01687:476:000000000-LL5F5:1:2104:19334:2435:1... at +/97.47% +116 79nt, >M01687:476:000000000-LL5F5:1:2104:7487:3674:2... at +/98.73% +117 70nt, >M01687:476:000000000-LL5F5:1:2104:26110:4087:2... at +/100.00% +118 67nt, >M01687:476:000000000-LL5F5:1:2104:12141:14301:1... at +/98.51% +119 78nt, >M01687:476:000000000-LL5F5:1:2104:24526:14303:5... at +/100.00% +120 79nt, >M01687:476:000000000-LL5F5:1:2104:3682:16361:2... at +/98.73% +121 79nt, >M01687:476:000000000-LL5F5:1:2104:27227:16406:2... at +/98.73% +122 79nt, >M01687:476:000000000-LL5F5:1:2104:15728:18391:2... at +/97.47% +123 77nt, >M01687:476:000000000-LL5F5:1:2105:17681:4650:1... at +/98.70% +124 79nt, >M01687:476:000000000-LL5F5:1:2105:16946:10078:6... at +/98.73% +125 79nt, >M01687:476:000000000-LL5F5:1:2105:24443:12151:1... at +/98.73% +126 79nt, >M01687:476:000000000-LL5F5:1:2105:8704:17336:5... at +/98.73% +127 79nt, >M01687:476:000000000-LL5F5:1:2105:14183:18192:2... at +/98.73% +128 78nt, >M01687:476:000000000-LL5F5:1:2105:10522:19114:2... at +/100.00% +129 79nt, >M01687:476:000000000-LL5F5:1:2105:18241:21568:3... at +/98.73% +130 79nt, >M01687:476:000000000-LL5F5:1:2105:18165:22143:3... at +/98.73% +131 79nt, >M01687:476:000000000-LL5F5:1:2105:13478:23824:1... at +/98.73% +132 78nt, >M01687:476:000000000-LL5F5:1:2102:20126:1660:2... at +/100.00% +133 78nt, >M01687:476:000000000-LL5F5:1:2102:23667:3161:1... at +/98.72% +134 79nt, >M01687:476:000000000-LL5F5:1:2102:13995:3839:1... at +/97.47% +135 76nt, >M01687:476:000000000-LL5F5:1:2102:19565:5893:1... at +/98.68% +136 79nt, >M01687:476:000000000-LL5F5:1:2102:9625:6810:1... at +/98.73% +137 79nt, >M01687:476:000000000-LL5F5:1:2102:23649:11327:2... at +/98.73% +138 79nt, >M01687:476:000000000-LL5F5:1:2103:15115:1551:1... at +/97.47% +139 79nt, >M01687:476:000000000-LL5F5:1:2103:23485:2581:4... at +/98.73% +140 78nt, >M01687:476:000000000-LL5F5:1:2103:22963:10133:2... at +/100.00% +141 79nt, >M01687:476:000000000-LL5F5:1:2103:6403:11110:1... at +/97.47% +142 79nt, >M01687:476:000000000-LL5F5:1:2103:6815:17044:3... at +/98.73% +143 80nt, >M01687:476:000000000-LL5F5:1:2103:13232:20869:1... at +/96.25% +144 79nt, >M01687:476:000000000-LL5F5:1:2116:19213:6393:1... at +/97.47% +145 80nt, >M01687:476:000000000-LL5F5:1:2116:6586:11779:1... at +/98.75% +146 79nt, >M01687:476:000000000-LL5F5:1:2116:10681:14429:1... at +/97.47% +147 80nt, >M01687:476:000000000-LL5F5:1:2116:25830:16294:1... at +/98.75% +148 79nt, >M01687:476:000000000-LL5F5:1:2116:13224:18392:3... at +/97.47% +149 79nt, >M01687:476:000000000-LL5F5:1:2116:22293:21678:3... at +/97.47% +150 79nt, >M01687:476:000000000-LL5F5:1:2116:10456:22552:1... at +/98.73% +151 71nt, >M01687:476:000000000-LL5F5:1:2117:24626:3179:1... at +/98.59% +152 78nt, >M01687:476:000000000-LL5F5:1:2117:11868:3227:1... at +/98.72% +153 79nt, >M01687:476:000000000-LL5F5:1:2117:17471:7759:1... at +/97.47% +154 79nt, >M01687:476:000000000-LL5F5:1:2117:23152:13062:1... at +/97.47% +155 79nt, >M01687:476:000000000-LL5F5:1:2117:7869:15336:3... at +/97.47% +156 79nt, >M01687:476:000000000-LL5F5:1:2117:14160:15635:1... at +/97.47% +157 79nt, >M01687:476:000000000-LL5F5:1:2117:4416:17875:1... at +/97.47% +158 79nt, >M01687:476:000000000-LL5F5:1:2117:18125:21224:1... at +/97.47% +159 79nt, >M01687:476:000000000-LL5F5:1:1119:15961:5945:2... at +/98.73% +160 79nt, >M01687:476:000000000-LL5F5:1:1119:20413:12791:2... at +/97.47% +161 78nt, >M01687:476:000000000-LL5F5:1:1119:11740:19028:3... at +/100.00% +162 78nt, >M01687:476:000000000-LL5F5:1:1119:23531:19742:3... at +/100.00% +163 79nt, >M01687:476:000000000-LL5F5:1:1119:12982:20032:1... at +/98.73% +164 79nt, >M01687:476:000000000-LL5F5:1:1119:7276:22925:1... at +/98.73% +165 79nt, >M01687:476:000000000-LL5F5:1:2101:17653:1503:1... at +/97.47% +166 79nt, >M01687:476:000000000-LL5F5:1:2101:19618:5378:2... at +/97.47% +167 79nt, >M01687:476:000000000-LL5F5:1:2101:24389:11465:1... at +/98.73% +168 79nt, >M01687:476:000000000-LL5F5:1:2101:22155:12213:1... at +/96.20% +169 79nt, >M01687:476:000000000-LL5F5:1:2101:9951:15198:1... at +/97.47% +170 79nt, >M01687:476:000000000-LL5F5:1:2101:14021:16704:1... at +/97.47% +171 79nt, >M01687:476:000000000-LL5F5:1:2101:15250:16912:1... at +/97.47% +172 61nt, >M01687:476:000000000-LL5F5:1:2101:21775:20165:1... at +/100.00% +173 78nt, >M01687:476:000000000-LL5F5:1:2101:18373:22035:1... at +/98.72% +174 79nt, >M01687:476:000000000-LL5F5:1:1115:9739:2503:1... at +/96.20% +175 79nt, >M01687:476:000000000-LL5F5:1:1115:18085:3934:2... at +/98.73% +176 78nt, >M01687:476:000000000-LL5F5:1:1115:24163:6934:1... at +/98.72% +177 79nt, >M01687:476:000000000-LL5F5:1:1115:13345:13304:1... at +/97.47% +178 79nt, >M01687:476:000000000-LL5F5:1:1115:2406:17233:1... at +/98.73% +179 79nt, >M01687:476:000000000-LL5F5:1:1115:14120:20186:2... at +/98.73% +180 79nt, >M01687:476:000000000-LL5F5:1:1115:21831:21217:1... at +/98.73% +181 79nt, >M01687:476:000000000-LL5F5:1:1116:27843:7420:5... at +/98.73% +182 80nt, >M01687:476:000000000-LL5F5:1:1116:11950:8285:1... at +/98.75% +183 79nt, >M01687:476:000000000-LL5F5:1:1116:18965:8335:1... at +/98.73% +184 79nt, >M01687:476:000000000-LL5F5:1:1116:4206:13633:1... at +/98.73% +185 79nt, >M01687:476:000000000-LL5F5:1:1116:17586:19571:2... at +/98.73% +186 78nt, >M01687:476:000000000-LL5F5:1:1114:23375:4829:1... at +/100.00% +187 79nt, >M01687:476:000000000-LL5F5:1:1114:27500:9079:2... at +/97.47% +188 76nt, >M01687:476:000000000-LL5F5:1:1114:28782:14602:2... at +/100.00% +189 78nt, >M01687:476:000000000-LL5F5:1:1114:17292:18855:1... at +/98.72% +190 78nt, >M01687:476:000000000-LL5F5:1:1114:14310:21989:2... at +/98.72% +191 78nt, >M01687:476:000000000-LL5F5:1:1113:15628:2495:1... at +/100.00% +192 75nt, >M01687:476:000000000-LL5F5:1:1113:21949:3170:3... at +/100.00% +193 79nt, >M01687:476:000000000-LL5F5:1:1113:13317:4099:1... at +/98.73% +194 79nt, >M01687:476:000000000-LL5F5:1:1113:13152:4239:1... at +/98.73% +195 79nt, >M01687:476:000000000-LL5F5:1:1113:17709:19882:1... at +/97.47% +196 79nt, >M01687:476:000000000-LL5F5:1:1112:6271:5329:4... at +/97.47% +197 78nt, >M01687:476:000000000-LL5F5:1:1112:7442:8291:1... at +/98.72% +198 79nt, >M01687:476:000000000-LL5F5:1:1112:23022:12723:1... at +/98.73% +199 79nt, >M01687:476:000000000-LL5F5:1:1112:17442:13472:1... at +/97.47% +200 79nt, >M01687:476:000000000-LL5F5:1:1112:9455:15060:2... at +/98.73% +201 79nt, >M01687:476:000000000-LL5F5:1:1112:21019:19262:2... at +/97.47% +202 79nt, >M01687:476:000000000-LL5F5:1:1111:21292:2802:1... at +/97.47% +203 78nt, >M01687:476:000000000-LL5F5:1:1111:7017:4533:1... at +/100.00% +204 78nt, >M01687:476:000000000-LL5F5:1:1111:9524:6111:3... at +/98.72% +205 79nt, >M01687:476:000000000-LL5F5:1:1111:12378:8367:1... at +/97.47% +206 79nt, >M01687:476:000000000-LL5F5:1:1111:8402:11972:1... at +/98.73% +207 79nt, >M01687:476:000000000-LL5F5:1:1111:21021:14509:2... at +/98.73% +208 80nt, >M01687:476:000000000-LL5F5:1:1110:9332:4279:1... at +/97.50% +209 79nt, >M01687:476:000000000-LL5F5:1:1110:17105:6615:1... at +/98.73% +210 79nt, >M01687:476:000000000-LL5F5:1:1110:17984:12205:1... at +/96.20% +211 66nt, >M01687:476:000000000-LL5F5:1:1110:10036:12537:1... at +/100.00% +212 79nt, >M01687:476:000000000-LL5F5:1:1110:4672:14320:1... at +/98.73% +213 79nt, >M01687:476:000000000-LL5F5:1:1109:20044:2085:1... at +/98.73% +214 79nt, >M01687:476:000000000-LL5F5:1:1109:15176:14718:1... at +/96.20% +215 63nt, >M01687:476:000000000-LL5F5:1:1109:23317:15952:1... at +/98.41% +216 79nt, >M01687:476:000000000-LL5F5:1:1109:20599:17723:1... at +/97.47% +217 80nt, >M01687:476:000000000-LL5F5:1:1109:8294:21726:1... at +/97.50% +218 79nt, >M01687:476:000000000-LL5F5:1:1109:18270:22271:1... at +/97.47% +219 78nt, >M01687:476:000000000-LL5F5:1:1109:10292:23868:1... at +/98.72% +220 79nt, >M01687:476:000000000-LL5F5:1:1108:22084:10706:1... at +/98.73% +221 78nt, >M01687:476:000000000-LL5F5:1:1108:7956:11635:1... at +/97.44% +222 79nt, >M01687:476:000000000-LL5F5:1:1108:24068:19730:1... at +/98.73% +223 79nt, >M01687:476:000000000-LL5F5:1:1108:22012:19931:1... at +/97.47% +224 79nt, >M01687:476:000000000-LL5F5:1:1107:15003:4881:1... at +/98.73% +225 69nt, >M01687:476:000000000-LL5F5:1:1107:27423:10610:1... at +/100.00% +226 79nt, >M01687:476:000000000-LL5F5:1:1107:22488:22844:1... at +/98.73% +227 79nt, >M01687:476:000000000-LL5F5:1:1106:8422:2195:2... at +/98.73% +228 79nt, >M01687:476:000000000-LL5F5:1:1106:9775:2810:1... at +/98.73% +229 79nt, >M01687:476:000000000-LL5F5:1:1106:6908:8908:1... at +/97.47% +230 79nt, >M01687:476:000000000-LL5F5:1:1106:13420:18575:1... at +/98.73% +231 79nt, >M01687:476:000000000-LL5F5:1:1106:17107:22649:1... at +/97.47% +232 74nt, >M01687:476:000000000-LL5F5:1:1106:6929:23327:2... at +/100.00% +233 79nt, >M01687:476:000000000-LL5F5:1:1105:5145:6441:1... at +/98.73% +234 79nt, >M01687:476:000000000-LL5F5:1:1105:27389:11863:1... at +/98.73% +235 79nt, >M01687:476:000000000-LL5F5:1:1105:4998:13076:1... at +/98.73% +236 79nt, >M01687:476:000000000-LL5F5:1:1105:4843:15213:1... at +/97.47% +237 78nt, >M01687:476:000000000-LL5F5:1:1104:20232:3497:1... at +/98.72% +238 79nt, >M01687:476:000000000-LL5F5:1:1104:26321:4520:1... at +/98.73% +239 79nt, >M01687:476:000000000-LL5F5:1:1104:21132:12741:1... at +/98.73% +240 79nt, >M01687:476:000000000-LL5F5:1:1103:19446:2947:1... at +/97.47% +241 79nt, >M01687:476:000000000-LL5F5:1:1103:11060:11664:1... at +/97.47% +242 66nt, >M01687:476:000000000-LL5F5:1:1103:16442:12624:1... at +/98.48% +243 79nt, >M01687:476:000000000-LL5F5:1:1103:3127:16979:1... at +/97.47% +244 79nt, >M01687:476:000000000-LL5F5:1:1103:18934:17615:1... at +/97.47% +245 61nt, >M01687:476:000000000-LL5F5:1:1103:11418:18084:1... at +/98.36% +246 78nt, >M01687:476:000000000-LL5F5:1:1103:28340:18357:1... at +/97.44% +247 78nt, >M01687:476:000000000-LL5F5:1:1118:5626:4859:1... at +/98.72% +248 80nt, >M01687:476:000000000-LL5F5:1:1118:12077:6308:1... at +/97.50% +249 79nt, >M01687:476:000000000-LL5F5:1:1118:28558:10373:1... at +/97.47% +250 79nt, >M01687:476:000000000-LL5F5:1:1118:27350:14373:1... at +/98.73% +251 78nt, >M01687:476:000000000-LL5F5:1:1118:26055:21922:1... at +/98.72% +252 79nt, >M01687:476:000000000-LL5F5:1:1117:22822:7829:1... at +/97.47% +253 79nt, >M01687:476:000000000-LL5F5:1:1117:12622:8915:1... at +/96.20% +254 79nt, >M01687:476:000000000-LL5F5:1:1117:3271:14677:1... at +/97.47% +255 78nt, >M01687:476:000000000-LL5F5:1:2118:22603:4401:1... at +/96.15% +256 78nt, >M01687:476:000000000-LL5F5:1:2118:7482:8071:1... at +/98.72% +257 79nt, >M01687:476:000000000-LL5F5:1:2118:14705:19243:1... at +/97.47% +258 79nt, >M01687:476:000000000-LL5F5:1:2118:18016:23766:1... at +/98.73% +259 79nt, >M01687:476:000000000-LL5F5:1:2119:23645:5861:1... at +/97.47% +260 78nt, >M01687:476:000000000-LL5F5:1:2119:11128:7843:1... at +/98.72% +261 79nt, >M01687:476:000000000-LL5F5:1:2119:18168:8524:1... at +/98.73% +262 79nt, >M01687:476:000000000-LL5F5:1:2119:23172:9302:1... at +/96.20% +263 79nt, >M01687:476:000000000-LL5F5:1:2119:20002:23609:1... at +/97.47% +264 79nt, >M01687:476:000000000-LL5F5:1:2119:11495:24558:1... at +/98.73% +>Cluster 2 +0 69nt, >M01687:476:000000000-LL5F5:1:1102:9472:1163:4825... at +/100.00% +1 69nt, >M01687:476:000000000-LL5F5:1:1102:14167:2529:7... at +/97.10% +2 69nt, >M01687:476:000000000-LL5F5:1:1102:15181:2865:3... at +/98.55% +3 68nt, >M01687:476:000000000-LL5F5:1:1102:9911:3915:4... at +/98.53% +4 68nt, >M01687:476:000000000-LL5F5:1:1102:19870:5240:1... at +/100.00% +5 69nt, >M01687:476:000000000-LL5F5:1:1102:11371:5295:3... at +/98.55% +6 66nt, >M01687:476:000000000-LL5F5:1:1102:9295:6719:5... at +/100.00% +7 69nt, >M01687:476:000000000-LL5F5:1:1102:12058:9533:6... at +/98.55% +8 69nt, >M01687:476:000000000-LL5F5:1:1102:3053:9758:5... at +/98.55% +9 69nt, >M01687:476:000000000-LL5F5:1:1102:12716:10084:7... at +/98.55% +10 69nt, >M01687:476:000000000-LL5F5:1:1102:22355:11860:209... at +/98.55% +11 69nt, >M01687:476:000000000-LL5F5:1:1102:18614:13015:1... at +/97.10% +12 69nt, >M01687:476:000000000-LL5F5:1:1102:24417:14342:1... at +/97.10% +13 69nt, >M01687:476:000000000-LL5F5:1:1102:10868:17680:3... at +/98.55% +14 69nt, >M01687:476:000000000-LL5F5:1:1102:21352:18089:3... at +/98.55% +15 69nt, >M01687:476:000000000-LL5F5:1:1102:23609:18264:5... at +/98.55% +16 69nt, >M01687:476:000000000-LL5F5:1:1102:18246:19385:2... at +/98.55% +17 69nt, >M01687:476:000000000-LL5F5:1:1102:21682:20800:5... at +/98.55% +18 69nt, >M01687:476:000000000-LL5F5:1:1102:24784:22272:4... at +/97.10% +19 69nt, >M01687:476:000000000-LL5F5:1:1102:17428:22447:35... at +/98.55% +20 69nt, >M01687:476:000000000-LL5F5:1:1102:13751:22845:3... at +/98.55% +21 69nt, >M01687:476:000000000-LL5F5:1:1102:15897:23475:2... at +/98.55% +22 69nt, >M01687:476:000000000-LL5F5:1:1101:6555:6202:27... at +/98.55% +23 69nt, >M01687:476:000000000-LL5F5:1:1101:6548:6327:2... at +/98.55% +24 69nt, >M01687:476:000000000-LL5F5:1:1101:25014:10030:2... at +/98.55% +25 69nt, >M01687:476:000000000-LL5F5:1:1101:26701:11802:3... at +/98.55% +26 69nt, >M01687:476:000000000-LL5F5:1:1101:18986:12120:7... at +/98.55% +27 69nt, >M01687:476:000000000-LL5F5:1:1101:17633:12488:1... at +/98.55% +28 69nt, >M01687:476:000000000-LL5F5:1:1101:22947:13377:4... at +/98.55% +29 68nt, >M01687:476:000000000-LL5F5:1:1101:16760:15545:7... at +/100.00% +30 69nt, >M01687:476:000000000-LL5F5:1:1101:15932:18519:12... at +/98.55% +31 69nt, >M01687:476:000000000-LL5F5:1:1101:14392:18738:2... at +/98.55% +32 69nt, >M01687:476:000000000-LL5F5:1:1101:17725:19646:5... at +/98.55% +33 69nt, >M01687:476:000000000-LL5F5:1:1101:18671:23001:5... at +/98.55% +34 69nt, >M01687:476:000000000-LL5F5:1:1101:17374:24186:19... at +/98.55% +35 68nt, >M01687:476:000000000-LL5F5:1:1101:11367:24699:1... at +/98.53% +36 69nt, >M01687:476:000000000-LL5F5:1:2115:16147:2013:32... at +/98.55% +37 68nt, >M01687:476:000000000-LL5F5:1:2115:14921:2529:1... at +/98.53% +38 69nt, >M01687:476:000000000-LL5F5:1:2115:10524:5125:22... at +/98.55% +39 69nt, >M01687:476:000000000-LL5F5:1:2115:17666:5814:1... at +/98.55% +40 69nt, >M01687:476:000000000-LL5F5:1:2115:6428:6891:7... at +/98.55% +41 84nt, >M01687:476:000000000-LL5F5:1:2115:23343:6911:1... * +42 69nt, >M01687:476:000000000-LL5F5:1:2115:18870:9622:26... at +/98.55% +43 69nt, >M01687:476:000000000-LL5F5:1:2115:4725:10019:4... at +/98.55% +44 68nt, >M01687:476:000000000-LL5F5:1:2115:10233:10887:7... at +/100.00% +45 69nt, >M01687:476:000000000-LL5F5:1:2115:19349:12625:2... at +/98.55% +46 68nt, >M01687:476:000000000-LL5F5:1:2115:23557:20316:3... at +/100.00% +47 68nt, >M01687:476:000000000-LL5F5:1:2115:11250:22979:1... at +/98.53% +48 69nt, >M01687:476:000000000-LL5F5:1:2115:17354:24443:10... at +/98.55% +49 69nt, >M01687:476:000000000-LL5F5:1:2114:13243:11022:1... at +/98.55% +50 69nt, >M01687:476:000000000-LL5F5:1:2114:16095:14450:7... at +/98.55% +51 69nt, >M01687:476:000000000-LL5F5:1:2114:21847:14734:6... at +/98.55% +52 69nt, >M01687:476:000000000-LL5F5:1:2114:6491:15022:1... at +/97.10% +53 69nt, >M01687:476:000000000-LL5F5:1:2114:4614:18686:2... at +/98.55% +54 69nt, >M01687:476:000000000-LL5F5:1:2114:23258:18739:1... at +/97.10% +55 68nt, >M01687:476:000000000-LL5F5:1:2114:9876:19492:20... at +/100.00% +56 67nt, >M01687:476:000000000-LL5F5:1:2114:23495:23649:3... at +/100.00% +57 69nt, >M01687:476:000000000-LL5F5:1:2113:25407:7861:1... at +/98.55% +58 69nt, >M01687:476:000000000-LL5F5:1:2113:19231:8053:5... at +/98.55% +59 65nt, >M01687:476:000000000-LL5F5:1:2113:17643:9103:5... at +/100.00% +60 68nt, >M01687:476:000000000-LL5F5:1:2113:18758:15566:3... at +/100.00% +61 69nt, >M01687:476:000000000-LL5F5:1:2113:11171:16659:6... at +/98.55% +62 68nt, >M01687:476:000000000-LL5F5:1:2113:7193:17537:1... at +/100.00% +63 68nt, >M01687:476:000000000-LL5F5:1:2112:9913:4747:2... at +/98.53% +64 69nt, >M01687:476:000000000-LL5F5:1:2112:5866:5647:2... at +/98.55% +65 69nt, >M01687:476:000000000-LL5F5:1:2112:11522:8399:5... at +/98.55% +66 69nt, >M01687:476:000000000-LL5F5:1:2112:12032:10664:3... at +/98.55% +67 68nt, >M01687:476:000000000-LL5F5:1:2112:20041:11444:9... at +/100.00% +68 69nt, >M01687:476:000000000-LL5F5:1:2112:25054:19135:1... at +/98.55% +69 69nt, >M01687:476:000000000-LL5F5:1:2112:7433:23952:4... at +/98.55% +70 69nt, >M01687:476:000000000-LL5F5:1:2111:15803:6408:6... at +/98.55% +71 69nt, >M01687:476:000000000-LL5F5:1:2111:25013:7257:2... at +/98.55% +72 69nt, >M01687:476:000000000-LL5F5:1:2111:29205:11824:3... at +/98.55% +73 68nt, >M01687:476:000000000-LL5F5:1:2111:28615:12797:5... at +/100.00% +74 69nt, >M01687:476:000000000-LL5F5:1:2111:26789:15920:9... at +/98.55% +75 69nt, >M01687:476:000000000-LL5F5:1:2111:17740:17070:1... at +/97.10% +76 69nt, >M01687:476:000000000-LL5F5:1:2111:6851:21194:4... at +/98.55% +77 68nt, >M01687:476:000000000-LL5F5:1:2110:27616:8301:2... at +/100.00% +78 69nt, >M01687:476:000000000-LL5F5:1:2110:11615:10818:1... at +/98.55% +79 69nt, >M01687:476:000000000-LL5F5:1:2110:22104:17487:3... at +/98.55% +80 69nt, >M01687:476:000000000-LL5F5:1:2110:14396:23716:5... at +/98.55% +81 69nt, >M01687:476:000000000-LL5F5:1:2109:23314:2412:1... at +/98.55% +82 69nt, >M01687:476:000000000-LL5F5:1:2109:12987:2888:3... at +/98.55% +83 69nt, >M01687:476:000000000-LL5F5:1:2109:28970:15443:1... at +/98.55% +84 69nt, >M01687:476:000000000-LL5F5:1:2108:18391:1477:1... at +/97.10% +85 70nt, >M01687:476:000000000-LL5F5:1:2108:12679:2378:1... at +/98.57% +86 69nt, >M01687:476:000000000-LL5F5:1:2108:20932:5513:2... at +/98.55% +87 69nt, >M01687:476:000000000-LL5F5:1:2108:28450:9261:1... at +/97.10% +88 69nt, >M01687:476:000000000-LL5F5:1:2108:29326:13514:7... at +/98.55% +89 69nt, >M01687:476:000000000-LL5F5:1:2108:24485:20060:4... at +/98.55% +90 69nt, >M01687:476:000000000-LL5F5:1:2106:10423:9311:2... at +/98.55% +91 69nt, >M01687:476:000000000-LL5F5:1:2106:28016:10899:2... at +/98.55% +92 69nt, >M01687:476:000000000-LL5F5:1:2106:19539:11388:11... at +/98.55% +93 68nt, >M01687:476:000000000-LL5F5:1:2106:26244:11810:5... at +/100.00% +94 66nt, >M01687:476:000000000-LL5F5:1:2106:20754:15687:1... at +/98.48% +95 69nt, >M01687:476:000000000-LL5F5:1:2106:22913:19127:1... at +/98.55% +96 63nt, >M01687:476:000000000-LL5F5:1:2106:17380:20014:2... at +/100.00% +97 69nt, >M01687:476:000000000-LL5F5:1:2107:14941:1457:2... at +/98.55% +98 69nt, >M01687:476:000000000-LL5F5:1:2107:6971:2802:5... at +/98.55% +99 69nt, >M01687:476:000000000-LL5F5:1:2107:25447:5517:3... at +/98.55% +100 68nt, >M01687:476:000000000-LL5F5:1:2107:18949:6633:3... at +/100.00% +101 69nt, >M01687:476:000000000-LL5F5:1:2107:27683:8469:3... at +/98.55% +102 69nt, >M01687:476:000000000-LL5F5:1:2107:19304:12466:7... at +/98.55% +103 69nt, >M01687:476:000000000-LL5F5:1:2107:26622:15559:1... at +/97.10% +104 69nt, >M01687:476:000000000-LL5F5:1:2107:18351:18219:5... at +/98.55% +105 69nt, >M01687:476:000000000-LL5F5:1:2104:7869:3187:1... at +/98.55% +106 69nt, >M01687:476:000000000-LL5F5:1:2104:8476:6269:1... at +/98.55% +107 69nt, >M01687:476:000000000-LL5F5:1:2104:17273:7843:1... at +/97.10% +108 65nt, >M01687:476:000000000-LL5F5:1:2104:16968:8628:1... at +/100.00% +109 68nt, >M01687:476:000000000-LL5F5:1:2104:5750:9097:1... at +/98.53% +110 69nt, >M01687:476:000000000-LL5F5:1:2104:2170:9789:3... at +/98.55% +111 69nt, >M01687:476:000000000-LL5F5:1:2104:9738:10941:1... at +/97.10% +112 67nt, >M01687:476:000000000-LL5F5:1:2104:26543:12972:1... at +/97.01% +113 68nt, >M01687:476:000000000-LL5F5:1:2104:27033:14015:2... at +/100.00% +114 68nt, >M01687:476:000000000-LL5F5:1:2104:15946:15703:3... at +/100.00% +115 69nt, >M01687:476:000000000-LL5F5:1:2104:23507:21225:1... at +/97.10% +116 69nt, >M01687:476:000000000-LL5F5:1:2104:9151:23512:2... at +/98.55% +117 68nt, >M01687:476:000000000-LL5F5:1:2105:22818:8872:2... at +/100.00% +118 69nt, >M01687:476:000000000-LL5F5:1:2105:18652:11206:1... at +/97.10% +119 70nt, >M01687:476:000000000-LL5F5:1:2105:7224:11680:1... at +/97.14% +120 70nt, >M01687:476:000000000-LL5F5:1:2105:21324:11730:2... at +/98.57% +121 69nt, >M01687:476:000000000-LL5F5:1:2105:13786:14958:4... at +/98.55% +122 68nt, >M01687:476:000000000-LL5F5:1:2105:22970:19315:2... at +/100.00% +123 69nt, >M01687:476:000000000-LL5F5:1:2105:19848:23701:1... at +/98.55% +124 69nt, >M01687:476:000000000-LL5F5:1:2102:19249:15817:1... at +/98.55% +125 69nt, >M01687:476:000000000-LL5F5:1:2102:11134:23112:1... at +/98.55% +126 69nt, >M01687:476:000000000-LL5F5:1:2102:22742:23414:1... at +/98.55% +127 69nt, >M01687:476:000000000-LL5F5:1:2103:9995:1298:2... at +/98.55% +128 70nt, >M01687:476:000000000-LL5F5:1:2103:12793:3744:1... at +/98.57% +129 69nt, >M01687:476:000000000-LL5F5:1:2103:8783:12663:1... at +/98.55% +130 64nt, >M01687:476:000000000-LL5F5:1:2103:4427:15806:5... at +/100.00% +131 69nt, >M01687:476:000000000-LL5F5:1:2103:15020:21569:1... at +/97.10% +132 69nt, >M01687:476:000000000-LL5F5:1:2116:18063:2039:1... at +/97.10% +133 69nt, >M01687:476:000000000-LL5F5:1:2116:21717:14327:2... at +/98.55% +134 68nt, >M01687:476:000000000-LL5F5:1:2116:26880:14417:2... at +/100.00% +135 69nt, >M01687:476:000000000-LL5F5:1:2117:27673:11515:1... at +/98.55% +136 69nt, >M01687:476:000000000-LL5F5:1:2117:28293:13533:1... at +/97.10% +137 70nt, >M01687:476:000000000-LL5F5:1:2117:7399:14456:1... at +/95.71% +138 69nt, >M01687:476:000000000-LL5F5:1:1119:15879:6066:1... at +/97.10% +139 68nt, >M01687:476:000000000-LL5F5:1:1119:6251:15013:1... at +/98.53% +140 69nt, >M01687:476:000000000-LL5F5:1:1119:2882:18758:1... at +/97.10% +141 69nt, >M01687:476:000000000-LL5F5:1:2101:27227:9652:1... at +/98.55% +142 68nt, >M01687:476:000000000-LL5F5:1:2101:26851:15499:1... at +/100.00% +143 69nt, >M01687:476:000000000-LL5F5:1:2101:24393:23081:3... at +/98.55% +144 69nt, >M01687:476:000000000-LL5F5:1:1115:20393:3944:1... at +/98.55% +145 69nt, >M01687:476:000000000-LL5F5:1:1115:11527:7489:1... at +/97.10% +146 68nt, >M01687:476:000000000-LL5F5:1:1115:22878:8496:1... at +/100.00% +147 69nt, >M01687:476:000000000-LL5F5:1:1115:26160:10488:1... at +/97.10% +148 69nt, >M01687:476:000000000-LL5F5:1:1115:13132:14944:1... at +/98.55% +149 69nt, >M01687:476:000000000-LL5F5:1:1115:13041:19944:1... at +/97.10% +150 69nt, >M01687:476:000000000-LL5F5:1:1116:22786:6321:1... at +/97.10% +151 68nt, >M01687:476:000000000-LL5F5:1:1116:26815:8860:1... at +/98.53% +152 69nt, >M01687:476:000000000-LL5F5:1:1116:6825:9985:1... at +/98.55% +153 69nt, >M01687:476:000000000-LL5F5:1:1116:14437:10915:1... at +/98.55% +154 63nt, >M01687:476:000000000-LL5F5:1:1116:6252:18509:1... at +/98.41% +155 69nt, >M01687:476:000000000-LL5F5:1:1116:14600:18600:1... at +/97.10% +156 68nt, >M01687:476:000000000-LL5F5:1:1114:25747:17868:1... at +/98.53% +157 69nt, >M01687:476:000000000-LL5F5:1:1114:21474:23614:1... at +/98.55% +158 67nt, >M01687:476:000000000-LL5F5:1:1113:11262:5119:1... at +/100.00% +159 69nt, >M01687:476:000000000-LL5F5:1:1113:8330:7362:1... at +/97.10% +160 69nt, >M01687:476:000000000-LL5F5:1:1113:6926:9771:1... at +/97.10% +161 69nt, >M01687:476:000000000-LL5F5:1:1113:24739:10513:1... at +/98.55% +162 69nt, >M01687:476:000000000-LL5F5:1:1113:26942:20611:1... at +/98.55% +163 69nt, >M01687:476:000000000-LL5F5:1:1112:4549:18350:1... at +/98.55% +164 69nt, >M01687:476:000000000-LL5F5:1:1111:13211:6042:1... at +/97.10% +165 69nt, >M01687:476:000000000-LL5F5:1:1111:18685:18812:1... at +/97.10% +166 69nt, >M01687:476:000000000-LL5F5:1:1111:14399:19288:1... at +/97.10% +167 68nt, >M01687:476:000000000-LL5F5:1:1110:8260:4570:1... at +/98.53% +168 69nt, >M01687:476:000000000-LL5F5:1:1110:5692:7207:1... at +/97.10% +169 69nt, >M01687:476:000000000-LL5F5:1:1110:19576:13791:1... at +/98.55% +170 69nt, >M01687:476:000000000-LL5F5:1:1110:11719:17241:1... at +/98.55% +171 66nt, >M01687:476:000000000-LL5F5:1:1110:4427:19440:1... at +/98.48% +172 67nt, >M01687:476:000000000-LL5F5:1:1110:9077:20139:1... at +/95.52% +173 69nt, >M01687:476:000000000-LL5F5:1:1110:9573:20916:1... at +/98.55% +174 69nt, >M01687:476:000000000-LL5F5:1:1109:13592:1754:2... at +/97.10% +175 69nt, >M01687:476:000000000-LL5F5:1:1109:10504:2285:1... at +/98.55% +176 69nt, >M01687:476:000000000-LL5F5:1:1109:16866:4006:2... at +/98.55% +177 69nt, >M01687:476:000000000-LL5F5:1:1109:27822:6219:1... at +/98.55% +178 68nt, >M01687:476:000000000-LL5F5:1:1109:20509:7121:1... at +/98.53% +179 69nt, >M01687:476:000000000-LL5F5:1:1109:25660:11959:2... at +/98.55% +180 69nt, >M01687:476:000000000-LL5F5:1:1109:25425:17557:1... at +/97.10% +181 69nt, >M01687:476:000000000-LL5F5:1:1109:16229:18513:1... at +/97.10% +182 69nt, >M01687:476:000000000-LL5F5:1:1108:11062:9921:1... at +/98.55% +183 70nt, >M01687:476:000000000-LL5F5:1:1108:23905:14043:1... at +/98.57% +184 68nt, >M01687:476:000000000-LL5F5:1:1107:17580:5039:1... at +/100.00% +185 69nt, >M01687:476:000000000-LL5F5:1:1107:17881:20641:1... at +/98.55% +186 69nt, >M01687:476:000000000-LL5F5:1:1107:21544:24421:1... at +/98.55% +187 69nt, >M01687:476:000000000-LL5F5:1:1106:21919:4706:1... at +/98.55% +188 69nt, >M01687:476:000000000-LL5F5:1:1106:20158:9349:1... at +/98.55% +189 69nt, >M01687:476:000000000-LL5F5:1:1106:19121:10698:1... at +/98.55% +190 69nt, >M01687:476:000000000-LL5F5:1:1106:10568:11976:1... at +/98.55% +191 69nt, >M01687:476:000000000-LL5F5:1:1105:16228:2648:1... at +/98.55% +192 69nt, >M01687:476:000000000-LL5F5:1:1105:11294:4328:1... at +/97.10% +193 69nt, >M01687:476:000000000-LL5F5:1:1105:10364:21541:1... at +/97.10% +194 69nt, >M01687:476:000000000-LL5F5:1:1105:16837:21568:1... at +/97.10% +195 69nt, >M01687:476:000000000-LL5F5:1:1103:9214:4104:1... at +/97.10% +196 69nt, >M01687:476:000000000-LL5F5:1:1103:11201:4359:2... at +/98.55% +197 69nt, >M01687:476:000000000-LL5F5:1:1118:24239:11444:2... at +/98.55% +198 69nt, >M01687:476:000000000-LL5F5:1:1118:12178:19748:1... at +/97.10% +199 68nt, >M01687:476:000000000-LL5F5:1:1117:6892:10029:1... at +/98.53% +200 69nt, >M01687:476:000000000-LL5F5:1:1117:12376:11644:1... at +/97.10% +201 69nt, >M01687:476:000000000-LL5F5:1:2118:6895:10983:1... at +/98.55% +202 69nt, >M01687:476:000000000-LL5F5:1:2119:8484:3198:1... at +/98.55% +203 68nt, >M01687:476:000000000-LL5F5:1:2119:25373:21509:1... at +/98.53% +>Cluster 3 +0 65nt, >M01687:476:000000000-LL5F5:1:1102:22091:1346:336... at +/96.92% +1 65nt, >M01687:476:000000000-LL5F5:1:1102:19996:1415:75... at +/98.46% +2 65nt, >M01687:476:000000000-LL5F5:1:1102:24236:2451:2... at +/95.38% +3 65nt, >M01687:476:000000000-LL5F5:1:1102:11640:3167:563... at +/98.46% +4 65nt, >M01687:476:000000000-LL5F5:1:1102:12682:4117:384... at +/96.92% +5 65nt, >M01687:476:000000000-LL5F5:1:1102:14073:4905:1... at +/95.38% +6 65nt, >M01687:476:000000000-LL5F5:1:1102:12960:4966:35... at +/95.38% +7 65nt, >M01687:476:000000000-LL5F5:1:1102:8072:11057:29... at +/98.46% +8 65nt, >M01687:476:000000000-LL5F5:1:1102:22025:15578:28... at +/98.46% +9 65nt, >M01687:476:000000000-LL5F5:1:1102:7941:15639:107... at +/96.92% +10 65nt, >M01687:476:000000000-LL5F5:1:1102:8840:18351:77... at +/98.46% +11 65nt, >M01687:476:000000000-LL5F5:1:1102:6758:20150:34... at +/96.92% +12 65nt, >M01687:476:000000000-LL5F5:1:1102:15294:22287:1... at +/95.38% +13 65nt, >M01687:476:000000000-LL5F5:1:1102:17943:23894:14... at +/100.00% +14 65nt, >M01687:476:000000000-LL5F5:1:1101:20536:2360:2... at +/95.38% +15 65nt, >M01687:476:000000000-LL5F5:1:1101:20895:2751:1... at +/96.92% +16 65nt, >M01687:476:000000000-LL5F5:1:1101:8144:3140:24... at +/96.92% +17 65nt, >M01687:476:000000000-LL5F5:1:1101:17417:6561:4... at +/95.38% +18 65nt, >M01687:476:000000000-LL5F5:1:1101:4897:7370:1... at +/95.38% +19 64nt, >M01687:476:000000000-LL5F5:1:1101:4596:8388:1... at +/96.88% +20 65nt, >M01687:476:000000000-LL5F5:1:1101:22108:9110:14... at +/96.92% +21 65nt, >M01687:476:000000000-LL5F5:1:1101:27798:9544:2... at +/96.92% +22 65nt, >M01687:476:000000000-LL5F5:1:1101:17609:15775:43... at +/98.46% +23 65nt, >M01687:476:000000000-LL5F5:1:1101:22659:16252:3... at +/95.38% +24 65nt, >M01687:476:000000000-LL5F5:1:1101:10508:16459:1... at +/96.92% +25 65nt, >M01687:476:000000000-LL5F5:1:1101:8118:18950:1... at +/96.92% +26 65nt, >M01687:476:000000000-LL5F5:1:2115:24971:3175:1... at +/98.46% +27 65nt, >M01687:476:000000000-LL5F5:1:2115:25653:3779:5... at +/95.38% +28 64nt, >M01687:476:000000000-LL5F5:1:2115:25304:6229:2... at +/96.88% +29 65nt, >M01687:476:000000000-LL5F5:1:2115:22202:6743:7... at +/100.00% +30 65nt, >M01687:476:000000000-LL5F5:1:2115:12175:9403:10... at +/95.38% +31 65nt, >M01687:476:000000000-LL5F5:1:2115:15443:10265:1... at +/95.38% +32 65nt, >M01687:476:000000000-LL5F5:1:2115:6500:11307:1... at +/96.92% +33 65nt, >M01687:476:000000000-LL5F5:1:2115:15761:17556:2... at +/96.92% +34 65nt, >M01687:476:000000000-LL5F5:1:2115:22350:20846:2... at +/96.92% +35 65nt, >M01687:476:000000000-LL5F5:1:2115:19111:22570:2... at +/96.92% +36 65nt, >M01687:476:000000000-LL5F5:1:2115:19680:24726:23... at +/96.92% +37 66nt, >M01687:476:000000000-LL5F5:1:2114:19900:2634:2... at +/95.45% +38 65nt, >M01687:476:000000000-LL5F5:1:2114:26095:5148:2... at +/95.38% +39 65nt, >M01687:476:000000000-LL5F5:1:2114:15583:7694:1... at +/95.38% +40 65nt, >M01687:476:000000000-LL5F5:1:2113:12262:6137:1... at +/95.38% +41 65nt, >M01687:476:000000000-LL5F5:1:2112:24444:4413:2... at +/96.92% +42 65nt, >M01687:476:000000000-LL5F5:1:2112:27670:11242:2... at +/95.38% +43 65nt, >M01687:476:000000000-LL5F5:1:2112:20896:11805:1... at +/96.92% +44 65nt, >M01687:476:000000000-LL5F5:1:2112:24312:13255:6... at +/96.92% +45 64nt, >M01687:476:000000000-LL5F5:1:2112:5302:17798:2... at +/98.44% +46 65nt, >M01687:476:000000000-LL5F5:1:2112:16920:21872:10... at +/96.92% +47 65nt, >M01687:476:000000000-LL5F5:1:2111:20735:4317:1... at +/96.92% +48 64nt, >M01687:476:000000000-LL5F5:1:2111:15849:6272:1... at +/96.88% +49 65nt, >M01687:476:000000000-LL5F5:1:2111:19567:10726:1... at +/95.38% +50 65nt, >M01687:476:000000000-LL5F5:1:2111:5314:13099:3... at +/95.38% +51 64nt, >M01687:476:000000000-LL5F5:1:2111:6793:16586:1... at +/98.44% +52 65nt, >M01687:476:000000000-LL5F5:1:2111:18110:19299:1... at +/95.38% +53 65nt, >M01687:476:000000000-LL5F5:1:2111:25586:20722:1... at +/95.38% +54 58nt, >M01687:476:000000000-LL5F5:1:2111:11134:23570:1... at +/98.28% +55 65nt, >M01687:476:000000000-LL5F5:1:2110:11843:5733:2... at +/96.92% +56 65nt, >M01687:476:000000000-LL5F5:1:2110:13274:8223:1... at +/96.92% +57 65nt, >M01687:476:000000000-LL5F5:1:2110:7879:10284:8... at +/95.38% +58 65nt, >M01687:476:000000000-LL5F5:1:2110:21577:10790:1... at +/95.38% +59 60nt, >M01687:476:000000000-LL5F5:1:2110:10877:12723:1... at +/98.33% +60 55nt, >M01687:476:000000000-LL5F5:1:2110:18437:20626:3... at +/98.18% +61 65nt, >M01687:476:000000000-LL5F5:1:2110:23363:20844:1... at +/95.38% +62 65nt, >M01687:476:000000000-LL5F5:1:2110:7592:21269:1... at +/96.92% +63 65nt, >M01687:476:000000000-LL5F5:1:2110:19187:21574:1... at +/96.92% +64 65nt, >M01687:476:000000000-LL5F5:1:2110:21484:23157:1... at +/96.92% +65 65nt, >M01687:476:000000000-LL5F5:1:2109:12140:1402:1... at +/96.92% +66 65nt, >M01687:476:000000000-LL5F5:1:2109:19774:6620:1... at +/98.46% +67 64nt, >M01687:476:000000000-LL5F5:1:2108:25883:7530:1... at +/96.88% +68 65nt, >M01687:476:000000000-LL5F5:1:2108:26577:8223:2... at +/96.92% +69 65nt, >M01687:476:000000000-LL5F5:1:2108:16840:13839:1... at +/95.38% +70 65nt, >M01687:476:000000000-LL5F5:1:2108:14777:20688:1... at +/95.38% +71 65nt, >M01687:476:000000000-LL5F5:1:2108:8329:22473:1... at +/96.92% +72 62nt, >M01687:476:000000000-LL5F5:1:2108:9110:23188:1... at +/98.39% +73 65nt, >M01687:476:000000000-LL5F5:1:2108:21079:24177:1... at +/96.92% +74 64nt, >M01687:476:000000000-LL5F5:1:2106:24527:14516:1... at +/95.31% +75 65nt, >M01687:476:000000000-LL5F5:1:2106:14856:18130:2... at +/96.92% +76 64nt, >M01687:476:000000000-LL5F5:1:2107:11842:2481:1... at +/98.44% +77 65nt, >M01687:476:000000000-LL5F5:1:2107:24288:4069:2... at +/96.92% +78 65nt, >M01687:476:000000000-LL5F5:1:2107:13381:9979:1... at +/95.38% +79 64nt, >M01687:476:000000000-LL5F5:1:2107:11706:14511:1... at +/96.88% +80 65nt, >M01687:476:000000000-LL5F5:1:2107:16710:16457:1... at +/95.38% +81 64nt, >M01687:476:000000000-LL5F5:1:2104:21670:5515:1... at +/98.44% +82 65nt, >M01687:476:000000000-LL5F5:1:2104:22717:5555:1... at +/95.38% +83 65nt, >M01687:476:000000000-LL5F5:1:2104:19801:19190:1... at +/95.38% +84 65nt, >M01687:476:000000000-LL5F5:1:2104:20601:20869:1... at +/98.46% +85 65nt, >M01687:476:000000000-LL5F5:1:2104:25984:22490:1... at +/95.38% +86 57nt, >M01687:476:000000000-LL5F5:1:2105:22646:1448:1... at +/98.25% +87 65nt, >M01687:476:000000000-LL5F5:1:2105:10677:3204:1... at +/96.92% +88 65nt, >M01687:476:000000000-LL5F5:1:2105:13927:6191:1... at +/95.38% +89 60nt, >M01687:476:000000000-LL5F5:1:2105:18883:11411:2... at +/96.67% +90 64nt, >M01687:476:000000000-LL5F5:1:2105:16565:11715:1... at +/98.44% +91 64nt, >M01687:476:000000000-LL5F5:1:2105:22462:16052:1... at +/98.44% +92 65nt, >M01687:476:000000000-LL5F5:1:2105:5695:16076:1... at +/96.92% +93 65nt, >M01687:476:000000000-LL5F5:1:2105:17377:17581:8... at +/100.00% +94 65nt, >M01687:476:000000000-LL5F5:1:2105:20043:24735:1... at +/95.38% +95 65nt, >M01687:476:000000000-LL5F5:1:2102:16333:11092:1... at +/95.38% +96 65nt, >M01687:476:000000000-LL5F5:1:2102:9804:13656:1... at +/98.46% +97 65nt, >M01687:476:000000000-LL5F5:1:2102:11924:20085:1... at +/96.92% +98 65nt, >M01687:476:000000000-LL5F5:1:2103:14214:20761:1... at +/96.92% +99 64nt, >M01687:476:000000000-LL5F5:1:2116:13851:4819:1... at +/100.00% +100 65nt, >M01687:476:000000000-LL5F5:1:2116:6148:6229:1... at +/96.92% +101 65nt, >M01687:476:000000000-LL5F5:1:2116:10746:7276:1... at +/96.92% +102 65nt, >M01687:476:000000000-LL5F5:1:2116:6905:9225:1... at +/95.38% +103 65nt, >M01687:476:000000000-LL5F5:1:2116:12480:10430:3... at +/96.92% +104 65nt, >M01687:476:000000000-LL5F5:1:2116:24065:14814:2... at +/98.46% +105 65nt, >M01687:476:000000000-LL5F5:1:2116:27090:19953:1... at +/95.38% +106 65nt, >M01687:476:000000000-LL5F5:1:2116:8951:20772:1... at +/95.38% +107 65nt, >M01687:476:000000000-LL5F5:1:2117:16597:7891:1... at +/95.38% +108 65nt, >M01687:476:000000000-LL5F5:1:2117:4071:10550:1... at +/96.92% +109 65nt, >M01687:476:000000000-LL5F5:1:2117:5035:10587:3... at +/95.38% +110 65nt, >M01687:476:000000000-LL5F5:1:2117:11152:12456:2... at +/96.92% +111 64nt, >M01687:476:000000000-LL5F5:1:1119:23441:6905:1... at +/98.44% +112 65nt, >M01687:476:000000000-LL5F5:1:1119:13394:7089:1... at +/96.92% +113 65nt, >M01687:476:000000000-LL5F5:1:1119:8455:8520:1... at +/95.38% +114 65nt, >M01687:476:000000000-LL5F5:1:1119:15179:8722:1... at +/98.46% +115 65nt, >M01687:476:000000000-LL5F5:1:1119:27659:9633:1... at +/96.92% +116 64nt, >M01687:476:000000000-LL5F5:1:1119:17734:16211:1... at +/96.88% +117 65nt, >M01687:476:000000000-LL5F5:1:1119:15784:22950:1... at +/95.38% +118 65nt, >M01687:476:000000000-LL5F5:1:2101:22499:2810:1... at +/95.38% +119 65nt, >M01687:476:000000000-LL5F5:1:2101:8314:5435:1... at +/96.92% +120 65nt, >M01687:476:000000000-LL5F5:1:2101:9680:8179:1... at +/96.92% +121 67nt, >M01687:476:000000000-LL5F5:1:2101:19111:13013:1... * +122 65nt, >M01687:476:000000000-LL5F5:1:2101:15414:13897:1... at +/95.38% +123 64nt, >M01687:476:000000000-LL5F5:1:2101:8606:18417:2... at +/96.88% +124 64nt, >M01687:476:000000000-LL5F5:1:2101:18752:23907:1... at +/98.44% +125 65nt, >M01687:476:000000000-LL5F5:1:1115:25181:6641:1... at +/96.92% +126 65nt, >M01687:476:000000000-LL5F5:1:1115:4242:18423:1... at +/96.92% +127 65nt, >M01687:476:000000000-LL5F5:1:1115:21458:20256:1... at +/96.92% +128 65nt, >M01687:476:000000000-LL5F5:1:1115:8145:24320:1... at +/95.38% +129 65nt, >M01687:476:000000000-LL5F5:1:1116:28974:10974:1... at +/95.38% +130 65nt, >M01687:476:000000000-LL5F5:1:1116:10709:11149:2... at +/95.38% +131 65nt, >M01687:476:000000000-LL5F5:1:1116:16984:12062:1... at +/95.38% +132 65nt, >M01687:476:000000000-LL5F5:1:1116:28641:13937:1... at +/96.92% +133 65nt, >M01687:476:000000000-LL5F5:1:1116:15629:16066:1... at +/96.92% +134 65nt, >M01687:476:000000000-LL5F5:1:1116:9265:19987:3... at +/95.38% +135 65nt, >M01687:476:000000000-LL5F5:1:1116:15748:20010:1... at +/95.38% +136 57nt, >M01687:476:000000000-LL5F5:1:1114:19439:8275:1... at +/96.49% +137 65nt, >M01687:476:000000000-LL5F5:1:1114:26116:11627:1... at +/95.38% +138 65nt, >M01687:476:000000000-LL5F5:1:1114:24247:22322:2... at +/95.38% +139 65nt, >M01687:476:000000000-LL5F5:1:1114:13081:23842:2... at +/95.38% +140 65nt, >M01687:476:000000000-LL5F5:1:1113:18914:5128:1... at +/98.46% +141 65nt, >M01687:476:000000000-LL5F5:1:1113:26300:5237:1... at +/96.92% +142 65nt, >M01687:476:000000000-LL5F5:1:1113:21859:5401:2... at +/95.38% +143 65nt, >M01687:476:000000000-LL5F5:1:1113:18242:7985:1... at +/95.38% +144 65nt, >M01687:476:000000000-LL5F5:1:1113:4925:8656:1... at +/95.38% +145 65nt, >M01687:476:000000000-LL5F5:1:1113:23951:9864:1... at +/96.92% +146 65nt, >M01687:476:000000000-LL5F5:1:1113:28052:9958:1... at +/95.38% +147 65nt, >M01687:476:000000000-LL5F5:1:1113:7998:21382:1... at +/95.38% +148 65nt, >M01687:476:000000000-LL5F5:1:1112:24401:5380:2... at +/95.38% +149 65nt, >M01687:476:000000000-LL5F5:1:1112:17409:6309:2... at +/95.38% +150 65nt, >M01687:476:000000000-LL5F5:1:1112:24932:11154:1... at +/95.38% +151 64nt, >M01687:476:000000000-LL5F5:1:1112:17561:15177:1... at +/96.88% +152 65nt, >M01687:476:000000000-LL5F5:1:1111:23244:4668:1... at +/95.38% +153 53nt, >M01687:476:000000000-LL5F5:1:1111:2674:9764:1... at +/98.11% +154 64nt, >M01687:476:000000000-LL5F5:1:1111:26793:14095:1... at +/96.88% +155 65nt, >M01687:476:000000000-LL5F5:1:1111:6414:17319:1... at +/95.38% +156 65nt, >M01687:476:000000000-LL5F5:1:1111:11032:20623:1... at +/96.92% +157 65nt, >M01687:476:000000000-LL5F5:1:1110:21312:10008:1... at +/98.46% +158 65nt, >M01687:476:000000000-LL5F5:1:1110:7318:10246:1... at +/96.92% +159 64nt, >M01687:476:000000000-LL5F5:1:1110:19763:23830:1... at +/96.88% +160 65nt, >M01687:476:000000000-LL5F5:1:1109:6305:6044:1... at +/96.92% +161 65nt, >M01687:476:000000000-LL5F5:1:1109:4467:10054:2... at +/96.92% +162 64nt, >M01687:476:000000000-LL5F5:1:1109:15307:23329:1... at +/98.44% +163 65nt, >M01687:476:000000000-LL5F5:1:1108:6384:3903:1... at +/96.92% +164 65nt, >M01687:476:000000000-LL5F5:1:1108:26183:4710:1... at +/95.38% +165 52nt, >M01687:476:000000000-LL5F5:1:1108:10276:21434:1... at +/98.08% +166 52nt, >M01687:476:000000000-LL5F5:1:1107:12915:13436:1... at +/96.15% +167 55nt, >M01687:476:000000000-LL5F5:1:1107:8974:16799:3... at +/98.18% +168 65nt, >M01687:476:000000000-LL5F5:1:1106:27789:7613:1... at +/95.38% +169 65nt, >M01687:476:000000000-LL5F5:1:1106:12461:11862:1... at +/96.92% +170 65nt, >M01687:476:000000000-LL5F5:1:1106:27585:14070:1... at +/95.38% +171 64nt, >M01687:476:000000000-LL5F5:1:1106:23147:19483:1... at +/98.44% +172 65nt, >M01687:476:000000000-LL5F5:1:1106:16483:19850:1... at +/96.92% +173 65nt, >M01687:476:000000000-LL5F5:1:1105:13339:4993:1... at +/96.92% +174 65nt, >M01687:476:000000000-LL5F5:1:1105:20961:5786:1... at +/95.38% +175 65nt, >M01687:476:000000000-LL5F5:1:1105:18873:12401:2... at +/96.92% +176 65nt, >M01687:476:000000000-LL5F5:1:1104:10465:10336:1... at +/96.92% +177 64nt, >M01687:476:000000000-LL5F5:1:1104:20864:17615:1... at +/96.88% +178 54nt, >M01687:476:000000000-LL5F5:1:1103:6091:12074:1... at +/96.30% +179 65nt, >M01687:476:000000000-LL5F5:1:1103:16571:15343:1... at +/95.38% +180 65nt, >M01687:476:000000000-LL5F5:1:1118:9211:3574:1... at +/96.92% +181 65nt, >M01687:476:000000000-LL5F5:1:1118:21887:8671:1... at +/95.38% +182 65nt, >M01687:476:000000000-LL5F5:1:1118:16686:14563:1... at +/95.38% +183 58nt, >M01687:476:000000000-LL5F5:1:1118:28780:16635:1... at +/98.28% +184 64nt, >M01687:476:000000000-LL5F5:1:1117:14725:4803:1... at +/96.88% +185 65nt, >M01687:476:000000000-LL5F5:1:1117:8159:5243:1... at +/96.92% +186 52nt, >M01687:476:000000000-LL5F5:1:1117:14148:13794:1... at +/98.08% +187 65nt, >M01687:476:000000000-LL5F5:1:1117:3583:14500:1... at +/95.38% +188 65nt, >M01687:476:000000000-LL5F5:1:1117:18060:17050:1... at +/96.92% +189 65nt, >M01687:476:000000000-LL5F5:1:2118:15141:18822:1... at +/96.92% +190 65nt, >M01687:476:000000000-LL5F5:1:2118:17382:23011:1... at +/96.92% +191 60nt, >M01687:476:000000000-LL5F5:1:2118:18120:23105:1... at +/98.33% +192 64nt, >M01687:476:000000000-LL5F5:1:2118:13036:24289:1... at +/98.44% +193 65nt, >M01687:476:000000000-LL5F5:1:2119:7447:3957:1... at +/95.38% +194 60nt, >M01687:476:000000000-LL5F5:1:2119:25477:6252:1... at +/98.33% +195 65nt, >M01687:476:000000000-LL5F5:1:2119:16920:18675:1... at +/96.92% +>Cluster 4 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:11130:1143:1365... at +/100.00% +1 90nt, >M01687:476:000000000-LL5F5:1:1102:13225:2515:1... at +/98.89% +2 90nt, >M01687:476:000000000-LL5F5:1:1102:19228:8317:1... at +/98.89% +3 89nt, >M01687:476:000000000-LL5F5:1:1102:21193:11910:2... at +/100.00% +4 90nt, >M01687:476:000000000-LL5F5:1:1102:24822:16524:1... at +/98.89% +5 90nt, >M01687:476:000000000-LL5F5:1:1102:25272:18461:2... at +/98.89% +6 84nt, >M01687:476:000000000-LL5F5:1:1101:16126:2414:1... at +/100.00% +7 90nt, >M01687:476:000000000-LL5F5:1:1101:14246:7987:3... at +/98.89% +8 89nt, >M01687:476:000000000-LL5F5:1:1101:3631:12511:1... at +/98.88% +9 90nt, >M01687:476:000000000-LL5F5:1:1101:23445:15198:1... at +/98.89% +10 70nt, >M01687:476:000000000-LL5F5:1:2115:7319:2978:5... at +/100.00% +11 90nt, >M01687:476:000000000-LL5F5:1:2115:14277:6847:1... at +/98.89% +12 90nt, >M01687:476:000000000-LL5F5:1:2115:22699:11733:1... at +/98.89% +13 90nt, >M01687:476:000000000-LL5F5:1:2115:13382:14208:2... at +/98.89% +14 89nt, >M01687:476:000000000-LL5F5:1:2115:14874:17624:2... at +/100.00% +15 90nt, >M01687:476:000000000-LL5F5:1:2115:10194:19290:1... at +/98.89% +16 90nt, >M01687:476:000000000-LL5F5:1:2115:23282:21922:1... at +/98.89% +17 90nt, >M01687:476:000000000-LL5F5:1:2115:6114:22641:1... at +/98.89% +18 90nt, >M01687:476:000000000-LL5F5:1:2114:26873:8491:1... at +/98.89% +19 89nt, >M01687:476:000000000-LL5F5:1:2114:9623:9524:7... at +/100.00% +20 90nt, >M01687:476:000000000-LL5F5:1:2114:11225:17246:5... at +/98.89% +21 79nt, >M01687:476:000000000-LL5F5:1:2114:3617:18537:1... at +/100.00% +22 90nt, >M01687:476:000000000-LL5F5:1:2113:18434:2725:2... at +/98.89% +23 90nt, >M01687:476:000000000-LL5F5:1:2113:17807:7739:1... at +/98.89% +24 90nt, >M01687:476:000000000-LL5F5:1:2113:21639:8430:1... at +/98.89% +25 90nt, >M01687:476:000000000-LL5F5:1:2113:26903:8535:3... at +/98.89% +26 90nt, >M01687:476:000000000-LL5F5:1:2113:27219:12019:1... at +/98.89% +27 88nt, >M01687:476:000000000-LL5F5:1:2113:6440:21003:1... at +/98.86% +28 89nt, >M01687:476:000000000-LL5F5:1:2113:13111:23469:1... at +/100.00% +29 82nt, >M01687:476:000000000-LL5F5:1:2113:8531:24574:1... at +/100.00% +30 90nt, >M01687:476:000000000-LL5F5:1:2112:10888:9779:3... at +/98.89% +31 73nt, >M01687:476:000000000-LL5F5:1:2112:20972:9923:2... at +/100.00% +32 88nt, >M01687:476:000000000-LL5F5:1:2112:18843:12214:1... at +/98.86% +33 89nt, >M01687:476:000000000-LL5F5:1:2112:15171:15613:8... at +/100.00% +34 90nt, >M01687:476:000000000-LL5F5:1:2111:22922:3142:1... at +/97.78% +35 90nt, >M01687:476:000000000-LL5F5:1:2111:10415:5421:3... at +/98.89% +36 83nt, >M01687:476:000000000-LL5F5:1:2111:25541:13036:2... at +/100.00% +37 90nt, >M01687:476:000000000-LL5F5:1:2111:14081:14614:8... at +/98.89% +38 90nt, >M01687:476:000000000-LL5F5:1:2111:7375:19519:1... at +/98.89% +39 90nt, >M01687:476:000000000-LL5F5:1:2111:15567:24924:1... at +/98.89% +40 90nt, >M01687:476:000000000-LL5F5:1:2110:7909:3420:1... at +/98.89% +41 71nt, >M01687:476:000000000-LL5F5:1:2110:2690:9370:4... at +/100.00% +42 90nt, >M01687:476:000000000-LL5F5:1:2110:9002:11431:1... at +/98.89% +43 90nt, >M01687:476:000000000-LL5F5:1:2110:25186:12729:2... at +/98.89% +44 89nt, >M01687:476:000000000-LL5F5:1:2110:4344:16421:6... at +/100.00% +45 89nt, >M01687:476:000000000-LL5F5:1:2110:23262:19404:2... at +/100.00% +46 90nt, >M01687:476:000000000-LL5F5:1:2109:23088:3681:1... at +/98.89% +47 91nt, >M01687:476:000000000-LL5F5:1:2109:20864:3975:1... * +48 89nt, >M01687:476:000000000-LL5F5:1:2109:19423:6855:1... at +/100.00% +49 90nt, >M01687:476:000000000-LL5F5:1:2108:16474:8049:6... at +/98.89% +50 90nt, >M01687:476:000000000-LL5F5:1:2108:5958:9567:1... at +/98.89% +51 89nt, >M01687:476:000000000-LL5F5:1:2108:9628:13114:1... at +/98.88% +52 90nt, >M01687:476:000000000-LL5F5:1:2108:22580:15430:1... at +/98.89% +53 78nt, >M01687:476:000000000-LL5F5:1:2106:7499:7969:2... at +/100.00% +54 89nt, >M01687:476:000000000-LL5F5:1:2106:17843:10740:1... at +/100.00% +55 90nt, >M01687:476:000000000-LL5F5:1:2106:2498:11108:1... at +/98.89% +56 90nt, >M01687:476:000000000-LL5F5:1:2107:10063:2565:1... at +/98.89% +57 89nt, >M01687:476:000000000-LL5F5:1:2107:6847:4358:1... at +/98.88% +58 90nt, >M01687:476:000000000-LL5F5:1:2104:5380:9551:1... at +/98.89% +59 90nt, >M01687:476:000000000-LL5F5:1:2104:8956:12872:3... at +/98.89% +60 84nt, >M01687:476:000000000-LL5F5:1:2104:23747:17459:4... at +/100.00% +61 90nt, >M01687:476:000000000-LL5F5:1:2104:16914:23064:1... at +/98.89% +62 90nt, >M01687:476:000000000-LL5F5:1:2102:21709:6420:3... at +/98.89% +63 80nt, >M01687:476:000000000-LL5F5:1:2103:20304:1112:2... at +/100.00% +64 90nt, >M01687:476:000000000-LL5F5:1:2103:14154:1872:2... at +/98.89% +65 90nt, >M01687:476:000000000-LL5F5:1:2103:2662:9384:1... at +/98.89% +66 90nt, >M01687:476:000000000-LL5F5:1:2103:10502:19610:2... at +/98.89% +67 69nt, >M01687:476:000000000-LL5F5:1:2103:18023:23300:1... at +/97.10% +68 89nt, >M01687:476:000000000-LL5F5:1:2103:20500:24188:1... at +/98.88% +69 85nt, >M01687:476:000000000-LL5F5:1:2116:2076:11869:3... at +/100.00% +70 89nt, >M01687:476:000000000-LL5F5:1:2116:26260:14873:1... at +/100.00% +71 90nt, >M01687:476:000000000-LL5F5:1:2116:22321:20509:1... at +/98.89% +72 69nt, >M01687:476:000000000-LL5F5:1:2117:22228:7576:5... at +/98.55% +73 90nt, >M01687:476:000000000-LL5F5:1:2117:3957:9107:1... at +/98.89% +74 90nt, >M01687:476:000000000-LL5F5:1:2117:10511:9330:1... at +/98.89% +75 90nt, >M01687:476:000000000-LL5F5:1:2117:4289:14258:3... at +/98.89% +76 90nt, >M01687:476:000000000-LL5F5:1:2117:2990:16170:1... at +/98.89% +77 89nt, >M01687:476:000000000-LL5F5:1:1119:20358:22142:1... at +/100.00% +78 90nt, >M01687:476:000000000-LL5F5:1:2101:23296:4646:2... at +/98.89% +79 90nt, >M01687:476:000000000-LL5F5:1:2101:22242:10346:2... at +/98.89% +80 90nt, >M01687:476:000000000-LL5F5:1:2101:3247:14341:1... at +/98.89% +81 75nt, >M01687:476:000000000-LL5F5:1:2101:12529:15987:4... at +/100.00% +82 90nt, >M01687:476:000000000-LL5F5:1:2101:9404:16143:1... at +/98.89% +83 90nt, >M01687:476:000000000-LL5F5:1:2101:23217:22634:1... at +/98.89% +84 90nt, >M01687:476:000000000-LL5F5:1:1115:21275:1596:1... at +/98.89% +85 90nt, >M01687:476:000000000-LL5F5:1:1116:14115:23793:3... at +/98.89% +86 90nt, >M01687:476:000000000-LL5F5:1:1114:6066:9920:1... at +/98.89% +87 90nt, >M01687:476:000000000-LL5F5:1:1114:25932:15251:1... at +/98.89% +88 90nt, >M01687:476:000000000-LL5F5:1:1113:14045:7750:1... at +/98.89% +89 90nt, >M01687:476:000000000-LL5F5:1:1113:2405:16693:2... at +/98.89% +90 90nt, >M01687:476:000000000-LL5F5:1:1113:3759:17512:1... at +/98.89% +91 90nt, >M01687:476:000000000-LL5F5:1:1112:9172:20701:1... at +/97.78% +92 89nt, >M01687:476:000000000-LL5F5:1:1111:17345:6235:1... at +/100.00% +93 90nt, >M01687:476:000000000-LL5F5:1:1111:3087:10555:1... at +/98.89% +94 90nt, >M01687:476:000000000-LL5F5:1:1111:12159:16382:1... at +/98.89% +95 89nt, >M01687:476:000000000-LL5F5:1:1109:24885:8423:1... at +/100.00% +96 77nt, >M01687:476:000000000-LL5F5:1:1109:4665:11710:1... at +/100.00% +97 90nt, >M01687:476:000000000-LL5F5:1:1108:27863:8966:1... at +/98.89% +98 89nt, >M01687:476:000000000-LL5F5:1:1108:26015:9940:1... at +/98.88% +99 90nt, >M01687:476:000000000-LL5F5:1:1108:7962:13856:1... at +/98.89% +100 90nt, >M01687:476:000000000-LL5F5:1:1108:29255:14150:1... at +/98.89% +101 90nt, >M01687:476:000000000-LL5F5:1:1107:2760:14128:1... at +/98.89% +102 90nt, >M01687:476:000000000-LL5F5:1:1107:21011:20115:1... at +/98.89% +103 86nt, >M01687:476:000000000-LL5F5:1:1106:6895:11621:1... at +/100.00% +104 89nt, >M01687:476:000000000-LL5F5:1:1106:8642:24564:1... at +/100.00% +105 90nt, >M01687:476:000000000-LL5F5:1:1105:21554:11467:1... at +/98.89% +106 88nt, >M01687:476:000000000-LL5F5:1:1105:26827:11694:1... at +/100.00% +107 90nt, >M01687:476:000000000-LL5F5:1:1105:16893:17805:1... at +/98.89% +108 90nt, >M01687:476:000000000-LL5F5:1:1104:2893:12757:1... at +/98.89% +109 90nt, >M01687:476:000000000-LL5F5:1:1104:6093:13533:1... at +/98.89% +110 90nt, >M01687:476:000000000-LL5F5:1:1103:15265:8121:1... at +/98.89% +111 72nt, >M01687:476:000000000-LL5F5:1:1103:10055:13671:2... at +/100.00% +112 90nt, >M01687:476:000000000-LL5F5:1:1103:13348:23457:1... at +/98.89% +113 90nt, >M01687:476:000000000-LL5F5:1:1118:4428:9587:2... at +/98.89% +114 90nt, >M01687:476:000000000-LL5F5:1:1118:27420:12074:1... at +/98.89% +115 89nt, >M01687:476:000000000-LL5F5:1:2118:12113:17263:1... at +/100.00% +>Cluster 5 +0 104nt, >M01687:476:000000000-LL5F5:1:1101:5476:4701:4... at +/98.08% +1 109nt, >M01687:476:000000000-LL5F5:1:1101:20287:12139:1... * +2 109nt, >M01687:476:000000000-LL5F5:1:1101:24863:12231:4... at +/97.25% +3 86nt, >M01687:476:000000000-LL5F5:1:1101:5363:18413:2... at +/97.67% +4 109nt, >M01687:476:000000000-LL5F5:1:1101:11157:18682:1... at +/97.25% +5 82nt, >M01687:476:000000000-LL5F5:1:1101:9275:19867:2... at +/98.78% +6 109nt, >M01687:476:000000000-LL5F5:1:1101:10417:21390:4... at +/97.25% +7 109nt, >M01687:476:000000000-LL5F5:1:1101:7159:23576:2... at +/97.25% +8 109nt, >M01687:476:000000000-LL5F5:1:2115:9701:1879:5... at +/97.25% +9 108nt, >M01687:476:000000000-LL5F5:1:2115:12738:6737:2... at +/98.15% +10 109nt, >M01687:476:000000000-LL5F5:1:2115:18884:7193:1... at +/97.25% +11 109nt, >M01687:476:000000000-LL5F5:1:2115:21582:15641:4... at +/97.25% +12 94nt, >M01687:476:000000000-LL5F5:1:2115:8383:22820:3... at +/97.87% +13 109nt, >M01687:476:000000000-LL5F5:1:2115:20137:23038:1... at +/97.25% +14 109nt, >M01687:476:000000000-LL5F5:1:2114:14945:14260:3... at +/99.08% +15 109nt, >M01687:476:000000000-LL5F5:1:2114:7108:17939:1... at +/96.33% +16 109nt, >M01687:476:000000000-LL5F5:1:2114:26827:19728:1... at +/95.41% +17 109nt, >M01687:476:000000000-LL5F5:1:2113:20692:1971:8... at +/97.25% +18 109nt, >M01687:476:000000000-LL5F5:1:2113:7190:4278:5... at +/97.25% +19 108nt, >M01687:476:000000000-LL5F5:1:2113:26220:11207:1... at +/97.22% +20 109nt, >M01687:476:000000000-LL5F5:1:2113:3131:17183:1... at +/96.33% +21 82nt, >M01687:476:000000000-LL5F5:1:2113:23047:18352:1... at +/95.12% +22 108nt, >M01687:476:000000000-LL5F5:1:2112:19843:6656:1... at +/98.15% +23 90nt, >M01687:476:000000000-LL5F5:1:2112:27148:16604:2... at +/97.78% +24 109nt, >M01687:476:000000000-LL5F5:1:2111:3708:8743:5... at +/97.25% +25 109nt, >M01687:476:000000000-LL5F5:1:2111:12860:13059:2... at +/97.25% +26 109nt, >M01687:476:000000000-LL5F5:1:2111:10951:14034:1... at +/97.25% +27 109nt, >M01687:476:000000000-LL5F5:1:2111:9831:18079:3... at +/97.25% +28 109nt, >M01687:476:000000000-LL5F5:1:2111:23948:22061:2... at +/97.25% +29 109nt, >M01687:476:000000000-LL5F5:1:2110:24925:3071:1... at +/97.25% +30 109nt, >M01687:476:000000000-LL5F5:1:2110:22824:24959:10... at +/99.08% +31 108nt, >M01687:476:000000000-LL5F5:1:2109:27230:20613:1... at +/98.15% +32 109nt, >M01687:476:000000000-LL5F5:1:2108:26570:18297:1... at +/96.33% +33 88nt, >M01687:476:000000000-LL5F5:1:2108:15434:22036:1... at +/97.73% +34 109nt, >M01687:476:000000000-LL5F5:1:2106:5645:4006:2... at +/97.25% +35 109nt, >M01687:476:000000000-LL5F5:1:2106:5557:7679:1... at +/97.25% +36 109nt, >M01687:476:000000000-LL5F5:1:2107:3092:11663:1... at +/97.25% +37 109nt, >M01687:476:000000000-LL5F5:1:2107:29142:12907:1... at +/97.25% +38 109nt, >M01687:476:000000000-LL5F5:1:2107:14453:19831:3... at +/97.25% +39 109nt, >M01687:476:000000000-LL5F5:1:2102:19234:4129:2... at +/97.25% +40 109nt, >M01687:476:000000000-LL5F5:1:2102:19005:5919:2... at +/97.25% +41 109nt, >M01687:476:000000000-LL5F5:1:2102:27237:16574:3... at +/97.25% +42 109nt, >M01687:476:000000000-LL5F5:1:2116:8684:6347:1... at +/97.25% +43 99nt, >M01687:476:000000000-LL5F5:1:2116:26426:12841:1... at +/97.98% +44 109nt, >M01687:476:000000000-LL5F5:1:2117:5776:10180:1... at +/96.33% +45 82nt, >M01687:476:000000000-LL5F5:1:2117:12961:12003:1... at +/97.56% +46 109nt, >M01687:476:000000000-LL5F5:1:1119:19838:5246:1... at +/97.25% +47 109nt, >M01687:476:000000000-LL5F5:1:1119:17731:5981:1... at +/97.25% +48 84nt, >M01687:476:000000000-LL5F5:1:1115:16476:21321:1... at +/98.81% +49 109nt, >M01687:476:000000000-LL5F5:1:1116:19856:4563:1... at +/97.25% +50 109nt, >M01687:476:000000000-LL5F5:1:1116:10135:12236:1... at +/96.33% +51 104nt, >M01687:476:000000000-LL5F5:1:1114:16653:1391:1... at +/97.12% +52 109nt, >M01687:476:000000000-LL5F5:1:1114:26384:9014:2... at +/97.25% +53 108nt, >M01687:476:000000000-LL5F5:1:1114:7106:14667:1... at +/98.15% +54 108nt, >M01687:476:000000000-LL5F5:1:1114:24308:17112:1... at +/98.15% +55 109nt, >M01687:476:000000000-LL5F5:1:1113:28796:11722:3... at +/97.25% +56 109nt, >M01687:476:000000000-LL5F5:1:1113:24636:13966:1... at +/97.25% +57 109nt, >M01687:476:000000000-LL5F5:1:1113:11944:19597:2... at +/97.25% +58 109nt, >M01687:476:000000000-LL5F5:1:1112:14633:5405:1... at +/97.25% +59 109nt, >M01687:476:000000000-LL5F5:1:1112:11845:13816:1... at +/97.25% +60 109nt, >M01687:476:000000000-LL5F5:1:1112:19627:17890:1... at +/97.25% +61 109nt, >M01687:476:000000000-LL5F5:1:1111:19254:11763:1... at +/97.25% +62 89nt, >M01687:476:000000000-LL5F5:1:1111:18022:12302:1... at +/97.75% +63 88nt, >M01687:476:000000000-LL5F5:1:1110:17890:9886:2... at +/97.73% +64 83nt, >M01687:476:000000000-LL5F5:1:1110:26540:20697:2... at +/98.80% +65 109nt, >M01687:476:000000000-LL5F5:1:1109:13841:2240:1... at +/97.25% +66 108nt, >M01687:476:000000000-LL5F5:1:1108:25273:4736:1... at +/97.22% +67 109nt, >M01687:476:000000000-LL5F5:1:1108:24201:15968:2... at +/97.25% +68 102nt, >M01687:476:000000000-LL5F5:1:1108:6864:19220:1... at +/98.04% +69 109nt, >M01687:476:000000000-LL5F5:1:1107:17881:11061:2... at +/97.25% +70 108nt, >M01687:476:000000000-LL5F5:1:1107:12208:11673:1... at +/97.22% +71 109nt, >M01687:476:000000000-LL5F5:1:1107:19911:20031:1... at +/97.25% +72 109nt, >M01687:476:000000000-LL5F5:1:1106:8710:9181:1... at +/97.25% +73 109nt, >M01687:476:000000000-LL5F5:1:1105:17427:11386:1... at +/97.25% +74 107nt, >M01687:476:000000000-LL5F5:1:1105:4622:19262:1... at +/99.07% +75 92nt, >M01687:476:000000000-LL5F5:1:1105:4465:19547:2... at +/97.83% +76 109nt, >M01687:476:000000000-LL5F5:1:1104:22198:6652:1... at +/97.25% +77 109nt, >M01687:476:000000000-LL5F5:1:1104:25200:15420:1... at +/97.25% +78 105nt, >M01687:476:000000000-LL5F5:1:1104:26598:16183:1... at +/98.10% +79 109nt, >M01687:476:000000000-LL5F5:1:1103:3497:8204:2... at +/97.25% +80 109nt, >M01687:476:000000000-LL5F5:1:1103:19701:13215:1... at +/97.25% +81 109nt, >M01687:476:000000000-LL5F5:1:1103:20899:22597:1... at +/97.25% +82 109nt, >M01687:476:000000000-LL5F5:1:1117:13270:2832:1... at +/97.25% +83 106nt, >M01687:476:000000000-LL5F5:1:1117:2057:14432:1... at +/98.11% +84 109nt, >M01687:476:000000000-LL5F5:1:1117:25384:17763:1... at +/97.25% +85 103nt, >M01687:476:000000000-LL5F5:1:1117:18714:19800:1... at +/98.06% +86 109nt, >M01687:476:000000000-LL5F5:1:2118:20433:16670:1... at +/97.25% +87 108nt, >M01687:476:000000000-LL5F5:1:2118:19803:17870:1... at +/98.15% +88 109nt, >M01687:476:000000000-LL5F5:1:2119:3151:18422:1... at +/97.25% +89 109nt, >M01687:476:000000000-LL5F5:1:2119:20513:20907:1... at +/96.33% +>Cluster 6 +0 101nt, >M01687:476:000000000-LL5F5:1:1102:20301:1833:658... at +/100.00% +1 101nt, >M01687:476:000000000-LL5F5:1:1102:23224:4377:5... at +/99.01% +2 101nt, >M01687:476:000000000-LL5F5:1:1102:13157:4523:93... at +/95.05% +3 101nt, >M01687:476:000000000-LL5F5:1:1102:6018:6792:2... at +/99.01% +4 101nt, >M01687:476:000000000-LL5F5:1:1102:29102:9715:1... at +/98.02% +5 101nt, >M01687:476:000000000-LL5F5:1:1102:23594:12161:2... at +/99.01% +6 101nt, >M01687:476:000000000-LL5F5:1:2115:10585:3097:1... at +/99.01% +7 101nt, >M01687:476:000000000-LL5F5:1:2115:20735:15924:1... at +/99.01% +8 82nt, >M01687:476:000000000-LL5F5:1:2115:10680:21447:2... at +/100.00% +9 101nt, >M01687:476:000000000-LL5F5:1:2114:11614:2639:1... at +/99.01% +10 101nt, >M01687:476:000000000-LL5F5:1:2114:26413:6782:1... at +/99.01% +11 101nt, >M01687:476:000000000-LL5F5:1:2114:27945:14339:1... at +/99.01% +12 100nt, >M01687:476:000000000-LL5F5:1:2114:13993:23557:3... at +/99.00% +13 101nt, >M01687:476:000000000-LL5F5:1:2113:10178:1331:8... at +/99.01% +14 101nt, >M01687:476:000000000-LL5F5:1:2113:7551:7163:2... at +/99.01% +15 101nt, >M01687:476:000000000-LL5F5:1:2113:5643:8822:1... at +/99.01% +16 101nt, >M01687:476:000000000-LL5F5:1:2113:14198:20566:2... at +/99.01% +17 77nt, >M01687:476:000000000-LL5F5:1:2112:19975:18973:1... at +/100.00% +18 99nt, >M01687:476:000000000-LL5F5:1:2112:5972:20158:1... at +/100.00% +19 100nt, >M01687:476:000000000-LL5F5:1:2111:22314:12814:5... at +/100.00% +20 102nt, >M01687:476:000000000-LL5F5:1:2111:15996:21044:1... * +21 101nt, >M01687:476:000000000-LL5F5:1:2111:11403:21545:2... at +/99.01% +22 86nt, >M01687:476:000000000-LL5F5:1:2111:12364:24592:2... at +/100.00% +23 100nt, >M01687:476:000000000-LL5F5:1:2110:19267:14403:1... at +/100.00% +24 101nt, >M01687:476:000000000-LL5F5:1:2110:7090:14893:3... at +/99.01% +25 101nt, >M01687:476:000000000-LL5F5:1:2110:6161:15745:1... at +/99.01% +26 101nt, >M01687:476:000000000-LL5F5:1:2110:13571:17512:5... at +/99.01% +27 101nt, >M01687:476:000000000-LL5F5:1:2110:21023:20396:1... at +/99.01% +28 101nt, >M01687:476:000000000-LL5F5:1:2109:8526:10219:1... at +/99.01% +29 101nt, >M01687:476:000000000-LL5F5:1:2108:12163:4415:2... at +/99.01% +30 101nt, >M01687:476:000000000-LL5F5:1:2108:5897:8842:1... at +/99.01% +31 101nt, >M01687:476:000000000-LL5F5:1:2108:19776:13042:4... at +/99.01% +32 101nt, >M01687:476:000000000-LL5F5:1:2108:17472:24711:2... at +/99.01% +33 101nt, >M01687:476:000000000-LL5F5:1:2106:11910:2533:1... at +/99.01% +34 101nt, >M01687:476:000000000-LL5F5:1:2106:19131:3371:2... at +/99.01% +35 101nt, >M01687:476:000000000-LL5F5:1:2106:13223:6850:1... at +/99.01% +36 101nt, >M01687:476:000000000-LL5F5:1:2106:28619:10979:1... at +/99.01% +37 101nt, >M01687:476:000000000-LL5F5:1:2106:6235:13369:1... at +/99.01% +38 96nt, >M01687:476:000000000-LL5F5:1:2106:26588:16813:2... at +/100.00% +39 101nt, >M01687:476:000000000-LL5F5:1:2107:4409:10285:1... at +/99.01% +40 101nt, >M01687:476:000000000-LL5F5:1:2107:14638:21973:3... at +/99.01% +41 101nt, >M01687:476:000000000-LL5F5:1:2104:20122:2931:1... at +/99.01% +42 101nt, >M01687:476:000000000-LL5F5:1:2104:11400:10890:2... at +/99.01% +43 101nt, >M01687:476:000000000-LL5F5:1:2105:17493:11820:1... at +/99.01% +44 101nt, >M01687:476:000000000-LL5F5:1:2102:4781:13313:1... at +/99.01% +45 101nt, >M01687:476:000000000-LL5F5:1:2102:18454:20542:2... at +/99.01% +46 100nt, >M01687:476:000000000-LL5F5:1:2103:13231:3095:1... at +/98.00% +47 101nt, >M01687:476:000000000-LL5F5:1:2103:20541:8673:1... at +/99.01% +48 101nt, >M01687:476:000000000-LL5F5:1:2103:24828:9091:1... at +/99.01% +49 100nt, >M01687:476:000000000-LL5F5:1:2116:27577:14876:1... at +/100.00% +50 101nt, >M01687:476:000000000-LL5F5:1:2116:12521:24951:1... at +/99.01% +51 101nt, >M01687:476:000000000-LL5F5:1:2117:25346:4829:1... at +/98.02% +52 101nt, >M01687:476:000000000-LL5F5:1:2117:9616:7837:1... at +/99.01% +53 101nt, >M01687:476:000000000-LL5F5:1:2117:22549:22264:1... at +/99.01% +54 100nt, >M01687:476:000000000-LL5F5:1:2117:22776:23379:1... at +/100.00% +55 101nt, >M01687:476:000000000-LL5F5:1:1119:21906:1780:2... at +/99.01% +56 101nt, >M01687:476:000000000-LL5F5:1:1119:27748:13362:1... at +/99.01% +57 95nt, >M01687:476:000000000-LL5F5:1:1119:22860:18461:1... at +/100.00% +58 91nt, >M01687:476:000000000-LL5F5:1:1115:6456:5255:1... at +/100.00% +59 101nt, >M01687:476:000000000-LL5F5:1:1115:11642:15293:1... at +/99.01% +60 94nt, >M01687:476:000000000-LL5F5:1:1116:17947:9161:1... at +/100.00% +61 101nt, >M01687:476:000000000-LL5F5:1:1116:17075:10235:1... at +/99.01% +62 101nt, >M01687:476:000000000-LL5F5:1:1114:15987:15028:1... at +/99.01% +63 101nt, >M01687:476:000000000-LL5F5:1:1113:11756:4524:1... at +/98.02% +64 101nt, >M01687:476:000000000-LL5F5:1:1113:7067:9774:1... at +/99.01% +65 101nt, >M01687:476:000000000-LL5F5:1:1113:6071:13927:1... at +/99.01% +66 80nt, >M01687:476:000000000-LL5F5:1:1113:17679:21751:1... at +/100.00% +67 99nt, >M01687:476:000000000-LL5F5:1:1111:19620:3032:1... at +/98.99% +68 101nt, >M01687:476:000000000-LL5F5:1:1111:19747:13501:1... at +/99.01% +69 101nt, >M01687:476:000000000-LL5F5:1:1111:24912:20385:3... at +/99.01% +70 101nt, >M01687:476:000000000-LL5F5:1:1110:19336:22560:1... at +/98.02% +71 101nt, >M01687:476:000000000-LL5F5:1:1108:3043:18075:1... at +/98.02% +72 101nt, >M01687:476:000000000-LL5F5:1:1108:23171:18975:1... at +/99.01% +73 100nt, >M01687:476:000000000-LL5F5:1:1108:10778:20237:1... at +/100.00% +74 101nt, >M01687:476:000000000-LL5F5:1:1106:21201:2153:1... at +/99.01% +75 101nt, >M01687:476:000000000-LL5F5:1:1103:11777:2628:1... at +/99.01% +76 88nt, >M01687:476:000000000-LL5F5:1:1118:18693:1504:1... at +/100.00% +77 101nt, >M01687:476:000000000-LL5F5:1:1118:18842:5918:1... at +/99.01% +78 83nt, >M01687:476:000000000-LL5F5:1:1118:17378:17479:1... at +/100.00% +79 101nt, >M01687:476:000000000-LL5F5:1:1117:13955:12100:1... at +/99.01% +80 101nt, >M01687:476:000000000-LL5F5:1:2118:17788:24314:1... at +/98.02% +>Cluster 7 +0 106nt, >M01687:476:000000000-LL5F5:1:1102:10305:1310:1... at +/99.06% +1 109nt, >M01687:476:000000000-LL5F5:1:1102:8750:3011:575... at +/99.08% +2 109nt, >M01687:476:000000000-LL5F5:1:1101:15988:5660:4... at +/98.17% +3 109nt, >M01687:476:000000000-LL5F5:1:1101:25910:9190:12... at +/98.17% +4 96nt, >M01687:476:000000000-LL5F5:1:1101:11431:12431:1... at +/98.96% +5 109nt, >M01687:476:000000000-LL5F5:1:1101:8692:18353:1... at +/98.17% +6 109nt, >M01687:476:000000000-LL5F5:1:1101:6040:19158:8... at +/98.17% +7 109nt, >M01687:476:000000000-LL5F5:1:2115:11309:11640:3... at +/98.17% +8 109nt, >M01687:476:000000000-LL5F5:1:2115:24016:12007:3... at +/98.17% +9 109nt, >M01687:476:000000000-LL5F5:1:2115:20932:18517:1... at +/98.17% +10 89nt, >M01687:476:000000000-LL5F5:1:2115:25069:19947:1... at +/98.88% +11 84nt, >M01687:476:000000000-LL5F5:1:2115:7937:21412:1... at +/98.81% +12 108nt, >M01687:476:000000000-LL5F5:1:2114:23723:13770:4... at +/99.07% +13 109nt, >M01687:476:000000000-LL5F5:1:2113:12188:2791:2... at +/98.17% +14 109nt, >M01687:476:000000000-LL5F5:1:2111:8347:5201:2... at +/98.17% +15 109nt, >M01687:476:000000000-LL5F5:1:2111:27073:7955:1... at +/98.17% +16 109nt, >M01687:476:000000000-LL5F5:1:2111:27454:9582:4... at +/98.17% +17 109nt, >M01687:476:000000000-LL5F5:1:2111:15243:15595:1... at +/98.17% +18 109nt, >M01687:476:000000000-LL5F5:1:2111:24382:18654:2... at +/98.17% +19 109nt, >M01687:476:000000000-LL5F5:1:2110:12065:1303:4... at +/98.17% +20 109nt, >M01687:476:000000000-LL5F5:1:2110:27790:13879:1... at +/98.17% +21 109nt, >M01687:476:000000000-LL5F5:1:2110:11802:14394:2... at +/98.17% +22 109nt, >M01687:476:000000000-LL5F5:1:2110:3649:18302:2... at +/98.17% +23 89nt, >M01687:476:000000000-LL5F5:1:2110:7867:19298:1... at +/97.75% +24 109nt, >M01687:476:000000000-LL5F5:1:2109:9861:5882:1... at +/97.25% +25 109nt, >M01687:476:000000000-LL5F5:1:2109:8579:18007:3... at +/98.17% +26 109nt, >M01687:476:000000000-LL5F5:1:2109:5643:22017:1... at +/98.17% +27 109nt, >M01687:476:000000000-LL5F5:1:2108:19228:4397:1... at +/99.08% +28 109nt, >M01687:476:000000000-LL5F5:1:2106:17660:6530:1... at +/97.25% +29 109nt, >M01687:476:000000000-LL5F5:1:2106:15014:9926:5... at +/98.17% +30 109nt, >M01687:476:000000000-LL5F5:1:2107:19582:3896:2... at +/98.17% +31 109nt, >M01687:476:000000000-LL5F5:1:2107:24789:5518:1... at +/98.17% +32 109nt, >M01687:476:000000000-LL5F5:1:2107:22823:7964:1... at +/98.17% +33 109nt, >M01687:476:000000000-LL5F5:1:2107:10481:16731:1... at +/98.17% +34 109nt, >M01687:476:000000000-LL5F5:1:2107:11660:19422:1... at +/98.17% +35 108nt, >M01687:476:000000000-LL5F5:1:2104:20966:1476:2... at +/98.15% +36 109nt, >M01687:476:000000000-LL5F5:1:2104:19466:22197:2... at +/98.17% +37 109nt, >M01687:476:000000000-LL5F5:1:2105:19702:13665:1... at +/95.41% +38 109nt, >M01687:476:000000000-LL5F5:1:2102:12661:8461:1... at +/98.17% +39 109nt, >M01687:476:000000000-LL5F5:1:2102:18953:14446:3... at +/98.17% +40 109nt, >M01687:476:000000000-LL5F5:1:2103:27465:19915:1... at +/98.17% +41 108nt, >M01687:476:000000000-LL5F5:1:2116:20645:10390:2... at +/99.07% +42 109nt, >M01687:476:000000000-LL5F5:1:2117:13809:24287:1... at +/97.25% +43 109nt, >M01687:476:000000000-LL5F5:1:1119:17746:2170:1... at +/98.17% +44 104nt, >M01687:476:000000000-LL5F5:1:1119:23680:21331:1... at +/98.08% +45 108nt, >M01687:476:000000000-LL5F5:1:1115:4658:6894:1... at +/99.07% +46 98nt, >M01687:476:000000000-LL5F5:1:1115:25667:10316:1... at +/98.98% +47 109nt, >M01687:476:000000000-LL5F5:1:1115:12255:15987:2... at +/98.17% +48 109nt, >M01687:476:000000000-LL5F5:1:1116:17900:2983:1... at +/98.17% +49 109nt, >M01687:476:000000000-LL5F5:1:1116:24602:9826:1... at +/98.17% +50 109nt, >M01687:476:000000000-LL5F5:1:1116:21185:11523:1... at +/98.17% +51 105nt, >M01687:476:000000000-LL5F5:1:1116:1871:11760:1... at +/99.05% +52 108nt, >M01687:476:000000000-LL5F5:1:1116:24242:13248:1... at +/98.15% +53 109nt, >M01687:476:000000000-LL5F5:1:1116:4971:16579:1... at +/98.17% +54 109nt, >M01687:476:000000000-LL5F5:1:1114:13535:2263:1... at +/97.25% +55 86nt, >M01687:476:000000000-LL5F5:1:1114:22498:16482:1... at +/98.84% +56 107nt, >M01687:476:000000000-LL5F5:1:1112:11215:3435:1... at +/98.13% +57 109nt, >M01687:476:000000000-LL5F5:1:1112:8245:17346:1... at +/98.17% +58 109nt, >M01687:476:000000000-LL5F5:1:1112:15804:17413:1... at +/97.25% +59 103nt, >M01687:476:000000000-LL5F5:1:1112:24557:22793:1... at +/98.06% +60 108nt, >M01687:476:000000000-LL5F5:1:1111:13860:5366:1... at +/99.07% +61 109nt, >M01687:476:000000000-LL5F5:1:1111:14288:10309:1... at +/98.17% +62 108nt, >M01687:476:000000000-LL5F5:1:1110:15399:6393:1... at +/99.07% +63 109nt, >M01687:476:000000000-LL5F5:1:1110:15010:10420:1... at +/99.08% +64 109nt, >M01687:476:000000000-LL5F5:1:1110:29365:14058:1... at +/98.17% +65 109nt, >M01687:476:000000000-LL5F5:1:1110:27822:15625:1... at +/98.17% +66 109nt, >M01687:476:000000000-LL5F5:1:1109:11187:13561:1... at +/97.25% +67 109nt, >M01687:476:000000000-LL5F5:1:1108:27596:9773:1... at +/98.17% +68 109nt, >M01687:476:000000000-LL5F5:1:1107:19750:8503:1... at +/98.17% +69 108nt, >M01687:476:000000000-LL5F5:1:1107:16600:12132:1... at +/98.15% +70 109nt, >M01687:476:000000000-LL5F5:1:1104:16747:15896:1... at +/97.25% +71 94nt, >M01687:476:000000000-LL5F5:1:1118:16479:4794:1... at +/98.94% +72 109nt, >M01687:476:000000000-LL5F5:1:1118:13953:20825:1... at +/98.17% +73 109nt, >M01687:476:000000000-LL5F5:1:1118:11256:24636:1... at +/98.17% +74 109nt, >M01687:476:000000000-LL5F5:1:1117:16683:13016:1... at +/98.17% +75 92nt, >M01687:476:000000000-LL5F5:1:2118:3130:11561:1... at +/98.91% +76 109nt, >M01687:476:000000000-LL5F5:1:2118:22465:15221:1... at +/98.17% +77 109nt, >M01687:476:000000000-LL5F5:1:2118:18206:17829:1... at +/97.25% +78 109nt, >M01687:476:000000000-LL5F5:1:2118:13308:24716:1... at +/98.17% +79 110nt, >M01687:476:000000000-LL5F5:1:2119:17100:24966:1... * +>Cluster 8 +0 55nt, >M01687:476:000000000-LL5F5:1:1102:16560:2231:12... at +/100.00% +1 60nt, >M01687:476:000000000-LL5F5:1:1102:23004:8888:24... at +/100.00% +2 67nt, >M01687:476:000000000-LL5F5:1:1102:11405:9887:7... at +/100.00% +3 59nt, >M01687:476:000000000-LL5F5:1:1102:20324:11448:47... at +/100.00% +4 58nt, >M01687:476:000000000-LL5F5:1:1102:2533:11854:27... at +/100.00% +5 61nt, >M01687:476:000000000-LL5F5:1:1102:14452:11967:31... at +/100.00% +6 68nt, >M01687:476:000000000-LL5F5:1:1102:23476:14871:9... at +/100.00% +7 56nt, >M01687:476:000000000-LL5F5:1:1102:22891:15552:23... at +/100.00% +8 63nt, >M01687:476:000000000-LL5F5:1:1102:28892:17866:26... at +/100.00% +9 59nt, >M01687:476:000000000-LL5F5:1:1101:12228:3303:1... at +/98.31% +10 66nt, >M01687:476:000000000-LL5F5:1:1101:13734:3844:1... at +/95.45% +11 57nt, >M01687:476:000000000-LL5F5:1:1101:19158:4325:19... at +/100.00% +12 57nt, >M01687:476:000000000-LL5F5:1:1101:5282:7152:3... at +/98.25% +13 59nt, >M01687:476:000000000-LL5F5:1:1101:5332:19115:2... at +/98.31% +14 71nt, >M01687:476:000000000-LL5F5:1:1101:6572:20235:19... * +15 66nt, >M01687:476:000000000-LL5F5:1:2115:3741:17466:16... at +/100.00% +16 64nt, >M01687:476:000000000-LL5F5:1:2115:22382:21232:6... at +/100.00% +17 65nt, >M01687:476:000000000-LL5F5:1:2115:12214:24078:4... at +/96.92% +18 55nt, >M01687:476:000000000-LL5F5:1:2114:7772:5020:1... at +/100.00% +19 64nt, >M01687:476:000000000-LL5F5:1:2114:12995:5931:14... at +/98.44% +20 58nt, >M01687:476:000000000-LL5F5:1:2114:10451:7481:1... at +/98.28% +21 54nt, >M01687:476:000000000-LL5F5:1:2114:15440:8057:8... at +/100.00% +22 66nt, >M01687:476:000000000-LL5F5:1:2114:10419:11953:1... at +/98.48% +23 61nt, >M01687:476:000000000-LL5F5:1:2114:2362:17321:1... at +/98.36% +24 58nt, >M01687:476:000000000-LL5F5:1:2114:24354:21521:1... at +/98.28% +25 58nt, >M01687:476:000000000-LL5F5:1:2114:9406:22223:1... at +/98.28% +26 67nt, >M01687:476:000000000-LL5F5:1:2113:22317:4594:2... at +/97.01% +27 62nt, >M01687:476:000000000-LL5F5:1:2113:3305:11612:15... at +/100.00% +28 68nt, >M01687:476:000000000-LL5F5:1:2113:8739:13771:1... at +/98.53% +29 54nt, >M01687:476:000000000-LL5F5:1:2113:23174:22951:5... at +/98.15% +30 64nt, >M01687:476:000000000-LL5F5:1:2112:17573:2531:1... at +/98.44% +31 60nt, >M01687:476:000000000-LL5F5:1:2112:4652:11128:2... at +/100.00% +32 65nt, >M01687:476:000000000-LL5F5:1:2112:22331:22899:5... at +/100.00% +33 62nt, >M01687:476:000000000-LL5F5:1:2111:10750:19770:2... at +/98.39% +34 55nt, >M01687:476:000000000-LL5F5:1:2109:10083:7679:2... at +/98.18% +35 57nt, >M01687:476:000000000-LL5F5:1:2109:17084:8785:1... at +/98.25% +36 61nt, >M01687:476:000000000-LL5F5:1:2108:13017:6396:2... at +/98.36% +37 70nt, >M01687:476:000000000-LL5F5:1:2108:6537:21513:3... at +/100.00% +38 54nt, >M01687:476:000000000-LL5F5:1:2108:25212:22618:1... at +/96.30% +39 66nt, >M01687:476:000000000-LL5F5:1:2106:17500:17770:1... at +/96.97% +40 71nt, >M01687:476:000000000-LL5F5:1:2106:8074:20517:3... at +/98.59% +41 58nt, >M01687:476:000000000-LL5F5:1:2107:15350:1668:2... at +/100.00% +42 55nt, >M01687:476:000000000-LL5F5:1:2107:7509:13527:1... at +/98.18% +43 71nt, >M01687:476:000000000-LL5F5:1:2104:7121:15132:1... at +/98.59% +44 60nt, >M01687:476:000000000-LL5F5:1:2105:25899:10790:1... at +/96.67% +45 55nt, >M01687:476:000000000-LL5F5:1:2102:26563:11149:1... at +/100.00% +46 69nt, >M01687:476:000000000-LL5F5:1:2102:17416:11632:9... at +/100.00% +47 60nt, >M01687:476:000000000-LL5F5:1:2102:19816:24798:4... at +/98.33% +48 64nt, >M01687:476:000000000-LL5F5:1:2103:6111:5836:1... at +/96.88% +49 69nt, >M01687:476:000000000-LL5F5:1:2116:18146:10629:1... at +/97.10% +50 54nt, >M01687:476:000000000-LL5F5:1:2116:16379:21287:1... at +/98.15% +51 58nt, >M01687:476:000000000-LL5F5:1:2117:19005:12510:1... at +/98.28% +52 57nt, >M01687:476:000000000-LL5F5:1:2101:20353:24882:1... at +/98.25% +53 63nt, >M01687:476:000000000-LL5F5:1:1115:23163:5279:1... at +/98.41% +54 64nt, >M01687:476:000000000-LL5F5:1:1115:27406:6653:1... at +/96.88% +55 57nt, >M01687:476:000000000-LL5F5:1:1115:9669:8962:1... at +/100.00% +56 71nt, >M01687:476:000000000-LL5F5:1:1115:15145:11443:1... at +/98.59% +57 61nt, >M01687:476:000000000-LL5F5:1:1116:14669:9763:1... at +/95.08% +58 58nt, >M01687:476:000000000-LL5F5:1:1116:3463:11712:1... at +/100.00% +59 60nt, >M01687:476:000000000-LL5F5:1:1114:21670:6591:1... at +/96.67% +60 64nt, >M01687:476:000000000-LL5F5:1:1114:23911:8799:1... at +/96.88% +61 56nt, >M01687:476:000000000-LL5F5:1:1114:13260:9989:1... at +/98.21% +62 65nt, >M01687:476:000000000-LL5F5:1:1114:19936:19257:1... at +/100.00% +63 70nt, >M01687:476:000000000-LL5F5:1:1113:21301:12832:1... at +/97.14% +64 61nt, >M01687:476:000000000-LL5F5:1:1113:21384:13155:1... at +/98.36% +65 71nt, >M01687:476:000000000-LL5F5:1:1113:18837:14315:1... at +/95.77% +66 59nt, >M01687:476:000000000-LL5F5:1:1110:18625:13908:1... at +/98.31% +67 69nt, >M01687:476:000000000-LL5F5:1:1110:20944:21458:1... at +/98.55% +68 70nt, >M01687:476:000000000-LL5F5:1:1110:19217:24543:1... at +/98.57% +69 56nt, >M01687:476:000000000-LL5F5:1:1108:7622:2942:1... at +/98.21% +70 63nt, >M01687:476:000000000-LL5F5:1:1106:3286:19443:1... at +/100.00% +71 61nt, >M01687:476:000000000-LL5F5:1:1106:22727:24503:1... at +/98.36% +72 63nt, >M01687:476:000000000-LL5F5:1:1105:4033:20714:1... at +/98.41% +73 56nt, >M01687:476:000000000-LL5F5:1:1104:27388:19683:1... at +/98.21% +74 71nt, >M01687:476:000000000-LL5F5:1:1103:24167:2327:1... at +/98.59% +75 58nt, >M01687:476:000000000-LL5F5:1:1117:25715:6344:1... at +/100.00% +76 68nt, >M01687:476:000000000-LL5F5:1:2118:16975:9259:1... at +/100.00% +77 65nt, >M01687:476:000000000-LL5F5:1:2119:22619:19998:1... at +/98.46% +78 65nt, >M01687:476:000000000-LL5F5:1:2119:16856:20603:1... at +/98.46% +>Cluster 9 +0 109nt, >M01687:476:000000000-LL5F5:1:1102:15088:2982:765... at +/96.33% +1 109nt, >M01687:476:000000000-LL5F5:1:1102:23268:5639:1... at +/97.25% +2 109nt, >M01687:476:000000000-LL5F5:1:1102:11397:11899:5... at +/95.41% +3 109nt, >M01687:476:000000000-LL5F5:1:1102:24199:16578:6... at +/95.41% +4 109nt, >M01687:476:000000000-LL5F5:1:1102:4969:20473:100... at +/98.17% +5 109nt, >M01687:476:000000000-LL5F5:1:1101:16094:7701:1... at +/98.17% +6 109nt, >M01687:476:000000000-LL5F5:1:1101:22280:9691:47... at +/100.00% +7 109nt, >M01687:476:000000000-LL5F5:1:1101:13941:11609:109... at +/99.08% +8 109nt, >M01687:476:000000000-LL5F5:1:1101:12499:15315:2... at +/98.17% +9 85nt, >M01687:476:000000000-LL5F5:1:1101:23679:24042:1... at +/100.00% +10 109nt, >M01687:476:000000000-LL5F5:1:2115:21953:13277:11... at +/97.25% +11 109nt, >M01687:476:000000000-LL5F5:1:2114:2608:16598:1... at +/98.17% +12 108nt, >M01687:476:000000000-LL5F5:1:2114:15042:17505:2... at +/99.07% +13 109nt, >M01687:476:000000000-LL5F5:1:2114:17531:19315:1... at +/98.17% +14 110nt, >M01687:476:000000000-LL5F5:1:2114:27618:20184:1... * +15 104nt, >M01687:476:000000000-LL5F5:1:2112:9810:17072:1... at +/98.08% +16 109nt, >M01687:476:000000000-LL5F5:1:2111:13325:11660:1... at +/96.33% +17 109nt, >M01687:476:000000000-LL5F5:1:2110:10667:10209:1... at +/97.25% +18 109nt, >M01687:476:000000000-LL5F5:1:2109:9045:13436:1... at +/96.33% +19 99nt, >M01687:476:000000000-LL5F5:1:2109:13543:13499:1... at +/98.99% +20 109nt, >M01687:476:000000000-LL5F5:1:2108:17349:9148:1... at +/97.25% +21 109nt, >M01687:476:000000000-LL5F5:1:2106:23207:9885:1... at +/97.25% +22 109nt, >M01687:476:000000000-LL5F5:1:2106:18720:11794:1... at +/97.25% +23 88nt, >M01687:476:000000000-LL5F5:1:2107:15232:8686:1... at +/97.73% +24 109nt, >M01687:476:000000000-LL5F5:1:2104:7706:17780:1... at +/97.25% +25 109nt, >M01687:476:000000000-LL5F5:1:2105:12983:18713:1... at +/98.17% +26 109nt, >M01687:476:000000000-LL5F5:1:2102:12507:1328:2... at +/98.17% +27 109nt, >M01687:476:000000000-LL5F5:1:2102:10711:5458:1... at +/97.25% +28 89nt, >M01687:476:000000000-LL5F5:1:2102:26752:9340:2... at +/98.88% +29 109nt, >M01687:476:000000000-LL5F5:1:2116:20504:5241:1... at +/97.25% +30 89nt, >M01687:476:000000000-LL5F5:1:2117:20646:12508:1... at +/97.75% +31 109nt, >M01687:476:000000000-LL5F5:1:1119:5814:20409:1... at +/97.25% +32 109nt, >M01687:476:000000000-LL5F5:1:2101:3520:10237:1... at +/98.17% +33 104nt, >M01687:476:000000000-LL5F5:1:2101:25695:16258:1... at +/99.04% +34 109nt, >M01687:476:000000000-LL5F5:1:1115:25469:7405:1... at +/99.08% +35 90nt, >M01687:476:000000000-LL5F5:1:1116:1935:11994:1... at +/98.89% +36 109nt, >M01687:476:000000000-LL5F5:1:1116:26382:18512:1... at +/99.08% +37 101nt, >M01687:476:000000000-LL5F5:1:1114:22565:24264:1... at +/100.00% +38 108nt, >M01687:476:000000000-LL5F5:1:1112:19774:1589:1... at +/98.15% +39 109nt, >M01687:476:000000000-LL5F5:1:1112:9816:16178:1... at +/98.17% +40 109nt, >M01687:476:000000000-LL5F5:1:1111:7263:18267:2... at +/99.08% +41 109nt, >M01687:476:000000000-LL5F5:1:1110:18104:10478:1... at +/99.08% +42 110nt, >M01687:476:000000000-LL5F5:1:1110:7948:14158:1... at +/95.45% +43 109nt, >M01687:476:000000000-LL5F5:1:1109:8563:3509:1... at +/98.17% +44 108nt, >M01687:476:000000000-LL5F5:1:1109:28394:10719:1... at +/99.07% +45 108nt, >M01687:476:000000000-LL5F5:1:1109:23049:10820:1... at +/98.15% +46 109nt, >M01687:476:000000000-LL5F5:1:1109:26532:17381:1... at +/97.25% +47 109nt, >M01687:476:000000000-LL5F5:1:1109:15340:17694:1... at +/97.25% +48 109nt, >M01687:476:000000000-LL5F5:1:1108:14777:14779:1... at +/97.25% +49 99nt, >M01687:476:000000000-LL5F5:1:1107:6355:3240:1... at +/100.00% +50 109nt, >M01687:476:000000000-LL5F5:1:1107:21104:6393:1... at +/99.08% +51 89nt, >M01687:476:000000000-LL5F5:1:1107:27553:10676:1... at +/98.88% +52 91nt, >M01687:476:000000000-LL5F5:1:1107:23519:15804:1... at +/100.00% +53 109nt, >M01687:476:000000000-LL5F5:1:1107:5761:20286:2... at +/98.17% +54 109nt, >M01687:476:000000000-LL5F5:1:1106:19176:22294:1... at +/97.25% +55 109nt, >M01687:476:000000000-LL5F5:1:1106:11997:23073:1... at +/99.08% +56 109nt, >M01687:476:000000000-LL5F5:1:1106:8300:23498:3... at +/97.25% +57 105nt, >M01687:476:000000000-LL5F5:1:1105:24112:3240:1... at +/99.05% +58 109nt, >M01687:476:000000000-LL5F5:1:1104:5121:8749:1... at +/97.25% +59 109nt, >M01687:476:000000000-LL5F5:1:1104:13400:17504:1... at +/97.25% +60 109nt, >M01687:476:000000000-LL5F5:1:1104:25152:19425:1... at +/97.25% +61 109nt, >M01687:476:000000000-LL5F5:1:1103:27182:7304:1... at +/98.17% +62 109nt, >M01687:476:000000000-LL5F5:1:1103:10725:17737:1... at +/97.25% +63 108nt, >M01687:476:000000000-LL5F5:1:1117:18120:2662:1... at +/98.15% +64 109nt, >M01687:476:000000000-LL5F5:1:2119:20547:18997:1... at +/97.25% +>Cluster 10 +0 47nt, >M01687:476:000000000-LL5F5:1:1102:13335:1146:81... at +/100.00% +1 53nt, >M01687:476:000000000-LL5F5:1:1102:13307:3776:15... * +2 41nt, >M01687:476:000000000-LL5F5:1:1102:14493:8350:18... at +/100.00% +3 46nt, >M01687:476:000000000-LL5F5:1:1102:27669:11105:34... at +/100.00% +4 48nt, >M01687:476:000000000-LL5F5:1:1102:22839:11494:39... at +/100.00% +5 42nt, >M01687:476:000000000-LL5F5:1:1102:26589:14006:50... at +/100.00% +6 45nt, >M01687:476:000000000-LL5F5:1:1102:10289:14793:31... at +/100.00% +7 43nt, >M01687:476:000000000-LL5F5:1:1102:13483:18280:14... at +/100.00% +8 52nt, >M01687:476:000000000-LL5F5:1:1102:21467:19024:20... at +/100.00% +9 49nt, >M01687:476:000000000-LL5F5:1:1101:5903:13768:34... at +/100.00% +10 50nt, >M01687:476:000000000-LL5F5:1:1101:15823:21749:1... at +/98.00% +11 49nt, >M01687:476:000000000-LL5F5:1:1101:5959:23034:4... at +/100.00% +12 43nt, >M01687:476:000000000-LL5F5:1:2115:14398:12616:1... at +/97.67% +13 52nt, >M01687:476:000000000-LL5F5:1:2115:21785:17931:4... at +/98.08% +14 49nt, >M01687:476:000000000-LL5F5:1:2115:17358:19638:1... at +/97.96% +15 44nt, >M01687:476:000000000-LL5F5:1:2114:5149:18159:15... at +/100.00% +16 50nt, >M01687:476:000000000-LL5F5:1:2113:27122:8196:1... at +/98.00% +17 48nt, >M01687:476:000000000-LL5F5:1:2113:18533:10874:1... at +/97.92% +18 42nt, >M01687:476:000000000-LL5F5:1:2113:14937:21538:1... at +/97.62% +19 50nt, >M01687:476:000000000-LL5F5:1:2113:18161:24026:24... at +/100.00% +20 46nt, >M01687:476:000000000-LL5F5:1:2112:14293:17982:2... at +/97.83% +21 40nt, >M01687:476:000000000-LL5F5:1:2111:4793:21161:21... at +/100.00% +22 47nt, >M01687:476:000000000-LL5F5:1:2109:12314:13025:1... at +/97.87% +23 51nt, >M01687:476:000000000-LL5F5:1:2109:9567:24650:8... at +/100.00% +24 50nt, >M01687:476:000000000-LL5F5:1:2104:26705:17690:1... at +/98.00% +25 46nt, >M01687:476:000000000-LL5F5:1:2102:16879:14967:1... at +/100.00% +26 47nt, >M01687:476:000000000-LL5F5:1:2116:19512:18819:1... at +/97.87% +27 51nt, >M01687:476:000000000-LL5F5:1:2116:10279:24814:4... at +/98.04% +28 49nt, >M01687:476:000000000-LL5F5:1:1119:8961:20223:1... at +/97.96% +29 53nt, >M01687:476:000000000-LL5F5:1:2101:6293:3060:1... at +/96.23% +30 50nt, >M01687:476:000000000-LL5F5:1:2101:26845:17869:1... at +/98.00% +31 48nt, >M01687:476:000000000-LL5F5:1:2101:17516:19320:1... at +/97.92% +32 52nt, >M01687:476:000000000-LL5F5:1:1115:26148:21607:1... at +/98.08% +33 47nt, >M01687:476:000000000-LL5F5:1:1114:1942:10789:1... at +/97.87% +34 43nt, >M01687:476:000000000-LL5F5:1:1112:12853:4344:1... at +/100.00% +35 42nt, >M01687:476:000000000-LL5F5:1:1111:21510:22658:1... at +/97.62% +36 53nt, >M01687:476:000000000-LL5F5:1:1111:15233:24879:1... at +/98.11% +37 47nt, >M01687:476:000000000-LL5F5:1:1110:24971:5337:1... at +/100.00% +38 43nt, >M01687:476:000000000-LL5F5:1:1110:27035:8073:1... at +/100.00% +39 42nt, >M01687:476:000000000-LL5F5:1:1110:23234:24798:1... at +/97.62% +40 41nt, >M01687:476:000000000-LL5F5:1:1109:21340:10090:1... at +/97.56% +41 47nt, >M01687:476:000000000-LL5F5:1:1108:9603:21916:1... at +/97.87% +42 46nt, >M01687:476:000000000-LL5F5:1:1106:22654:4661:1... at +/97.83% +43 46nt, >M01687:476:000000000-LL5F5:1:1105:28290:7943:1... at +/97.83% +44 42nt, >M01687:476:000000000-LL5F5:1:1105:12755:9667:1... at +/95.24% +45 46nt, >M01687:476:000000000-LL5F5:1:1105:27260:12537:1... at +/100.00% +46 45nt, >M01687:476:000000000-LL5F5:1:1105:2497:13133:1... at +/97.78% +47 47nt, >M01687:476:000000000-LL5F5:1:1103:23489:8795:1... at +/97.87% +48 46nt, >M01687:476:000000000-LL5F5:1:1103:16680:16940:2... at +/100.00% +49 41nt, >M01687:476:000000000-LL5F5:1:1118:7891:7134:1... at +/100.00% +50 50nt, >M01687:476:000000000-LL5F5:1:1118:28227:9373:1... at +/98.00% +51 47nt, >M01687:476:000000000-LL5F5:1:1118:23970:15367:1... at +/97.87% +52 51nt, >M01687:476:000000000-LL5F5:1:1117:4294:12436:1... at +/98.04% +53 41nt, >M01687:476:000000000-LL5F5:1:1117:13270:17556:1... at +/97.56% +54 46nt, >M01687:476:000000000-LL5F5:1:1117:12127:20056:1... at +/97.83% +55 44nt, >M01687:476:000000000-LL5F5:1:2119:11029:7115:1... at +/97.73% +56 42nt, >M01687:476:000000000-LL5F5:1:2119:12098:12880:1... at +/97.62% +57 49nt, >M01687:476:000000000-LL5F5:1:2119:6440:12996:1... at +/97.96% +58 47nt, >M01687:476:000000000-LL5F5:1:2119:18457:18298:1... at +/97.87% +>Cluster 11 +0 80nt, >M01687:476:000000000-LL5F5:1:1102:12283:5531:360... * +1 80nt, >M01687:476:000000000-LL5F5:1:1102:2716:15524:34... at +/98.75% +2 80nt, >M01687:476:000000000-LL5F5:1:2115:22460:16469:13... at +/97.50% +3 79nt, >M01687:476:000000000-LL5F5:1:2114:9738:8590:1... at +/100.00% +4 80nt, >M01687:476:000000000-LL5F5:1:2113:17186:3331:1... at +/98.75% +5 80nt, >M01687:476:000000000-LL5F5:1:2113:21957:7980:1... at +/98.75% +6 80nt, >M01687:476:000000000-LL5F5:1:2113:20448:9000:3... at +/98.75% +7 80nt, >M01687:476:000000000-LL5F5:1:2113:11867:24079:1... at +/98.75% +8 80nt, >M01687:476:000000000-LL5F5:1:2111:13967:13093:1... at +/98.75% +9 80nt, >M01687:476:000000000-LL5F5:1:2110:8711:5025:1... at +/98.75% +10 80nt, >M01687:476:000000000-LL5F5:1:2110:14847:12479:3... at +/98.75% +11 80nt, >M01687:476:000000000-LL5F5:1:2109:26295:12784:1... at +/98.75% +12 80nt, >M01687:476:000000000-LL5F5:1:2108:19921:3425:1... at +/98.75% +13 80nt, >M01687:476:000000000-LL5F5:1:2108:10868:10353:5... at +/97.50% +14 79nt, >M01687:476:000000000-LL5F5:1:2104:28283:18432:1... at +/100.00% +15 80nt, >M01687:476:000000000-LL5F5:1:2105:20332:10749:2... at +/98.75% +16 80nt, >M01687:476:000000000-LL5F5:1:2105:18446:13350:1... at +/98.75% +17 80nt, >M01687:476:000000000-LL5F5:1:2105:18155:14087:2... at +/98.75% +18 80nt, >M01687:476:000000000-LL5F5:1:2102:16547:10985:1... at +/98.75% +19 80nt, >M01687:476:000000000-LL5F5:1:2102:3115:18910:1... at +/98.75% +20 80nt, >M01687:476:000000000-LL5F5:1:2103:19683:2492:1... at +/96.25% +21 80nt, >M01687:476:000000000-LL5F5:1:2103:17533:2887:1... at +/98.75% +22 80nt, >M01687:476:000000000-LL5F5:1:2103:22957:8839:1... at +/98.75% +23 80nt, >M01687:476:000000000-LL5F5:1:2116:8912:7499:1... at +/98.75% +24 80nt, >M01687:476:000000000-LL5F5:1:2116:27559:8556:1... at +/98.75% +25 79nt, >M01687:476:000000000-LL5F5:1:2116:25476:13418:3... at +/100.00% +26 80nt, >M01687:476:000000000-LL5F5:1:2116:19600:14828:2... at +/98.75% +27 80nt, >M01687:476:000000000-LL5F5:1:2117:3880:18055:1... at +/98.75% +28 75nt, >M01687:476:000000000-LL5F5:1:1119:7142:16155:1... at +/100.00% +29 73nt, >M01687:476:000000000-LL5F5:1:2101:8243:5881:1... at +/100.00% +30 80nt, >M01687:476:000000000-LL5F5:1:2101:13526:15009:2... at +/98.75% +31 80nt, >M01687:476:000000000-LL5F5:1:1115:3776:12196:2... at +/98.75% +32 80nt, >M01687:476:000000000-LL5F5:1:1116:18324:14942:1... at +/97.50% +33 80nt, >M01687:476:000000000-LL5F5:1:1114:8390:8875:1... at +/98.75% +34 80nt, >M01687:476:000000000-LL5F5:1:1114:5559:16299:1... at +/98.75% +35 80nt, >M01687:476:000000000-LL5F5:1:1111:24396:4215:1... at +/98.75% +36 80nt, >M01687:476:000000000-LL5F5:1:1111:20448:16860:2... at +/98.75% +37 65nt, >M01687:476:000000000-LL5F5:1:1110:25168:9034:1... at +/100.00% +38 80nt, >M01687:476:000000000-LL5F5:1:1110:18031:9551:1... at +/97.50% +39 80nt, >M01687:476:000000000-LL5F5:1:1110:17426:9736:1... at +/98.75% +40 60nt, >M01687:476:000000000-LL5F5:1:1110:24506:18916:1... at +/96.67% +41 80nt, >M01687:476:000000000-LL5F5:1:1109:7360:7388:1... at +/98.75% +42 80nt, >M01687:476:000000000-LL5F5:1:1108:24935:16338:1... at +/97.50% +43 70nt, >M01687:476:000000000-LL5F5:1:1107:16805:4778:1... at +/100.00% +44 80nt, >M01687:476:000000000-LL5F5:1:1107:18543:24457:1... at +/98.75% +45 80nt, >M01687:476:000000000-LL5F5:1:1106:18014:11607:1... at +/96.25% +46 79nt, >M01687:476:000000000-LL5F5:1:1105:25347:7411:1... at +/98.73% +47 79nt, >M01687:476:000000000-LL5F5:1:1105:4568:10148:1... at +/97.47% +48 80nt, >M01687:476:000000000-LL5F5:1:1104:13406:6324:1... at +/98.75% +49 80nt, >M01687:476:000000000-LL5F5:1:1104:27629:8725:1... at +/97.50% +50 62nt, >M01687:476:000000000-LL5F5:1:1103:28065:7420:1... at +/100.00% +51 80nt, >M01687:476:000000000-LL5F5:1:1118:4097:7198:1... at +/98.75% +52 79nt, >M01687:476:000000000-LL5F5:1:1118:20227:9607:1... at +/97.47% +53 80nt, >M01687:476:000000000-LL5F5:1:1118:5072:9910:2... at +/98.75% +54 80nt, >M01687:476:000000000-LL5F5:1:1118:14632:16145:1... at +/98.75% +55 80nt, >M01687:476:000000000-LL5F5:1:1117:17906:9784:1... at +/97.50% +56 80nt, >M01687:476:000000000-LL5F5:1:1117:2893:17349:1... at +/98.75% +57 80nt, >M01687:476:000000000-LL5F5:1:2118:20698:11369:1... at +/96.25% +>Cluster 12 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:14657:3488:414... at +/97.78% +1 90nt, >M01687:476:000000000-LL5F5:1:1102:25273:17873:1... at +/96.67% +2 90nt, >M01687:476:000000000-LL5F5:1:1102:21743:19402:1... at +/96.67% +3 90nt, >M01687:476:000000000-LL5F5:1:1102:9611:22563:1... at +/96.67% +4 90nt, >M01687:476:000000000-LL5F5:1:1101:22994:3382:1... at +/96.67% +5 71nt, >M01687:476:000000000-LL5F5:1:1101:5545:3886:1... at +/95.77% +6 90nt, >M01687:476:000000000-LL5F5:1:1101:25245:6316:2... at +/96.67% +7 82nt, >M01687:476:000000000-LL5F5:1:2115:7455:2713:1... at +/97.56% +8 85nt, >M01687:476:000000000-LL5F5:1:2115:28266:11788:1... at +/97.65% +9 90nt, >M01687:476:000000000-LL5F5:1:2115:23212:11957:1... at +/96.67% +10 90nt, >M01687:476:000000000-LL5F5:1:2115:24890:13620:1... at +/96.67% +11 93nt, >M01687:476:000000000-LL5F5:1:2113:21872:5817:1... * +12 89nt, >M01687:476:000000000-LL5F5:1:2112:26831:6070:1... at +/96.63% +13 81nt, >M01687:476:000000000-LL5F5:1:2112:15384:24099:2... at +/97.53% +14 90nt, >M01687:476:000000000-LL5F5:1:2111:9398:1915:1... at +/96.67% +15 90nt, >M01687:476:000000000-LL5F5:1:2110:15047:24227:1... at +/96.67% +16 90nt, >M01687:476:000000000-LL5F5:1:2109:12054:4057:1... at +/96.67% +17 90nt, >M01687:476:000000000-LL5F5:1:2108:4433:10767:1... at +/96.67% +18 90nt, >M01687:476:000000000-LL5F5:1:2108:24476:11168:1... at +/96.67% +19 90nt, >M01687:476:000000000-LL5F5:1:2108:6589:19078:1... at +/96.67% +20 86nt, >M01687:476:000000000-LL5F5:1:2106:26915:5608:1... at +/97.67% +21 90nt, >M01687:476:000000000-LL5F5:1:2106:26853:21585:1... at +/96.67% +22 90nt, >M01687:476:000000000-LL5F5:1:2107:25647:3612:1... at +/96.67% +23 90nt, >M01687:476:000000000-LL5F5:1:2104:20102:13222:1... at +/96.67% +24 89nt, >M01687:476:000000000-LL5F5:1:2102:17942:21921:2... at +/98.88% +25 90nt, >M01687:476:000000000-LL5F5:1:2103:2584:12926:1... at +/96.67% +26 90nt, >M01687:476:000000000-LL5F5:1:2116:5398:6972:1... at +/96.67% +27 89nt, >M01687:476:000000000-LL5F5:1:2116:2377:16973:1... at +/96.63% +28 89nt, >M01687:476:000000000-LL5F5:1:2117:11877:22363:2... at +/97.75% +29 90nt, >M01687:476:000000000-LL5F5:1:2101:10437:1674:1... at +/96.67% +30 90nt, >M01687:476:000000000-LL5F5:1:2101:23564:9362:1... at +/96.67% +31 70nt, >M01687:476:000000000-LL5F5:1:2101:9622:20090:1... at +/97.14% +32 90nt, >M01687:476:000000000-LL5F5:1:2101:9465:23965:1... at +/96.67% +33 90nt, >M01687:476:000000000-LL5F5:1:1115:19767:15402:1... at +/97.78% +34 90nt, >M01687:476:000000000-LL5F5:1:1115:16293:23309:1... at +/96.67% +35 90nt, >M01687:476:000000000-LL5F5:1:1114:22642:4284:1... at +/96.67% +36 90nt, >M01687:476:000000000-LL5F5:1:1113:17779:1954:1... at +/96.67% +37 89nt, >M01687:476:000000000-LL5F5:1:1113:19898:6539:2... at +/97.75% +38 90nt, >M01687:476:000000000-LL5F5:1:1112:9295:17578:1... at +/96.67% +39 90nt, >M01687:476:000000000-LL5F5:1:1111:16779:13391:1... at +/96.67% +40 90nt, >M01687:476:000000000-LL5F5:1:1111:7728:19047:1... at +/96.67% +41 90nt, >M01687:476:000000000-LL5F5:1:1110:20108:21231:1... at +/96.67% +42 89nt, >M01687:476:000000000-LL5F5:1:1109:22868:1746:1... at +/97.75% +43 75nt, >M01687:476:000000000-LL5F5:1:1109:29312:13506:2... at +/97.33% +44 90nt, >M01687:476:000000000-LL5F5:1:1109:20332:23933:1... at +/96.67% +45 76nt, >M01687:476:000000000-LL5F5:1:1107:25707:22809:1... at +/97.37% +46 90nt, >M01687:476:000000000-LL5F5:1:1106:16010:12846:1... at +/96.67% +47 89nt, >M01687:476:000000000-LL5F5:1:1106:10361:14080:1... at +/97.75% +48 90nt, >M01687:476:000000000-LL5F5:1:1104:15113:1371:2... at +/96.67% +49 89nt, >M01687:476:000000000-LL5F5:1:1104:8450:16823:1... at +/97.75% +50 89nt, >M01687:476:000000000-LL5F5:1:1118:22921:6831:1... at +/97.75% +>Cluster 13 +0 66nt, >M01687:476:000000000-LL5F5:1:1102:12276:4708:20... at +/98.48% +1 66nt, >M01687:476:000000000-LL5F5:1:1102:14626:6295:60... at +/95.45% +2 66nt, >M01687:476:000000000-LL5F5:1:1102:5112:9309:371... at +/100.00% +3 66nt, >M01687:476:000000000-LL5F5:1:1102:11691:11988:3... at +/98.48% +4 67nt, >M01687:476:000000000-LL5F5:1:1102:4871:15493:1... * +5 66nt, >M01687:476:000000000-LL5F5:1:2115:5102:17123:1... at +/98.48% +6 66nt, >M01687:476:000000000-LL5F5:1:2113:16769:15617:1... at +/98.48% +7 66nt, >M01687:476:000000000-LL5F5:1:2112:15018:11046:1... at +/98.48% +8 66nt, >M01687:476:000000000-LL5F5:1:2112:12549:20578:3... at +/98.48% +9 66nt, >M01687:476:000000000-LL5F5:1:2111:8390:6031:1... at +/98.48% +10 66nt, >M01687:476:000000000-LL5F5:1:2111:3779:7661:1... at +/98.48% +11 66nt, >M01687:476:000000000-LL5F5:1:2109:14502:7584:1... at +/98.48% +12 66nt, >M01687:476:000000000-LL5F5:1:2108:8606:3028:1... at +/98.48% +13 65nt, >M01687:476:000000000-LL5F5:1:2108:16377:7783:1... at +/100.00% +14 65nt, >M01687:476:000000000-LL5F5:1:2108:14031:18801:1... at +/100.00% +15 66nt, >M01687:476:000000000-LL5F5:1:2106:22495:20710:1... at +/98.48% +16 66nt, >M01687:476:000000000-LL5F5:1:2107:24440:4414:2... at +/96.97% +17 66nt, >M01687:476:000000000-LL5F5:1:2104:24545:11953:1... at +/98.48% +18 62nt, >M01687:476:000000000-LL5F5:1:2104:13609:20121:1... at +/100.00% +19 66nt, >M01687:476:000000000-LL5F5:1:2105:12595:11569:2... at +/98.48% +20 66nt, >M01687:476:000000000-LL5F5:1:2105:15100:21121:1... at +/98.48% +21 66nt, >M01687:476:000000000-LL5F5:1:2102:18204:3558:1... at +/96.97% +22 66nt, >M01687:476:000000000-LL5F5:1:2102:23639:11297:1... at +/96.97% +23 65nt, >M01687:476:000000000-LL5F5:1:2117:15499:8812:1... at +/98.46% +24 66nt, >M01687:476:000000000-LL5F5:1:1119:22389:17485:1... at +/98.48% +25 66nt, >M01687:476:000000000-LL5F5:1:2101:24765:20730:1... at +/98.48% +26 59nt, >M01687:476:000000000-LL5F5:1:2101:25620:21820:1... at +/100.00% +27 66nt, >M01687:476:000000000-LL5F5:1:1115:5505:7834:1... at +/96.97% +28 65nt, >M01687:476:000000000-LL5F5:1:1115:20098:17598:2... at +/100.00% +29 66nt, >M01687:476:000000000-LL5F5:1:1114:22446:16303:1... at +/98.48% +30 66nt, >M01687:476:000000000-LL5F5:1:1114:23706:17601:2... at +/98.48% +31 66nt, >M01687:476:000000000-LL5F5:1:1112:6251:8235:1... at +/98.48% +32 56nt, >M01687:476:000000000-LL5F5:1:1111:13119:1301:1... at +/100.00% +33 66nt, >M01687:476:000000000-LL5F5:1:1111:22381:8766:1... at +/98.48% +34 66nt, >M01687:476:000000000-LL5F5:1:1111:16684:18216:1... at +/98.48% +35 66nt, >M01687:476:000000000-LL5F5:1:1109:25899:5291:1... at +/96.97% +36 65nt, >M01687:476:000000000-LL5F5:1:1109:5820:13104:1... at +/98.46% +37 66nt, >M01687:476:000000000-LL5F5:1:1108:17430:1762:1... at +/98.48% +38 66nt, >M01687:476:000000000-LL5F5:1:1107:4143:10971:1... at +/98.48% +39 58nt, >M01687:476:000000000-LL5F5:1:1107:24902:13409:1... at +/100.00% +40 66nt, >M01687:476:000000000-LL5F5:1:1103:17730:6382:1... at +/98.48% +41 66nt, >M01687:476:000000000-LL5F5:1:1103:12848:17783:1... at +/98.48% +42 65nt, >M01687:476:000000000-LL5F5:1:1103:12387:21379:1... at +/100.00% +43 66nt, >M01687:476:000000000-LL5F5:1:1103:13677:21867:1... at +/98.48% +44 66nt, >M01687:476:000000000-LL5F5:1:1117:17438:5818:1... at +/98.48% +45 66nt, >M01687:476:000000000-LL5F5:1:2119:21863:23097:1... at +/98.48% +>Cluster 14 +0 65nt, >M01687:476:000000000-LL5F5:1:1102:16233:3617:324... at +/100.00% +1 65nt, >M01687:476:000000000-LL5F5:1:1102:10721:8505:1... at +/98.46% +2 69nt, >M01687:476:000000000-LL5F5:1:1102:5354:8639:60... * +3 68nt, >M01687:476:000000000-LL5F5:1:1101:14005:11769:26... at +/100.00% +4 65nt, >M01687:476:000000000-LL5F5:1:1101:17975:13503:1... at +/98.46% +5 67nt, >M01687:476:000000000-LL5F5:1:2115:16835:20794:1... at +/98.51% +6 64nt, >M01687:476:000000000-LL5F5:1:2114:21117:2080:2... at +/100.00% +7 65nt, >M01687:476:000000000-LL5F5:1:2113:24695:15206:1... at +/98.46% +8 63nt, >M01687:476:000000000-LL5F5:1:2112:17812:2659:2... at +/100.00% +9 65nt, >M01687:476:000000000-LL5F5:1:2112:9661:21224:4... at +/98.46% +10 65nt, >M01687:476:000000000-LL5F5:1:2110:11576:10336:1... at +/98.46% +11 65nt, >M01687:476:000000000-LL5F5:1:2109:15192:24368:1... at +/98.46% +12 65nt, >M01687:476:000000000-LL5F5:1:2108:18068:8702:1... at +/98.46% +13 68nt, >M01687:476:000000000-LL5F5:1:2106:27902:18118:1... at +/100.00% +14 65nt, >M01687:476:000000000-LL5F5:1:2105:24499:8816:1... at +/98.46% +15 65nt, >M01687:476:000000000-LL5F5:1:2105:3651:10504:1... at +/98.46% +16 65nt, >M01687:476:000000000-LL5F5:1:2105:22923:23982:1... at +/98.46% +17 65nt, >M01687:476:000000000-LL5F5:1:2102:26837:9886:1... at +/98.46% +18 65nt, >M01687:476:000000000-LL5F5:1:2103:3531:7134:1... at +/98.46% +19 69nt, >M01687:476:000000000-LL5F5:1:1115:21812:1314:1... at +/98.55% +20 60nt, >M01687:476:000000000-LL5F5:1:1115:19184:24268:1... at +/98.33% +21 65nt, >M01687:476:000000000-LL5F5:1:1116:14212:6695:2... at +/98.46% +22 65nt, >M01687:476:000000000-LL5F5:1:1113:17371:6656:1... at +/98.46% +23 65nt, >M01687:476:000000000-LL5F5:1:1113:14333:22715:1... at +/98.46% +24 66nt, >M01687:476:000000000-LL5F5:1:1111:7827:12766:1... at +/98.48% +25 65nt, >M01687:476:000000000-LL5F5:1:1110:18166:2727:2... at +/98.46% +26 64nt, >M01687:476:000000000-LL5F5:1:1110:8568:15583:1... at +/98.44% +27 69nt, >M01687:476:000000000-LL5F5:1:1109:25144:3476:1... at +/98.55% +28 65nt, >M01687:476:000000000-LL5F5:1:1109:19103:23644:1... at +/98.46% +29 65nt, >M01687:476:000000000-LL5F5:1:1108:13946:6634:1... at +/98.46% +30 69nt, >M01687:476:000000000-LL5F5:1:1108:8001:17437:1... at +/98.55% +31 65nt, >M01687:476:000000000-LL5F5:1:1106:19252:4662:1... at +/100.00% +32 65nt, >M01687:476:000000000-LL5F5:1:1105:5636:5862:1... at +/98.46% +33 65nt, >M01687:476:000000000-LL5F5:1:1105:21499:9630:1... at +/96.92% +34 65nt, >M01687:476:000000000-LL5F5:1:1118:4614:19596:1... at +/98.46% +35 69nt, >M01687:476:000000000-LL5F5:1:1117:17490:22636:1... at +/98.55% +36 65nt, >M01687:476:000000000-LL5F5:1:2118:26475:4672:1... at +/98.46% +37 65nt, >M01687:476:000000000-LL5F5:1:2118:13782:8123:2... at +/98.46% +38 65nt, >M01687:476:000000000-LL5F5:1:2118:7414:16904:1... at +/98.46% +39 65nt, >M01687:476:000000000-LL5F5:1:2119:11906:24199:1... at +/98.46% +>Cluster 15 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:21662:9110:207... at +/100.00% +1 56nt, >M01687:476:000000000-LL5F5:1:1102:7762:23790:101... at +/98.21% +2 57nt, >M01687:476:000000000-LL5F5:1:1101:9655:4740:1... * +3 56nt, >M01687:476:000000000-LL5F5:1:1101:13419:11779:1... at +/96.43% +4 56nt, >M01687:476:000000000-LL5F5:1:2115:13892:22688:1... at +/96.43% +5 56nt, >M01687:476:000000000-LL5F5:1:2114:12570:14825:1... at +/98.21% +6 56nt, >M01687:476:000000000-LL5F5:1:2113:2010:10683:1... at +/98.21% +7 56nt, >M01687:476:000000000-LL5F5:1:2112:7870:10504:1... at +/96.43% +8 56nt, >M01687:476:000000000-LL5F5:1:2112:23351:16812:3... at +/96.43% +9 56nt, >M01687:476:000000000-LL5F5:1:2110:10074:4623:2... at +/98.21% +10 56nt, >M01687:476:000000000-LL5F5:1:2110:20472:10647:1... at +/98.21% +11 56nt, >M01687:476:000000000-LL5F5:1:2110:19769:19599:1... at +/98.21% +12 49nt, >M01687:476:000000000-LL5F5:1:2109:11912:6582:1... at +/100.00% +13 56nt, >M01687:476:000000000-LL5F5:1:2107:6148:8933:1... at +/96.43% +14 56nt, >M01687:476:000000000-LL5F5:1:2105:25489:6743:1... at +/98.21% +15 56nt, >M01687:476:000000000-LL5F5:1:2102:14180:15348:2... at +/98.21% +16 56nt, >M01687:476:000000000-LL5F5:1:2116:24084:23679:1... at +/98.21% +17 56nt, >M01687:476:000000000-LL5F5:1:2117:23476:14288:3... at +/98.21% +18 56nt, >M01687:476:000000000-LL5F5:1:1119:16666:1819:1... at +/96.43% +19 56nt, >M01687:476:000000000-LL5F5:1:1119:25619:10481:1... at +/98.21% +20 56nt, >M01687:476:000000000-LL5F5:1:1115:17435:19686:1... at +/98.21% +21 56nt, >M01687:476:000000000-LL5F5:1:1115:12564:19832:1... at +/98.21% +22 56nt, >M01687:476:000000000-LL5F5:1:1116:28476:11402:1... at +/98.21% +23 56nt, >M01687:476:000000000-LL5F5:1:1116:21133:12530:1... at +/96.43% +24 55nt, >M01687:476:000000000-LL5F5:1:1116:17191:20945:1... at +/98.18% +25 56nt, >M01687:476:000000000-LL5F5:1:1113:16615:9980:2... at +/98.21% +26 56nt, >M01687:476:000000000-LL5F5:1:1112:11081:5030:3... at +/96.43% +27 56nt, >M01687:476:000000000-LL5F5:1:1111:20273:3792:1... at +/96.43% +28 56nt, >M01687:476:000000000-LL5F5:1:1108:10030:24103:1... at +/98.21% +29 55nt, >M01687:476:000000000-LL5F5:1:1105:16225:6561:1... at +/98.18% +30 55nt, >M01687:476:000000000-LL5F5:1:1104:13295:8119:1... at +/98.18% +31 55nt, >M01687:476:000000000-LL5F5:1:1103:25257:3386:1... at +/98.18% +32 51nt, >M01687:476:000000000-LL5F5:1:1118:25607:22247:1... at +/100.00% +33 56nt, >M01687:476:000000000-LL5F5:1:1117:10645:12906:1... at +/96.43% +34 57nt, >M01687:476:000000000-LL5F5:1:1117:9116:19440:1... at +/96.49% +35 56nt, >M01687:476:000000000-LL5F5:1:2118:18867:10493:1... at +/98.21% +>Cluster 16 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:14842:4179:467... * +1 56nt, >M01687:476:000000000-LL5F5:1:1102:12567:5427:92... at +/98.21% +2 56nt, >M01687:476:000000000-LL5F5:1:1102:24619:6730:5... at +/98.21% +3 56nt, >M01687:476:000000000-LL5F5:1:1102:7968:12234:2... at +/98.21% +4 56nt, >M01687:476:000000000-LL5F5:1:2115:22389:5422:1... at +/96.43% +5 56nt, >M01687:476:000000000-LL5F5:1:2115:7350:6042:1... at +/98.21% +6 55nt, >M01687:476:000000000-LL5F5:1:2115:26313:7844:2... at +/100.00% +7 56nt, >M01687:476:000000000-LL5F5:1:2115:24158:10683:1... at +/96.43% +8 56nt, >M01687:476:000000000-LL5F5:1:2114:25449:6710:1... at +/98.21% +9 45nt, >M01687:476:000000000-LL5F5:1:2113:26241:9013:1... at +/97.78% +10 56nt, >M01687:476:000000000-LL5F5:1:2113:27645:10200:1... at +/98.21% +11 56nt, >M01687:476:000000000-LL5F5:1:2112:14066:8803:1... at +/98.21% +12 49nt, >M01687:476:000000000-LL5F5:1:2112:26747:9035:2... at +/97.96% +13 51nt, >M01687:476:000000000-LL5F5:1:2111:8940:9632:1... at +/100.00% +14 56nt, >M01687:476:000000000-LL5F5:1:2110:14356:16459:1... at +/96.43% +15 56nt, >M01687:476:000000000-LL5F5:1:2110:11996:23785:1... at +/98.21% +16 56nt, >M01687:476:000000000-LL5F5:1:2109:13690:20287:1... at +/96.43% +17 56nt, >M01687:476:000000000-LL5F5:1:2108:10716:24372:1... at +/98.21% +18 56nt, >M01687:476:000000000-LL5F5:1:2106:18972:12577:1... at +/98.21% +19 43nt, >M01687:476:000000000-LL5F5:1:2107:14780:16490:3... at +/100.00% +20 55nt, >M01687:476:000000000-LL5F5:1:2104:18805:14777:3... at +/100.00% +21 56nt, >M01687:476:000000000-LL5F5:1:2102:26461:18760:1... at +/96.43% +22 56nt, >M01687:476:000000000-LL5F5:1:2103:25199:14761:1... at +/98.21% +23 55nt, >M01687:476:000000000-LL5F5:1:2103:20943:21956:1... at +/100.00% +24 56nt, >M01687:476:000000000-LL5F5:1:2116:10543:19052:1... at +/96.43% +25 56nt, >M01687:476:000000000-LL5F5:1:2116:4438:19484:1... at +/98.21% +26 56nt, >M01687:476:000000000-LL5F5:1:2117:20445:14945:1... at +/98.21% +27 56nt, >M01687:476:000000000-LL5F5:1:1116:21187:7384:1... at +/96.43% +28 55nt, >M01687:476:000000000-LL5F5:1:1116:27723:13756:1... at +/100.00% +29 55nt, >M01687:476:000000000-LL5F5:1:1114:11704:21374:1... at +/100.00% +30 56nt, >M01687:476:000000000-LL5F5:1:1112:24087:20682:1... at +/98.21% +31 56nt, >M01687:476:000000000-LL5F5:1:1108:22722:17014:1... at +/96.43% +32 56nt, >M01687:476:000000000-LL5F5:1:1104:22287:22677:1... at +/98.21% +33 55nt, >M01687:476:000000000-LL5F5:1:1103:3826:13341:1... at +/98.18% +34 55nt, >M01687:476:000000000-LL5F5:1:1117:6968:3267:1... at +/98.18% +35 56nt, >M01687:476:000000000-LL5F5:1:1117:7240:20806:1... at +/96.43% +>Cluster 17 +0 79nt, >M01687:476:000000000-LL5F5:1:1102:11464:3349:265... * +1 79nt, >M01687:476:000000000-LL5F5:1:1102:9277:3682:1... at +/98.73% +2 79nt, >M01687:476:000000000-LL5F5:1:1102:27190:12730:1... at +/98.73% +3 79nt, >M01687:476:000000000-LL5F5:1:1102:26833:13133:1... at +/98.73% +4 79nt, >M01687:476:000000000-LL5F5:1:1102:13003:24247:2... at +/98.73% +5 79nt, >M01687:476:000000000-LL5F5:1:1101:25608:5156:1... at +/98.73% +6 79nt, >M01687:476:000000000-LL5F5:1:2113:5715:15753:1... at +/98.73% +7 79nt, >M01687:476:000000000-LL5F5:1:2112:6739:5243:1... at +/97.47% +8 79nt, >M01687:476:000000000-LL5F5:1:2111:21135:15145:1... at +/98.73% +9 79nt, >M01687:476:000000000-LL5F5:1:2108:12140:6962:1... at +/97.47% +10 79nt, >M01687:476:000000000-LL5F5:1:2108:25519:14993:1... at +/98.73% +11 79nt, >M01687:476:000000000-LL5F5:1:2108:13958:22633:1... at +/98.73% +12 78nt, >M01687:476:000000000-LL5F5:1:2104:9828:5330:1... at +/98.72% +13 79nt, >M01687:476:000000000-LL5F5:1:2104:11805:5667:1... at +/98.73% +14 79nt, >M01687:476:000000000-LL5F5:1:2104:8758:5840:1... at +/98.73% +15 79nt, >M01687:476:000000000-LL5F5:1:2104:25070:15253:1... at +/98.73% +16 76nt, >M01687:476:000000000-LL5F5:1:2104:19340:22664:1... at +/100.00% +17 79nt, >M01687:476:000000000-LL5F5:1:2104:10338:22974:1... at +/98.73% +18 79nt, >M01687:476:000000000-LL5F5:1:2105:5537:22244:1... at +/98.73% +19 79nt, >M01687:476:000000000-LL5F5:1:2105:8513:22620:1... at +/98.73% +20 78nt, >M01687:476:000000000-LL5F5:1:2102:6760:4463:2... at +/100.00% +21 72nt, >M01687:476:000000000-LL5F5:1:2116:27470:7804:1... at +/100.00% +22 79nt, >M01687:476:000000000-LL5F5:1:2117:15581:4233:1... at +/98.73% +23 79nt, >M01687:476:000000000-LL5F5:1:1119:14236:14679:1... at +/98.73% +24 78nt, >M01687:476:000000000-LL5F5:1:2101:8369:8122:2... at +/100.00% +25 75nt, >M01687:476:000000000-LL5F5:1:1115:22905:4226:1... at +/98.67% +26 62nt, >M01687:476:000000000-LL5F5:1:1115:21462:12729:1... at +/100.00% +27 78nt, >M01687:476:000000000-LL5F5:1:1115:20250:22298:1... at +/98.72% +28 79nt, >M01687:476:000000000-LL5F5:1:1116:4809:18497:1... at +/98.73% +29 79nt, >M01687:476:000000000-LL5F5:1:1110:19622:2742:1... at +/98.73% +30 79nt, >M01687:476:000000000-LL5F5:1:1105:23613:2914:1... at +/98.73% +31 79nt, >M01687:476:000000000-LL5F5:1:1103:16537:2915:1... at +/98.73% +32 79nt, >M01687:476:000000000-LL5F5:1:1103:19018:4232:1... at +/98.73% +33 66nt, >M01687:476:000000000-LL5F5:1:1103:5335:12598:1... at +/100.00% +34 79nt, >M01687:476:000000000-LL5F5:1:1117:14340:17868:1... at +/98.73% +>Cluster 18 +0 51nt, >M01687:476:000000000-LL5F5:1:1101:14465:24614:5... at +/98.04% +1 49nt, >M01687:476:000000000-LL5F5:1:2115:18879:4062:4... at +/97.96% +2 52nt, >M01687:476:000000000-LL5F5:1:2114:8444:2984:5... at +/100.00% +3 47nt, >M01687:476:000000000-LL5F5:1:2114:16500:4196:3... at +/97.87% +4 52nt, >M01687:476:000000000-LL5F5:1:2114:6621:13506:3... at +/98.08% +5 58nt, >M01687:476:000000000-LL5F5:1:2114:18749:13729:3... at +/100.00% +6 50nt, >M01687:476:000000000-LL5F5:1:2114:9729:14475:4... at +/98.00% +7 55nt, >M01687:476:000000000-LL5F5:1:2114:10582:17765:4... at +/98.18% +8 46nt, >M01687:476:000000000-LL5F5:1:2113:27436:16606:3... at +/97.83% +9 57nt, >M01687:476:000000000-LL5F5:1:2113:21943:17872:1... at +/98.25% +10 48nt, >M01687:476:000000000-LL5F5:1:2112:29391:13774:3... at +/97.92% +11 47nt, >M01687:476:000000000-LL5F5:1:2110:22069:19222:2... at +/100.00% +12 46nt, >M01687:476:000000000-LL5F5:1:2104:11224:22708:1... at +/100.00% +13 48nt, >M01687:476:000000000-LL5F5:1:2105:19275:18148:2... at +/100.00% +14 59nt, >M01687:476:000000000-LL5F5:1:2102:19501:23969:3... * +15 53nt, >M01687:476:000000000-LL5F5:1:2103:26277:17816:1... at +/96.23% +16 50nt, >M01687:476:000000000-LL5F5:1:2116:16392:21575:1... at +/100.00% +17 54nt, >M01687:476:000000000-LL5F5:1:2117:12942:7923:1... at +/100.00% +18 56nt, >M01687:476:000000000-LL5F5:1:2117:5965:10796:1... at +/98.21% +19 58nt, >M01687:476:000000000-LL5F5:1:1115:14210:4450:3... at +/98.28% +20 58nt, >M01687:476:000000000-LL5F5:1:1116:28658:9229:1... at +/96.55% +21 59nt, >M01687:476:000000000-LL5F5:1:1113:24448:23449:1... at +/98.31% +22 58nt, >M01687:476:000000000-LL5F5:1:1109:4712:9099:1... at +/96.55% +23 56nt, >M01687:476:000000000-LL5F5:1:1107:13570:8712:1... at +/98.21% +24 55nt, >M01687:476:000000000-LL5F5:1:1106:25008:18469:1... at +/98.18% +25 51nt, >M01687:476:000000000-LL5F5:1:1105:9953:3735:1... at +/100.00% +26 53nt, >M01687:476:000000000-LL5F5:1:1103:15139:16217:1... at +/98.11% +27 54nt, >M01687:476:000000000-LL5F5:1:1118:26391:14819:1... at +/98.15% +28 45nt, >M01687:476:000000000-LL5F5:1:2118:25517:4536:1... at +/97.78% +29 55nt, >M01687:476:000000000-LL5F5:1:2118:26867:20159:1... at +/100.00% +30 58nt, >M01687:476:000000000-LL5F5:1:2119:11712:17125:1... at +/96.55% +>Cluster 19 +0 22nt, >M01687:476:000000000-LL5F5:1:1102:15200:3075:23... at +/100.00% +1 28nt, >M01687:476:000000000-LL5F5:1:1102:15430:5444:105... * +2 26nt, >M01687:476:000000000-LL5F5:1:1102:12662:5623:37... at +/100.00% +3 27nt, >M01687:476:000000000-LL5F5:1:1102:12960:8289:104... at +/100.00% +4 25nt, >M01687:476:000000000-LL5F5:1:1102:22563:10050:17... at +/100.00% +5 24nt, >M01687:476:000000000-LL5F5:1:1102:29164:15390:25... at +/100.00% +6 21nt, >M01687:476:000000000-LL5F5:1:1102:27195:18275:3... at +/95.24% +7 21nt, >M01687:476:000000000-LL5F5:1:1102:27303:19138:36... at +/100.00% +8 25nt, >M01687:476:000000000-LL5F5:1:1101:29108:12005:1... at +/96.00% +9 21nt, >M01687:476:000000000-LL5F5:1:1101:3126:15408:6... at +/95.24% +10 23nt, >M01687:476:000000000-LL5F5:1:1101:19965:18151:33... at +/100.00% +11 28nt, >M01687:476:000000000-LL5F5:1:2115:29015:8968:1... at +/96.43% +12 23nt, >M01687:476:000000000-LL5F5:1:2115:4721:14419:4... at +/95.65% +13 28nt, >M01687:476:000000000-LL5F5:1:2114:26777:10735:2... at +/96.43% +14 24nt, >M01687:476:000000000-LL5F5:1:2112:11967:15107:6... at +/95.83% +15 23nt, >M01687:476:000000000-LL5F5:1:2107:3600:12138:1... at +/95.65% +16 23nt, >M01687:476:000000000-LL5F5:1:2102:20371:24044:1... at +/95.65% +17 23nt, >M01687:476:000000000-LL5F5:1:2103:25417:8172:1... at +/95.65% +18 27nt, >M01687:476:000000000-LL5F5:1:2117:17322:14799:1... at +/96.30% +19 23nt, >M01687:476:000000000-LL5F5:1:1115:26899:16716:1... at +/100.00% +20 28nt, >M01687:476:000000000-LL5F5:1:1113:20402:1502:1... at +/96.43% +21 28nt, >M01687:476:000000000-LL5F5:1:1112:17239:6541:1... at +/96.43% +22 28nt, >M01687:476:000000000-LL5F5:1:1112:6023:9608:1... at +/96.43% +23 27nt, >M01687:476:000000000-LL5F5:1:1110:12781:19451:1... at +/96.30% +24 21nt, >M01687:476:000000000-LL5F5:1:1104:16227:8278:1... at +/100.00% +25 22nt, >M01687:476:000000000-LL5F5:1:1104:27610:18972:1... at +/95.45% +26 26nt, >M01687:476:000000000-LL5F5:1:1118:25599:12896:1... at +/96.15% +27 28nt, >M01687:476:000000000-LL5F5:1:1118:26875:17378:1... at +/96.43% +28 26nt, >M01687:476:000000000-LL5F5:1:1117:20756:17110:1... at +/100.00% +29 26nt, >M01687:476:000000000-LL5F5:1:2118:6900:6048:1... at +/96.15% +30 21nt, >M01687:476:000000000-LL5F5:1:2118:21489:21801:1... at +/100.00% +>Cluster 20 +0 55nt, >M01687:476:000000000-LL5F5:1:1102:19876:1792:267... at +/100.00% +1 55nt, >M01687:476:000000000-LL5F5:1:1102:16601:17963:1... at +/98.18% +2 54nt, >M01687:476:000000000-LL5F5:1:1102:14395:24186:1... at +/100.00% +3 54nt, >M01687:476:000000000-LL5F5:1:1101:13019:7059:1... at +/98.15% +4 54nt, >M01687:476:000000000-LL5F5:1:1101:8111:11434:1... at +/100.00% +5 55nt, >M01687:476:000000000-LL5F5:1:2115:10286:8984:1... at +/98.18% +6 55nt, >M01687:476:000000000-LL5F5:1:2113:6030:17048:1... at +/98.18% +7 55nt, >M01687:476:000000000-LL5F5:1:2112:17749:4551:1... at +/98.18% +8 55nt, >M01687:476:000000000-LL5F5:1:2112:27990:11001:1... at +/98.18% +9 55nt, >M01687:476:000000000-LL5F5:1:2106:10880:5246:1... at +/98.18% +10 55nt, >M01687:476:000000000-LL5F5:1:2107:27226:17655:4... at +/98.18% +11 54nt, >M01687:476:000000000-LL5F5:1:2104:20040:4698:1... at +/100.00% +12 53nt, >M01687:476:000000000-LL5F5:1:2105:6284:19169:1... at +/100.00% +13 55nt, >M01687:476:000000000-LL5F5:1:2102:9188:7137:2... at +/98.18% +14 55nt, >M01687:476:000000000-LL5F5:1:2102:25601:13342:1... at +/96.36% +15 55nt, >M01687:476:000000000-LL5F5:1:2102:18756:15614:1... at +/98.18% +16 55nt, >M01687:476:000000000-LL5F5:1:1119:6341:11907:1... at +/98.18% +17 55nt, >M01687:476:000000000-LL5F5:1:1119:9182:12732:2... at +/98.18% +18 55nt, >M01687:476:000000000-LL5F5:1:2101:8268:15134:1... at +/98.18% +19 55nt, >M01687:476:000000000-LL5F5:1:1114:9050:9501:1... at +/98.18% +20 55nt, >M01687:476:000000000-LL5F5:1:1113:11956:7344:1... at +/98.18% +21 55nt, >M01687:476:000000000-LL5F5:1:1111:11864:11013:1... at +/98.18% +22 55nt, >M01687:476:000000000-LL5F5:1:1111:21863:20833:1... at +/98.18% +23 55nt, >M01687:476:000000000-LL5F5:1:1110:18877:2946:1... at +/98.18% +24 54nt, >M01687:476:000000000-LL5F5:1:1106:9375:22839:1... at +/100.00% +25 55nt, >M01687:476:000000000-LL5F5:1:1103:14465:7412:1... at +/96.36% +26 54nt, >M01687:476:000000000-LL5F5:1:1103:14382:24551:1... at +/100.00% +27 48nt, >M01687:476:000000000-LL5F5:1:1118:7725:5482:1... at +/100.00% +28 54nt, >M01687:476:000000000-LL5F5:1:1118:19908:15400:1... at +/98.15% +29 50nt, >M01687:476:000000000-LL5F5:1:2118:9025:13624:1... at +/100.00% +30 56nt, >M01687:476:000000000-LL5F5:1:2119:16744:6758:1... * +>Cluster 21 +0 167nt, >M01687:476:000000000-LL5F5:1:1102:8950:7758:87... * +1 166nt, >M01687:476:000000000-LL5F5:1:2115:3025:14108:1... at +/100.00% +2 126nt, >M01687:476:000000000-LL5F5:1:2115:10216:15565:1... at +/100.00% +3 167nt, >M01687:476:000000000-LL5F5:1:2114:4786:10764:1... at +/98.80% +4 167nt, >M01687:476:000000000-LL5F5:1:2114:8682:13455:1... at +/99.40% +5 167nt, >M01687:476:000000000-LL5F5:1:2114:25717:15579:1... at +/99.40% +6 166nt, >M01687:476:000000000-LL5F5:1:2114:13194:16198:1... at +/100.00% +7 159nt, >M01687:476:000000000-LL5F5:1:2113:12549:6132:1... at +/100.00% +8 167nt, >M01687:476:000000000-LL5F5:1:2109:24410:11322:1... at +/99.40% +9 167nt, >M01687:476:000000000-LL5F5:1:2109:14922:18788:1... at +/99.40% +10 167nt, >M01687:476:000000000-LL5F5:1:2104:16302:1694:1... at +/98.80% +11 167nt, >M01687:476:000000000-LL5F5:1:2103:6006:8574:1... at +/99.40% +12 167nt, >M01687:476:000000000-LL5F5:1:2117:27062:17973:1... at +/99.40% +13 133nt, >M01687:476:000000000-LL5F5:1:1119:20997:2506:1... at +/100.00% +14 147nt, >M01687:476:000000000-LL5F5:1:1119:23267:12665:1... at +/100.00% +15 167nt, >M01687:476:000000000-LL5F5:1:2101:23475:11878:1... at +/99.40% +16 167nt, >M01687:476:000000000-LL5F5:1:1115:1968:11520:1... at +/99.40% +17 167nt, >M01687:476:000000000-LL5F5:1:1115:15574:22728:1... at +/99.40% +18 167nt, >M01687:476:000000000-LL5F5:1:1116:2653:15187:1... at +/99.40% +19 166nt, >M01687:476:000000000-LL5F5:1:1113:20652:13081:1... at +/99.40% +20 167nt, >M01687:476:000000000-LL5F5:1:1112:20755:9638:1... at +/99.40% +21 166nt, >M01687:476:000000000-LL5F5:1:1111:5584:3638:1... at +/99.40% +22 167nt, >M01687:476:000000000-LL5F5:1:1107:9270:12108:1... at +/99.40% +23 167nt, >M01687:476:000000000-LL5F5:1:1105:17093:2351:1... at +/99.40% +24 167nt, >M01687:476:000000000-LL5F5:1:1103:17746:11362:1... at +/98.80% +25 144nt, >M01687:476:000000000-LL5F5:1:1103:17160:19000:1... at +/100.00% +26 167nt, >M01687:476:000000000-LL5F5:1:1118:9988:11281:1... at +/99.40% +27 167nt, >M01687:476:000000000-LL5F5:1:2118:3293:8861:1... at +/99.40% +28 167nt, >M01687:476:000000000-LL5F5:1:2119:26982:7627:1... at +/99.40% +29 167nt, >M01687:476:000000000-LL5F5:1:2119:5448:10285:1... at +/99.40% +>Cluster 22 +0 29nt, >M01687:476:000000000-LL5F5:1:1102:13776:1208:36... at +/100.00% +1 37nt, >M01687:476:000000000-LL5F5:1:1102:16191:8877:1... at +/97.30% +2 30nt, >M01687:476:000000000-LL5F5:1:1102:6995:12392:18... at +/100.00% +3 38nt, >M01687:476:000000000-LL5F5:1:1102:15717:24257:23... * +4 32nt, >M01687:476:000000000-LL5F5:1:1101:11171:1541:44... at +/100.00% +5 34nt, >M01687:476:000000000-LL5F5:1:1101:4441:8637:29... at +/100.00% +6 33nt, >M01687:476:000000000-LL5F5:1:2115:13381:1125:57... at +/100.00% +7 31nt, >M01687:476:000000000-LL5F5:1:2115:29278:10426:41... at +/100.00% +8 37nt, >M01687:476:000000000-LL5F5:1:2113:15767:9976:14... at +/100.00% +9 35nt, >M01687:476:000000000-LL5F5:1:2113:6550:12569:14... at +/100.00% +10 33nt, >M01687:476:000000000-LL5F5:1:2111:10925:13723:1... at +/96.97% +11 35nt, >M01687:476:000000000-LL5F5:1:2111:20522:15943:2... at +/97.14% +12 34nt, >M01687:476:000000000-LL5F5:1:2111:19513:23987:1... at +/97.06% +13 33nt, >M01687:476:000000000-LL5F5:1:2110:17164:1410:1... at +/96.97% +14 33nt, >M01687:476:000000000-LL5F5:1:2110:19698:1453:1... at +/96.97% +15 29nt, >M01687:476:000000000-LL5F5:1:2110:25759:22698:1... at +/96.55% +16 36nt, >M01687:476:000000000-LL5F5:1:2109:16113:7093:7... at +/100.00% +17 31nt, >M01687:476:000000000-LL5F5:1:2108:11217:24808:1... at +/100.00% +18 30nt, >M01687:476:000000000-LL5F5:1:2107:14118:9304:1... at +/96.67% +19 30nt, >M01687:476:000000000-LL5F5:1:2107:12208:10659:1... at +/96.67% +20 33nt, >M01687:476:000000000-LL5F5:1:2117:16550:1707:1... at +/96.97% +21 34nt, >M01687:476:000000000-LL5F5:1:2117:8314:24221:1... at +/97.06% +22 29nt, >M01687:476:000000000-LL5F5:1:1119:13697:19727:1... at +/96.55% +23 34nt, >M01687:476:000000000-LL5F5:1:1116:26996:7522:1... at +/97.06% +24 31nt, >M01687:476:000000000-LL5F5:1:1116:29044:9570:1... at +/96.77% +25 29nt, >M01687:476:000000000-LL5F5:1:1112:17677:22850:1... at +/96.55% +26 38nt, >M01687:476:000000000-LL5F5:1:1110:23491:24128:1... at +/97.37% +27 38nt, >M01687:476:000000000-LL5F5:1:1105:13273:3034:1... at +/97.37% +28 33nt, >M01687:476:000000000-LL5F5:1:2118:22988:11847:1... at +/96.97% +29 33nt, >M01687:476:000000000-LL5F5:1:2119:22772:1664:1... at +/96.97% +>Cluster 23 +0 73nt, >M01687:476:000000000-LL5F5:1:1102:16736:3088:303... * +1 73nt, >M01687:476:000000000-LL5F5:1:1102:22279:5837:1... at +/98.63% +2 72nt, >M01687:476:000000000-LL5F5:1:1102:24494:10478:2... at +/100.00% +3 73nt, >M01687:476:000000000-LL5F5:1:1102:21644:12989:1... at +/98.63% +4 72nt, >M01687:476:000000000-LL5F5:1:1102:19873:19570:2... at +/100.00% +5 73nt, >M01687:476:000000000-LL5F5:1:1102:15552:20241:1... at +/98.63% +6 73nt, >M01687:476:000000000-LL5F5:1:1101:7308:19280:9... at +/95.89% +7 73nt, >M01687:476:000000000-LL5F5:1:2115:21539:24873:1... at +/98.63% +8 73nt, >M01687:476:000000000-LL5F5:1:2113:23890:12189:1... at +/98.63% +9 58nt, >M01687:476:000000000-LL5F5:1:2111:18555:2372:1... at +/100.00% +10 73nt, >M01687:476:000000000-LL5F5:1:2111:24674:2523:1... at +/98.63% +11 73nt, >M01687:476:000000000-LL5F5:1:2106:22856:1230:1... at +/98.63% +12 73nt, >M01687:476:000000000-LL5F5:1:2104:19295:3371:1... at +/98.63% +13 73nt, >M01687:476:000000000-LL5F5:1:2104:25303:4234:1... at +/98.63% +14 73nt, >M01687:476:000000000-LL5F5:1:2116:16554:8981:1... at +/98.63% +15 73nt, >M01687:476:000000000-LL5F5:1:2116:5820:13702:2... at +/98.63% +16 73nt, >M01687:476:000000000-LL5F5:1:2116:8276:20554:3... at +/98.63% +17 73nt, >M01687:476:000000000-LL5F5:1:1115:19511:9381:1... at +/98.63% +18 73nt, >M01687:476:000000000-LL5F5:1:1112:11463:18779:4... at +/98.63% +19 73nt, >M01687:476:000000000-LL5F5:1:1112:8511:21488:1... at +/98.63% +20 73nt, >M01687:476:000000000-LL5F5:1:1111:5172:9819:1... at +/97.26% +21 73nt, >M01687:476:000000000-LL5F5:1:1108:18901:2613:1... at +/98.63% +22 73nt, >M01687:476:000000000-LL5F5:1:1108:18138:10835:1... at +/98.63% +23 73nt, >M01687:476:000000000-LL5F5:1:1107:21004:10355:1... at +/98.63% +24 73nt, >M01687:476:000000000-LL5F5:1:1107:27174:13033:1... at +/98.63% +25 68nt, >M01687:476:000000000-LL5F5:1:1103:25260:11528:1... at +/100.00% +26 73nt, >M01687:476:000000000-LL5F5:1:1103:14493:15421:1... at +/98.63% +27 73nt, >M01687:476:000000000-LL5F5:1:1117:23583:7627:1... at +/98.63% +28 72nt, >M01687:476:000000000-LL5F5:1:2118:27648:8187:1... at +/100.00% +>Cluster 24 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:22471:3969:145... * +1 90nt, >M01687:476:000000000-LL5F5:1:1101:28373:8843:2... at +/98.89% +2 90nt, >M01687:476:000000000-LL5F5:1:2113:28207:9930:1... at +/98.89% +3 89nt, >M01687:476:000000000-LL5F5:1:2113:18882:15197:1... at +/98.88% +4 90nt, >M01687:476:000000000-LL5F5:1:2113:4495:19503:1... at +/98.89% +5 90nt, >M01687:476:000000000-LL5F5:1:2113:12476:22977:1... at +/98.89% +6 71nt, >M01687:476:000000000-LL5F5:1:2112:13697:18019:1... at +/100.00% +7 90nt, >M01687:476:000000000-LL5F5:1:2106:16878:22000:1... at +/98.89% +8 89nt, >M01687:476:000000000-LL5F5:1:2105:6171:7639:1... at +/100.00% +9 89nt, >M01687:476:000000000-LL5F5:1:2102:14343:21991:1... at +/100.00% +10 89nt, >M01687:476:000000000-LL5F5:1:2103:10841:11211:1... at +/100.00% +11 89nt, >M01687:476:000000000-LL5F5:1:2116:25377:22820:2... at +/100.00% +12 85nt, >M01687:476:000000000-LL5F5:1:2117:7442:19245:1... at +/95.29% +13 85nt, >M01687:476:000000000-LL5F5:1:1119:3079:12038:1... at +/100.00% +14 90nt, >M01687:476:000000000-LL5F5:1:2101:26251:10659:1... at +/98.89% +15 90nt, >M01687:476:000000000-LL5F5:1:1115:22587:5393:1... at +/98.89% +16 89nt, >M01687:476:000000000-LL5F5:1:1114:6094:23341:1... at +/100.00% +17 90nt, >M01687:476:000000000-LL5F5:1:1113:23326:10485:1... at +/98.89% +18 90nt, >M01687:476:000000000-LL5F5:1:1113:20464:12378:1... at +/98.89% +19 90nt, >M01687:476:000000000-LL5F5:1:1112:5580:6653:1... at +/98.89% +20 90nt, >M01687:476:000000000-LL5F5:1:1110:6548:11512:1... at +/98.89% +21 90nt, >M01687:476:000000000-LL5F5:1:1109:22029:8132:1... at +/98.89% +22 90nt, >M01687:476:000000000-LL5F5:1:1107:14476:16710:3... at +/98.89% +23 70nt, >M01687:476:000000000-LL5F5:1:1106:5007:5997:1... at +/100.00% +24 90nt, >M01687:476:000000000-LL5F5:1:1106:15855:22707:1... at +/98.89% +25 75nt, >M01687:476:000000000-LL5F5:1:1104:6917:12489:1... at +/100.00% +26 89nt, >M01687:476:000000000-LL5F5:1:1104:8893:14508:1... at +/100.00% +27 90nt, >M01687:476:000000000-LL5F5:1:1117:23204:10746:1... at +/98.89% +28 90nt, >M01687:476:000000000-LL5F5:1:1117:9292:15028:1... at +/98.89% +>Cluster 25 +0 95nt, >M01687:476:000000000-LL5F5:1:1102:10054:6569:49... * +1 93nt, >M01687:476:000000000-LL5F5:1:1102:9221:6645:1... at +/97.85% +2 94nt, >M01687:476:000000000-LL5F5:1:1102:8867:10972:72... at +/97.87% +3 94nt, >M01687:476:000000000-LL5F5:1:1101:18690:9678:17... at +/97.87% +4 95nt, >M01687:476:000000000-LL5F5:1:1101:26158:17458:1... at +/96.84% +5 94nt, >M01687:476:000000000-LL5F5:1:2113:19332:8321:1... at +/96.81% +6 95nt, >M01687:476:000000000-LL5F5:1:2111:9698:6054:1... at +/98.95% +7 94nt, >M01687:476:000000000-LL5F5:1:2109:18587:10915:1... at +/96.81% +8 93nt, >M01687:476:000000000-LL5F5:1:2108:4412:19553:2... at +/97.85% +9 93nt, >M01687:476:000000000-LL5F5:1:2106:8173:5666:1... at +/97.85% +10 94nt, >M01687:476:000000000-LL5F5:1:2106:19181:19483:3... at +/96.81% +11 93nt, >M01687:476:000000000-LL5F5:1:2104:21831:1682:1... at +/97.85% +12 87nt, >M01687:476:000000000-LL5F5:1:2105:7108:5985:1... at +/97.70% +13 94nt, >M01687:476:000000000-LL5F5:1:2102:7805:4962:1... at +/96.81% +14 94nt, >M01687:476:000000000-LL5F5:1:2102:27027:16327:1... at +/100.00% +15 94nt, >M01687:476:000000000-LL5F5:1:2103:20237:2572:1... at +/96.81% +16 94nt, >M01687:476:000000000-LL5F5:1:2103:3760:10605:1... at +/96.81% +17 94nt, >M01687:476:000000000-LL5F5:1:2103:14850:24187:1... at +/96.81% +18 75nt, >M01687:476:000000000-LL5F5:1:2101:23742:8133:1... at +/100.00% +19 94nt, >M01687:476:000000000-LL5F5:1:1116:9067:5100:2... at +/96.81% +20 90nt, >M01687:476:000000000-LL5F5:1:1113:24861:14408:2... at +/100.00% +21 94nt, >M01687:476:000000000-LL5F5:1:1113:14507:20662:1... at +/96.81% +22 95nt, >M01687:476:000000000-LL5F5:1:1110:8238:5824:1... at +/98.95% +23 94nt, >M01687:476:000000000-LL5F5:1:1109:22027:18397:1... at +/96.81% +24 94nt, >M01687:476:000000000-LL5F5:1:1108:22066:18389:1... at +/96.81% +25 94nt, >M01687:476:000000000-LL5F5:1:1106:24738:22944:1... at +/96.81% +26 94nt, >M01687:476:000000000-LL5F5:1:1105:20672:13143:1... at +/96.81% +27 94nt, >M01687:476:000000000-LL5F5:1:1118:2556:16566:1... at +/96.81% +28 95nt, >M01687:476:000000000-LL5F5:1:1117:6231:19385:1... at +/98.95% +>Cluster 26 +0 66nt, >M01687:476:000000000-LL5F5:1:1102:13209:6712:357... * +1 66nt, >M01687:476:000000000-LL5F5:1:2115:22261:19854:1... at +/98.48% +2 66nt, >M01687:476:000000000-LL5F5:1:2114:23145:16334:3... at +/98.48% +3 66nt, >M01687:476:000000000-LL5F5:1:2113:3865:14571:1... at +/98.48% +4 66nt, >M01687:476:000000000-LL5F5:1:2112:6381:7525:1... at +/98.48% +5 66nt, >M01687:476:000000000-LL5F5:1:2112:9143:7866:1... at +/98.48% +6 65nt, >M01687:476:000000000-LL5F5:1:2111:14393:2730:1... at +/98.46% +7 66nt, >M01687:476:000000000-LL5F5:1:2111:21629:10927:1... at +/98.48% +8 66nt, >M01687:476:000000000-LL5F5:1:2111:25670:12513:1... at +/98.48% +9 65nt, >M01687:476:000000000-LL5F5:1:2109:7916:14469:1... at +/100.00% +10 66nt, >M01687:476:000000000-LL5F5:1:2106:14852:8830:1... at +/98.48% +11 66nt, >M01687:476:000000000-LL5F5:1:2106:28598:17988:2... at +/98.48% +12 66nt, >M01687:476:000000000-LL5F5:1:2106:10870:22703:1... at +/98.48% +13 66nt, >M01687:476:000000000-LL5F5:1:2107:16755:5925:1... at +/98.48% +14 66nt, >M01687:476:000000000-LL5F5:1:2105:21601:21096:1... at +/98.48% +15 63nt, >M01687:476:000000000-LL5F5:1:2102:7264:3328:1... at +/100.00% +16 65nt, >M01687:476:000000000-LL5F5:1:2102:2505:9486:1... at +/98.46% +17 66nt, >M01687:476:000000000-LL5F5:1:2103:7292:8764:2... at +/98.48% +18 65nt, >M01687:476:000000000-LL5F5:1:2116:19526:20797:1... at +/100.00% +19 59nt, >M01687:476:000000000-LL5F5:1:2101:6571:19506:1... at +/100.00% +20 56nt, >M01687:476:000000000-LL5F5:1:1115:14852:18230:1... at +/100.00% +21 66nt, >M01687:476:000000000-LL5F5:1:1116:17285:3211:1... at +/98.48% +22 66nt, >M01687:476:000000000-LL5F5:1:1114:3486:15713:1... at +/98.48% +23 66nt, >M01687:476:000000000-LL5F5:1:1113:24256:8446:1... at +/98.48% +24 66nt, >M01687:476:000000000-LL5F5:1:1108:16206:11150:1... at +/98.48% +25 66nt, >M01687:476:000000000-LL5F5:1:1108:25050:17292:1... at +/98.48% +26 65nt, >M01687:476:000000000-LL5F5:1:1117:15072:9235:1... at +/98.46% +27 66nt, >M01687:476:000000000-LL5F5:1:1117:15078:11368:1... at +/98.48% +28 66nt, >M01687:476:000000000-LL5F5:1:2119:20617:14901:1... at +/98.48% +>Cluster 27 +0 66nt, >M01687:476:000000000-LL5F5:1:1102:16400:3002:195... at +/100.00% +1 66nt, >M01687:476:000000000-LL5F5:1:2114:27049:14463:1... at +/98.48% +2 66nt, >M01687:476:000000000-LL5F5:1:2113:17960:20266:1... at +/96.97% +3 66nt, >M01687:476:000000000-LL5F5:1:2112:19370:13998:3... at +/98.48% +4 66nt, >M01687:476:000000000-LL5F5:1:2112:19376:17805:1... at +/98.48% +5 66nt, >M01687:476:000000000-LL5F5:1:2110:18579:9453:1... at +/98.48% +6 55nt, >M01687:476:000000000-LL5F5:1:2109:23311:15926:1... at +/96.36% +7 66nt, >M01687:476:000000000-LL5F5:1:2108:27561:15229:2... at +/98.48% +8 56nt, >M01687:476:000000000-LL5F5:1:2107:14951:20577:2... at +/100.00% +9 66nt, >M01687:476:000000000-LL5F5:1:2104:20860:19039:1... at +/98.48% +10 66nt, >M01687:476:000000000-LL5F5:1:2102:14878:10266:2... at +/98.48% +11 66nt, >M01687:476:000000000-LL5F5:1:2116:28197:16456:1... at +/98.48% +12 65nt, >M01687:476:000000000-LL5F5:1:2117:6644:18037:1... at +/98.46% +13 51nt, >M01687:476:000000000-LL5F5:1:1119:28535:8606:1... at +/100.00% +14 66nt, >M01687:476:000000000-LL5F5:1:1119:21917:16715:1... at +/98.48% +15 66nt, >M01687:476:000000000-LL5F5:1:1115:3595:9578:1... at +/98.48% +16 66nt, >M01687:476:000000000-LL5F5:1:1114:16249:12643:2... at +/98.48% +17 61nt, >M01687:476:000000000-LL5F5:1:1112:10737:16950:1... at +/100.00% +18 66nt, >M01687:476:000000000-LL5F5:1:1110:17851:9423:2... at +/98.48% +19 66nt, >M01687:476:000000000-LL5F5:1:1108:5258:18596:1... at +/98.48% +20 65nt, >M01687:476:000000000-LL5F5:1:1106:9601:10197:1... at +/100.00% +21 66nt, >M01687:476:000000000-LL5F5:1:1103:22223:7030:1... at +/98.48% +22 66nt, >M01687:476:000000000-LL5F5:1:1103:14285:9105:1... at +/98.48% +23 65nt, >M01687:476:000000000-LL5F5:1:1103:22858:12039:1... at +/100.00% +24 66nt, >M01687:476:000000000-LL5F5:1:1117:13284:16683:1... at +/98.48% +25 66nt, >M01687:476:000000000-LL5F5:1:1117:2324:16930:1... at +/98.48% +26 67nt, >M01687:476:000000000-LL5F5:1:2118:23461:20263:1... * +>Cluster 28 +0 73nt, >M01687:476:000000000-LL5F5:1:1102:13222:6556:221... at +/100.00% +1 74nt, >M01687:476:000000000-LL5F5:1:1102:8285:23199:1... * +2 72nt, >M01687:476:000000000-LL5F5:1:2115:15438:3688:1... at +/100.00% +3 73nt, >M01687:476:000000000-LL5F5:1:2111:26446:15225:1... at +/98.63% +4 73nt, >M01687:476:000000000-LL5F5:1:2109:18329:1886:1... at +/98.63% +5 73nt, >M01687:476:000000000-LL5F5:1:2109:10323:13123:1... at +/98.63% +6 73nt, >M01687:476:000000000-LL5F5:1:2109:3609:13312:1... at +/98.63% +7 68nt, >M01687:476:000000000-LL5F5:1:2109:8740:15360:1... at +/100.00% +8 73nt, >M01687:476:000000000-LL5F5:1:2108:13185:5953:2... at +/98.63% +9 68nt, >M01687:476:000000000-LL5F5:1:2108:14279:11940:1... at +/98.53% +10 73nt, >M01687:476:000000000-LL5F5:1:2105:16439:12016:1... at +/98.63% +11 72nt, >M01687:476:000000000-LL5F5:1:2102:13344:3880:1... at +/97.22% +12 73nt, >M01687:476:000000000-LL5F5:1:2102:27766:12691:1... at +/98.63% +13 73nt, >M01687:476:000000000-LL5F5:1:2102:15023:18417:1... at +/98.63% +14 72nt, >M01687:476:000000000-LL5F5:1:2103:13437:3255:1... at +/98.61% +15 73nt, >M01687:476:000000000-LL5F5:1:2116:9861:15266:1... at +/98.63% +16 73nt, >M01687:476:000000000-LL5F5:1:2117:3221:13137:1... at +/98.63% +17 72nt, >M01687:476:000000000-LL5F5:1:1116:8018:8916:1... at +/100.00% +18 73nt, >M01687:476:000000000-LL5F5:1:1113:27588:9366:1... at +/97.26% +19 73nt, >M01687:476:000000000-LL5F5:1:1113:27781:13627:1... at +/98.63% +20 72nt, >M01687:476:000000000-LL5F5:1:1110:22203:7811:1... at +/100.00% +21 73nt, >M01687:476:000000000-LL5F5:1:1110:8129:22879:1... at +/98.63% +22 73nt, >M01687:476:000000000-LL5F5:1:1109:8154:14210:1... at +/98.63% +23 73nt, >M01687:476:000000000-LL5F5:1:1104:3804:11030:1... at +/98.63% +24 72nt, >M01687:476:000000000-LL5F5:1:1104:10451:23385:1... at +/98.61% +25 73nt, >M01687:476:000000000-LL5F5:1:1118:24823:15115:1... at +/98.63% +26 73nt, >M01687:476:000000000-LL5F5:1:2118:18719:6351:1... at +/97.26% +>Cluster 29 +0 49nt, >M01687:476:000000000-LL5F5:1:1102:12327:1525:20... at +/100.00% +1 51nt, >M01687:476:000000000-LL5F5:1:1101:11738:1891:8... at +/100.00% +2 54nt, >M01687:476:000000000-LL5F5:1:1101:6870:18505:5... at +/100.00% +3 52nt, >M01687:476:000000000-LL5F5:1:2115:20220:12203:7... at +/100.00% +4 46nt, >M01687:476:000000000-LL5F5:1:2115:17812:23325:7... at +/100.00% +5 55nt, >M01687:476:000000000-LL5F5:1:2113:15587:2518:2... at +/100.00% +6 58nt, >M01687:476:000000000-LL5F5:1:2113:13624:23968:1... at +/98.28% +7 59nt, >M01687:476:000000000-LL5F5:1:2112:19374:23728:5... at +/100.00% +8 45nt, >M01687:476:000000000-LL5F5:1:2111:5659:19795:9... at +/100.00% +9 57nt, >M01687:476:000000000-LL5F5:1:2111:7872:20708:2... at +/100.00% +10 50nt, >M01687:476:000000000-LL5F5:1:2109:17843:22132:8... at +/100.00% +11 47nt, >M01687:476:000000000-LL5F5:1:2108:13396:5170:3... at +/100.00% +12 56nt, >M01687:476:000000000-LL5F5:1:2108:11715:24002:4... at +/100.00% +13 48nt, >M01687:476:000000000-LL5F5:1:2106:19360:4969:8... at +/100.00% +14 57nt, >M01687:476:000000000-LL5F5:1:2107:21866:18103:1... at +/98.25% +15 45nt, >M01687:476:000000000-LL5F5:1:2105:13091:2353:1... at +/97.78% +16 56nt, >M01687:476:000000000-LL5F5:1:2105:3144:17292:1... at +/98.21% +17 45nt, >M01687:476:000000000-LL5F5:1:2103:13814:21665:1... at +/97.78% +18 58nt, >M01687:476:000000000-LL5F5:1:2103:10190:24868:1... at +/98.28% +19 55nt, >M01687:476:000000000-LL5F5:1:2116:4039:13663:1... at +/98.18% +20 51nt, >M01687:476:000000000-LL5F5:1:1106:20124:6378:2... at +/98.04% +21 60nt, >M01687:476:000000000-LL5F5:1:1104:25751:17463:1... * +22 52nt, >M01687:476:000000000-LL5F5:1:1104:3064:18377:1... at +/98.08% +23 51nt, >M01687:476:000000000-LL5F5:1:2119:10957:16153:1... at +/100.00% +24 51nt, >M01687:476:000000000-LL5F5:1:2119:2651:17016:1... at +/98.04% +>Cluster 30 +0 60nt, >M01687:476:000000000-LL5F5:1:1102:15511:1426:1... at +/96.67% +1 66nt, >M01687:476:000000000-LL5F5:1:1102:12409:5168:192... at +/96.97% +2 65nt, >M01687:476:000000000-LL5F5:1:1101:2659:11121:12... at +/95.38% +3 66nt, >M01687:476:000000000-LL5F5:1:2115:20254:14886:1... at +/95.45% +4 65nt, >M01687:476:000000000-LL5F5:1:2114:19635:12139:1... at +/96.92% +5 65nt, >M01687:476:000000000-LL5F5:1:2110:29258:12711:2... at +/96.92% +6 65nt, >M01687:476:000000000-LL5F5:1:2109:14537:6988:2... at +/96.92% +7 66nt, >M01687:476:000000000-LL5F5:1:2106:6401:14723:2... at +/95.45% +8 65nt, >M01687:476:000000000-LL5F5:1:2104:6786:7394:1... at +/96.92% +9 66nt, >M01687:476:000000000-LL5F5:1:2105:18765:5732:2... at +/95.45% +10 63nt, >M01687:476:000000000-LL5F5:1:2102:24996:8039:1... at +/96.83% +11 65nt, >M01687:476:000000000-LL5F5:1:2103:21208:12955:1... at +/96.92% +12 66nt, >M01687:476:000000000-LL5F5:1:2117:4305:5312:1... at +/96.97% +13 66nt, >M01687:476:000000000-LL5F5:1:2101:9587:22553:1... at +/95.45% +14 66nt, >M01687:476:000000000-LL5F5:1:1115:17271:21831:1... at +/95.45% +15 65nt, >M01687:476:000000000-LL5F5:1:1116:22586:12365:1... at +/96.92% +16 65nt, >M01687:476:000000000-LL5F5:1:1113:27225:18964:2... at +/95.38% +17 67nt, >M01687:476:000000000-LL5F5:1:1112:8197:1629:8... * +18 59nt, >M01687:476:000000000-LL5F5:1:1109:6015:20435:1... at +/96.61% +19 66nt, >M01687:476:000000000-LL5F5:1:1108:1889:12947:1... at +/95.45% +20 66nt, >M01687:476:000000000-LL5F5:1:1107:14409:23047:1... at +/95.45% +21 67nt, >M01687:476:000000000-LL5F5:1:1118:13305:6778:1... at +/98.51% +22 66nt, >M01687:476:000000000-LL5F5:1:1118:11091:12100:1... at +/95.45% +>Cluster 31 +0 44nt, >M01687:476:000000000-LL5F5:1:1101:20403:22464:4... * +1 33nt, >M01687:476:000000000-LL5F5:1:2115:17253:1392:16... at +/100.00% +2 40nt, >M01687:476:000000000-LL5F5:1:2115:25131:6902:4... at +/97.50% +3 44nt, >M01687:476:000000000-LL5F5:1:2115:23137:7010:3... at +/97.73% +4 44nt, >M01687:476:000000000-LL5F5:1:2115:6742:10132:1... at +/95.45% +5 34nt, >M01687:476:000000000-LL5F5:1:2113:12611:9773:4... at +/100.00% +6 37nt, >M01687:476:000000000-LL5F5:1:2112:6517:14770:5... at +/97.30% +7 41nt, >M01687:476:000000000-LL5F5:1:2111:6063:17703:2... at +/100.00% +8 37nt, >M01687:476:000000000-LL5F5:1:2110:9221:12933:3... at +/100.00% +9 39nt, >M01687:476:000000000-LL5F5:1:2109:15612:18099:2... at +/100.00% +10 36nt, >M01687:476:000000000-LL5F5:1:2106:7881:3884:4... at +/97.22% +11 42nt, >M01687:476:000000000-LL5F5:1:2102:15329:11116:1... at +/100.00% +12 41nt, >M01687:476:000000000-LL5F5:1:2116:15377:24743:7... at +/97.56% +13 42nt, >M01687:476:000000000-LL5F5:1:1119:23267:2729:4... at +/97.62% +14 35nt, >M01687:476:000000000-LL5F5:1:1115:16354:6811:1... at +/97.14% +15 40nt, >M01687:476:000000000-LL5F5:1:1115:22057:11164:2... at +/100.00% +16 35nt, >M01687:476:000000000-LL5F5:1:1112:15283:16240:3... at +/100.00% +17 42nt, >M01687:476:000000000-LL5F5:1:1110:22724:6082:1... at +/95.24% +18 38nt, >M01687:476:000000000-LL5F5:1:1110:13838:11707:2... at +/100.00% +19 43nt, >M01687:476:000000000-LL5F5:1:1110:6747:23946:1... at +/97.67% +20 43nt, >M01687:476:000000000-LL5F5:1:1117:12097:4008:1... at +/97.67% +21 42nt, >M01687:476:000000000-LL5F5:1:2118:15011:4867:1... at +/97.62% +22 44nt, >M01687:476:000000000-LL5F5:1:2118:27841:7254:1... at +/95.45% +>Cluster 32 +0 66nt, >M01687:476:000000000-LL5F5:1:1102:7902:2211:255... at +/100.00% +1 66nt, >M01687:476:000000000-LL5F5:1:1102:17802:3297:9... at +/98.48% +2 66nt, >M01687:476:000000000-LL5F5:1:1101:10414:5870:6... at +/98.48% +3 65nt, >M01687:476:000000000-LL5F5:1:2114:26060:5089:2... at +/100.00% +4 66nt, >M01687:476:000000000-LL5F5:1:2112:20947:12808:1... at +/96.97% +5 66nt, >M01687:476:000000000-LL5F5:1:2111:8672:19072:1... at +/98.48% +6 66nt, >M01687:476:000000000-LL5F5:1:2111:6494:20786:1... at +/98.48% +7 65nt, >M01687:476:000000000-LL5F5:1:2108:12793:23689:2... at +/95.38% +8 66nt, >M01687:476:000000000-LL5F5:1:2105:21871:3964:1... at +/98.48% +9 66nt, >M01687:476:000000000-LL5F5:1:2105:18394:19398:1... at +/98.48% +10 65nt, >M01687:476:000000000-LL5F5:1:2103:14048:21230:1... at +/100.00% +11 66nt, >M01687:476:000000000-LL5F5:1:1113:7526:5543:1... at +/98.48% +12 66nt, >M01687:476:000000000-LL5F5:1:1112:13487:5388:1... at +/98.48% +13 65nt, >M01687:476:000000000-LL5F5:1:1112:21237:11111:1... at +/100.00% +14 85nt, >M01687:476:000000000-LL5F5:1:1112:25832:16860:1... * +15 66nt, >M01687:476:000000000-LL5F5:1:1108:22549:7794:2... at +/98.48% +16 66nt, >M01687:476:000000000-LL5F5:1:1108:27937:12243:1... at +/96.97% +17 66nt, >M01687:476:000000000-LL5F5:1:1108:20943:23627:1... at +/98.48% +18 66nt, >M01687:476:000000000-LL5F5:1:1107:9891:16503:1... at +/98.48% +19 66nt, >M01687:476:000000000-LL5F5:1:1106:12662:1892:1... at +/96.97% +20 65nt, >M01687:476:000000000-LL5F5:1:1106:18272:6255:1... at +/100.00% +21 66nt, >M01687:476:000000000-LL5F5:1:1106:13104:13288:1... at +/98.48% +22 66nt, >M01687:476:000000000-LL5F5:1:1106:7328:22301:1... at +/98.48% +>Cluster 33 +0 101nt, >M01687:476:000000000-LL5F5:1:1102:3423:13628:1... * +1 100nt, >M01687:476:000000000-LL5F5:1:1102:16344:22137:1... at +/97.00% +2 101nt, >M01687:476:000000000-LL5F5:1:2115:3793:6871:3... at +/98.02% +3 101nt, >M01687:476:000000000-LL5F5:1:2115:20067:16660:1... at +/98.02% +4 101nt, >M01687:476:000000000-LL5F5:1:2112:20934:5916:1... at +/97.03% +5 101nt, >M01687:476:000000000-LL5F5:1:2112:15458:23500:1... at +/98.02% +6 94nt, >M01687:476:000000000-LL5F5:1:2108:14365:2108:1... at +/98.94% +7 101nt, >M01687:476:000000000-LL5F5:1:2108:11520:16850:1... at +/98.02% +8 101nt, >M01687:476:000000000-LL5F5:1:2106:13240:11056:4... at +/98.02% +9 101nt, >M01687:476:000000000-LL5F5:1:2106:15741:16391:1... at +/98.02% +10 101nt, >M01687:476:000000000-LL5F5:1:2107:20559:23122:2... at +/98.02% +11 101nt, >M01687:476:000000000-LL5F5:1:2105:25871:9879:1... at +/97.03% +12 101nt, >M01687:476:000000000-LL5F5:1:2103:10216:8841:1... at +/98.02% +13 97nt, >M01687:476:000000000-LL5F5:1:2116:13206:21298:1... at +/98.97% +14 101nt, >M01687:476:000000000-LL5F5:1:2117:21653:4021:1... at +/98.02% +15 101nt, >M01687:476:000000000-LL5F5:1:1119:14143:17075:1... at +/98.02% +16 101nt, >M01687:476:000000000-LL5F5:1:1115:4007:11419:1... at +/98.02% +17 101nt, >M01687:476:000000000-LL5F5:1:1113:26548:5754:2... at +/98.02% +18 99nt, >M01687:476:000000000-LL5F5:1:1113:21115:19082:1... at +/98.99% +19 101nt, >M01687:476:000000000-LL5F5:1:1104:3739:7637:1... at +/98.02% +20 100nt, >M01687:476:000000000-LL5F5:1:1104:15865:22401:1... at +/99.00% +21 101nt, >M01687:476:000000000-LL5F5:1:1103:8970:9106:1... at +/97.03% +22 101nt, >M01687:476:000000000-LL5F5:1:2119:15406:11775:1... at +/98.02% +>Cluster 34 +0 66nt, >M01687:476:000000000-LL5F5:1:1102:28627:10044:131... at +/100.00% +1 66nt, >M01687:476:000000000-LL5F5:1:1101:8535:8897:27... at +/95.45% +2 66nt, >M01687:476:000000000-LL5F5:1:2114:26157:8178:3... at +/98.48% +3 66nt, >M01687:476:000000000-LL5F5:1:2113:15165:17858:1... at +/98.48% +4 64nt, >M01687:476:000000000-LL5F5:1:2112:9335:5885:1... at +/98.44% +5 66nt, >M01687:476:000000000-LL5F5:1:2112:19507:7462:1... at +/98.48% +6 65nt, >M01687:476:000000000-LL5F5:1:2107:22670:15940:1... at +/98.46% +7 67nt, >M01687:476:000000000-LL5F5:1:2104:22514:14220:1... * +8 66nt, >M01687:476:000000000-LL5F5:1:2102:20233:21602:1... at +/96.97% +9 66nt, >M01687:476:000000000-LL5F5:1:2103:12396:24502:1... at +/98.48% +10 66nt, >M01687:476:000000000-LL5F5:1:2116:14271:20626:1... at +/98.48% +11 66nt, >M01687:476:000000000-LL5F5:1:1119:26706:14090:2... at +/98.48% +12 66nt, >M01687:476:000000000-LL5F5:1:1115:16861:3772:1... at +/98.48% +13 66nt, >M01687:476:000000000-LL5F5:1:1115:24776:7644:1... at +/98.48% +14 65nt, >M01687:476:000000000-LL5F5:1:1112:18796:6994:1... at +/100.00% +15 65nt, >M01687:476:000000000-LL5F5:1:1107:9893:14789:1... at +/100.00% +16 66nt, >M01687:476:000000000-LL5F5:1:1107:15128:15627:1... at +/98.48% +17 66nt, >M01687:476:000000000-LL5F5:1:1106:6295:14212:1... at +/98.48% +18 60nt, >M01687:476:000000000-LL5F5:1:1105:16503:20391:1... at +/100.00% +19 66nt, >M01687:476:000000000-LL5F5:1:1103:22760:7325:1... at +/96.97% +20 66nt, >M01687:476:000000000-LL5F5:1:1103:24996:10250:1... at +/98.48% +21 66nt, >M01687:476:000000000-LL5F5:1:2119:18274:8791:1... at +/98.48% +>Cluster 35 +0 82nt, >M01687:476:000000000-LL5F5:1:1102:25380:6641:129... * +1 82nt, >M01687:476:000000000-LL5F5:1:1101:29016:14275:1... at +/98.78% +2 82nt, >M01687:476:000000000-LL5F5:1:2113:16336:21485:2... at +/98.78% +3 82nt, >M01687:476:000000000-LL5F5:1:2112:7621:22955:2... at +/98.78% +4 82nt, >M01687:476:000000000-LL5F5:1:2111:8193:9880:1... at +/98.78% +5 82nt, >M01687:476:000000000-LL5F5:1:2109:14644:4585:1... at +/98.78% +6 82nt, >M01687:476:000000000-LL5F5:1:2106:8002:7352:1... at +/98.78% +7 82nt, >M01687:476:000000000-LL5F5:1:2107:14235:8058:1... at +/98.78% +8 82nt, >M01687:476:000000000-LL5F5:1:2105:5913:7222:1... at +/98.78% +9 81nt, >M01687:476:000000000-LL5F5:1:2102:28075:12405:1... at +/100.00% +10 82nt, >M01687:476:000000000-LL5F5:1:2102:26385:21735:1... at +/98.78% +11 82nt, >M01687:476:000000000-LL5F5:1:2103:2950:15670:2... at +/95.12% +12 82nt, >M01687:476:000000000-LL5F5:1:2103:17764:17131:1... at +/98.78% +13 82nt, >M01687:476:000000000-LL5F5:1:2116:16893:5433:1... at +/98.78% +14 81nt, >M01687:476:000000000-LL5F5:1:1111:16386:6776:1... at +/100.00% +15 82nt, >M01687:476:000000000-LL5F5:1:1109:14714:11592:1... at +/98.78% +16 82nt, >M01687:476:000000000-LL5F5:1:1109:8074:19739:1... at +/98.78% +17 82nt, >M01687:476:000000000-LL5F5:1:1105:24888:19042:1... at +/98.78% +18 82nt, >M01687:476:000000000-LL5F5:1:1105:25657:21846:1... at +/98.78% +19 82nt, >M01687:476:000000000-LL5F5:1:1105:9548:22797:1... at +/98.78% +20 82nt, >M01687:476:000000000-LL5F5:1:2119:17081:18207:1... at +/98.78% +>Cluster 36 +0 43nt, >M01687:476:000000000-LL5F5:1:1102:12788:1545:13... at +/100.00% +1 47nt, >M01687:476:000000000-LL5F5:1:1102:13185:1948:7... at +/100.00% +2 47nt, >M01687:476:000000000-LL5F5:1:1102:7551:2599:1... at +/97.87% +3 39nt, >M01687:476:000000000-LL5F5:1:1102:15955:7488:25... at +/100.00% +4 49nt, >M01687:476:000000000-LL5F5:1:2115:7337:6060:16... at +/100.00% +5 47nt, >M01687:476:000000000-LL5F5:1:2114:18323:4439:1... at +/97.87% +6 50nt, >M01687:476:000000000-LL5F5:1:2114:13340:15525:1... at +/98.00% +7 52nt, >M01687:476:000000000-LL5F5:1:2113:20990:21212:1... * +8 50nt, >M01687:476:000000000-LL5F5:1:2111:22949:3479:5... at +/100.00% +9 47nt, >M01687:476:000000000-LL5F5:1:2111:14281:6131:1... at +/95.74% +10 48nt, >M01687:476:000000000-LL5F5:1:2111:24146:6909:8... at +/100.00% +11 44nt, >M01687:476:000000000-LL5F5:1:2111:3909:7515:4... at +/100.00% +12 39nt, >M01687:476:000000000-LL5F5:1:2109:25069:2780:1... at +/97.44% +13 50nt, >M01687:476:000000000-LL5F5:1:2108:16611:8409:7... at +/100.00% +14 51nt, >M01687:476:000000000-LL5F5:1:2106:7277:18436:1... at +/100.00% +15 39nt, >M01687:476:000000000-LL5F5:1:1119:25600:4095:1... at +/97.44% +16 43nt, >M01687:476:000000000-LL5F5:1:1119:18713:17429:1... at +/100.00% +17 48nt, >M01687:476:000000000-LL5F5:1:1119:16122:22528:2... at +/100.00% +18 48nt, >M01687:476:000000000-LL5F5:1:2101:14394:10878:1... at +/100.00% +19 46nt, >M01687:476:000000000-LL5F5:1:1116:23988:4105:4... at +/100.00% +20 39nt, >M01687:476:000000000-LL5F5:1:1110:11883:3947:1... at +/97.44% +>Cluster 37 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:24403:4652:126... * +1 49nt, >M01687:476:000000000-LL5F5:1:1102:7810:8263:2... at +/100.00% +2 56nt, >M01687:476:000000000-LL5F5:1:2115:11786:3901:2... at +/98.21% +3 56nt, >M01687:476:000000000-LL5F5:1:2114:9954:6486:4... at +/98.21% +4 56nt, >M01687:476:000000000-LL5F5:1:2113:4031:7763:1... at +/98.21% +5 56nt, >M01687:476:000000000-LL5F5:1:2111:18696:2377:1... at +/98.21% +6 56nt, >M01687:476:000000000-LL5F5:1:2109:19081:6018:1... at +/98.21% +7 56nt, >M01687:476:000000000-LL5F5:1:2109:17507:6176:1... at +/96.43% +8 56nt, >M01687:476:000000000-LL5F5:1:2109:8396:21964:1... at +/98.21% +9 56nt, >M01687:476:000000000-LL5F5:1:2105:8560:16090:1... at +/98.21% +10 52nt, >M01687:476:000000000-LL5F5:1:2102:13350:20118:1... at +/100.00% +11 56nt, >M01687:476:000000000-LL5F5:1:2117:6533:4370:2... at +/98.21% +12 56nt, >M01687:476:000000000-LL5F5:1:1119:13843:11719:1... at +/98.21% +13 55nt, >M01687:476:000000000-LL5F5:1:1119:14439:12369:1... at +/100.00% +14 55nt, >M01687:476:000000000-LL5F5:1:1116:20319:9868:1... at +/98.18% +15 56nt, >M01687:476:000000000-LL5F5:1:1111:13998:21480:1... at +/98.21% +16 55nt, >M01687:476:000000000-LL5F5:1:1110:4238:13572:1... at +/100.00% +17 56nt, >M01687:476:000000000-LL5F5:1:1109:11160:10415:2... at +/98.21% +18 56nt, >M01687:476:000000000-LL5F5:1:1107:25568:11298:1... at +/96.43% +19 56nt, >M01687:476:000000000-LL5F5:1:1118:27188:7264:1... at +/98.21% +>Cluster 38 +0 27nt, >M01687:476:000000000-LL5F5:1:1102:26332:9434:34... at +/100.00% +1 26nt, >M01687:476:000000000-LL5F5:1:1102:23744:13927:31... at +/100.00% +2 31nt, >M01687:476:000000000-LL5F5:1:1102:20920:19852:25... at +/100.00% +3 28nt, >M01687:476:000000000-LL5F5:1:1102:12472:22516:24... at +/100.00% +4 29nt, >M01687:476:000000000-LL5F5:1:1101:20397:3386:13... at +/100.00% +5 33nt, >M01687:476:000000000-LL5F5:1:2115:16302:1536:35... at +/100.00% +6 28nt, >M01687:476:000000000-LL5F5:1:2115:4645:16670:1... at +/96.43% +7 32nt, >M01687:476:000000000-LL5F5:1:2113:22134:5560:14... at +/100.00% +8 28nt, >M01687:476:000000000-LL5F5:1:2112:17502:18877:1... at +/96.43% +9 33nt, >M01687:476:000000000-LL5F5:1:2110:21130:1208:1... at +/96.97% +10 31nt, >M01687:476:000000000-LL5F5:1:2106:24237:2745:1... at +/96.77% +11 33nt, >M01687:476:000000000-LL5F5:1:2107:10119:2577:1... at +/96.97% +12 30nt, >M01687:476:000000000-LL5F5:1:2103:6740:21602:5... at +/100.00% +13 31nt, >M01687:476:000000000-LL5F5:1:2116:25788:20350:1... at +/96.77% +14 33nt, >M01687:476:000000000-LL5F5:1:1114:24132:5670:1... at +/96.97% +15 30nt, >M01687:476:000000000-LL5F5:1:1113:4933:8956:1... at +/96.67% +16 31nt, >M01687:476:000000000-LL5F5:1:1108:12474:22694:2... at +/96.77% +17 34nt, >M01687:476:000000000-LL5F5:1:1104:9992:16635:1... * +18 31nt, >M01687:476:000000000-LL5F5:1:1103:20151:23649:1... at +/96.77% +19 33nt, >M01687:476:000000000-LL5F5:1:2118:18277:1287:1... at +/96.97% +>Cluster 39 +0 41nt, >M01687:476:000000000-LL5F5:1:1102:24069:11466:8... at +/100.00% +1 39nt, >M01687:476:000000000-LL5F5:1:1102:26800:16730:16... at +/100.00% +2 35nt, >M01687:476:000000000-LL5F5:1:1102:16614:23750:5... at +/100.00% +3 36nt, >M01687:476:000000000-LL5F5:1:1101:5314:22285:10... at +/100.00% +4 40nt, >M01687:476:000000000-LL5F5:1:2114:4614:13686:9... at +/100.00% +5 43nt, >M01687:476:000000000-LL5F5:1:2114:19399:13852:9... at +/100.00% +6 42nt, >M01687:476:000000000-LL5F5:1:2114:19492:14301:12... at +/100.00% +7 44nt, >M01687:476:000000000-LL5F5:1:2113:20131:8821:1... at +/95.45% +8 38nt, >M01687:476:000000000-LL5F5:1:2112:5329:10272:18... at +/100.00% +9 39nt, >M01687:476:000000000-LL5F5:1:2112:13821:18633:1... at +/97.44% +10 46nt, >M01687:476:000000000-LL5F5:1:2108:19718:18972:1... * +11 35nt, >M01687:476:000000000-LL5F5:1:2106:10997:23381:1... at +/97.14% +12 44nt, >M01687:476:000000000-LL5F5:1:2107:26915:9928:9... at +/97.73% +13 42nt, >M01687:476:000000000-LL5F5:1:2104:6870:9301:1... at +/97.62% +14 37nt, >M01687:476:000000000-LL5F5:1:2103:4790:11110:6... at +/100.00% +15 43nt, >M01687:476:000000000-LL5F5:1:2103:9306:21650:1... at +/97.67% +16 41nt, >M01687:476:000000000-LL5F5:1:2117:18949:5813:1... at +/97.56% +17 36nt, >M01687:476:000000000-LL5F5:1:1111:26786:10531:1... at +/97.22% +18 44nt, >M01687:476:000000000-LL5F5:1:1111:12468:21905:1... at +/95.45% +19 41nt, >M01687:476:000000000-LL5F5:1:1106:9598:16701:1... at +/97.56% +>Cluster 40 +0 71nt, >M01687:476:000000000-LL5F5:1:1102:19135:8076:3... at +/100.00% +1 61nt, >M01687:476:000000000-LL5F5:1:1101:3805:6770:1... at +/100.00% +2 64nt, >M01687:476:000000000-LL5F5:1:1101:20633:14925:1... at +/100.00% +3 79nt, >M01687:476:000000000-LL5F5:1:2115:16171:5096:4... at +/100.00% +4 70nt, >M01687:476:000000000-LL5F5:1:2114:8537:3379:2... at +/100.00% +5 73nt, >M01687:476:000000000-LL5F5:1:2113:19548:15074:1... at +/100.00% +6 77nt, >M01687:476:000000000-LL5F5:1:2112:15250:17982:1... at +/100.00% +7 78nt, >M01687:476:000000000-LL5F5:1:2112:20107:22737:2... at +/100.00% +8 63nt, >M01687:476:000000000-LL5F5:1:2110:15125:12362:2... at +/100.00% +9 65nt, >M01687:476:000000000-LL5F5:1:2108:19368:18111:1... at +/98.46% +10 73nt, >M01687:476:000000000-LL5F5:1:2102:22534:20245:1... at +/98.63% +11 69nt, >M01687:476:000000000-LL5F5:1:2103:21549:21448:3... at +/100.00% +12 67nt, >M01687:476:000000000-LL5F5:1:2117:21124:23540:2... at +/100.00% +13 81nt, >M01687:476:000000000-LL5F5:1:1111:15472:22739:1... * +14 67nt, >M01687:476:000000000-LL5F5:1:1109:25603:6516:1... at +/100.00% +15 72nt, >M01687:476:000000000-LL5F5:1:1108:9794:5487:1... at +/100.00% +16 66nt, >M01687:476:000000000-LL5F5:1:1106:27244:19745:1... at +/100.00% +17 78nt, >M01687:476:000000000-LL5F5:1:1105:20233:17347:1... at +/98.72% +18 76nt, >M01687:476:000000000-LL5F5:1:2118:23762:13316:1... at +/100.00% +>Cluster 41 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:10096:2071:133... at +/100.00% +1 48nt, >M01687:476:000000000-LL5F5:1:1102:23390:2990:1... at +/100.00% +2 56nt, >M01687:476:000000000-LL5F5:1:1102:18144:16063:10... at +/96.43% +3 56nt, >M01687:476:000000000-LL5F5:1:1101:13648:8741:2... at +/98.21% +4 56nt, >M01687:476:000000000-LL5F5:1:2115:3047:13557:1... at +/98.21% +5 56nt, >M01687:476:000000000-LL5F5:1:2113:20920:12112:2... at +/98.21% +6 56nt, >M01687:476:000000000-LL5F5:1:2112:14717:2555:1... at +/98.21% +7 56nt, >M01687:476:000000000-LL5F5:1:2111:11610:7412:1... at +/98.21% +8 57nt, >M01687:476:000000000-LL5F5:1:2108:6610:11093:1... * +9 56nt, >M01687:476:000000000-LL5F5:1:2106:10843:6531:1... at +/98.21% +10 56nt, >M01687:476:000000000-LL5F5:1:2106:25047:11864:1... at +/98.21% +11 56nt, >M01687:476:000000000-LL5F5:1:2107:18116:13493:1... at +/98.21% +12 56nt, >M01687:476:000000000-LL5F5:1:2104:16208:10950:1... at +/96.43% +13 55nt, >M01687:476:000000000-LL5F5:1:2105:22368:6682:1... at +/100.00% +14 55nt, >M01687:476:000000000-LL5F5:1:2116:27981:12551:1... at +/98.18% +15 45nt, >M01687:476:000000000-LL5F5:1:1116:11153:4727:1... at +/95.56% +16 55nt, >M01687:476:000000000-LL5F5:1:1105:15644:21165:1... at +/100.00% +17 54nt, >M01687:476:000000000-LL5F5:1:1103:3205:18953:1... at +/100.00% +18 56nt, >M01687:476:000000000-LL5F5:1:1118:5812:17164:1... at +/98.21% +>Cluster 42 +0 38nt, >M01687:476:000000000-LL5F5:1:1101:15009:4289:13... at +/100.00% +1 47nt, >M01687:476:000000000-LL5F5:1:2115:14537:5971:3... at +/100.00% +2 44nt, >M01687:476:000000000-LL5F5:1:2115:22550:24123:1... at +/97.73% +3 43nt, >M01687:476:000000000-LL5F5:1:2114:4375:10764:10... at +/100.00% +4 48nt, >M01687:476:000000000-LL5F5:1:2114:25947:12904:3... at +/100.00% +5 39nt, >M01687:476:000000000-LL5F5:1:2113:10130:10505:8... at +/100.00% +6 40nt, >M01687:476:000000000-LL5F5:1:2113:14405:22966:8... at +/100.00% +7 42nt, >M01687:476:000000000-LL5F5:1:2109:10009:16822:14... at +/100.00% +8 44nt, >M01687:476:000000000-LL5F5:1:2108:28490:9588:10... at +/100.00% +9 39nt, >M01687:476:000000000-LL5F5:1:2107:4569:10592:1... at +/97.44% +10 41nt, >M01687:476:000000000-LL5F5:1:2105:2863:18586:4... at +/100.00% +11 46nt, >M01687:476:000000000-LL5F5:1:2102:27115:20080:4... at +/100.00% +12 45nt, >M01687:476:000000000-LL5F5:1:2117:26249:4389:2... at +/100.00% +13 49nt, >M01687:476:000000000-LL5F5:1:1119:11147:14184:1... at +/100.00% +14 41nt, >M01687:476:000000000-LL5F5:1:1115:5101:13591:1... at +/97.56% +15 46nt, >M01687:476:000000000-LL5F5:1:1116:22104:22334:1... at +/100.00% +16 42nt, >M01687:476:000000000-LL5F5:1:1114:18152:14124:1... at +/97.62% +17 43nt, >M01687:476:000000000-LL5F5:1:1107:10169:24039:1... at +/97.67% +18 50nt, >M01687:476:000000000-LL5F5:1:1118:4347:17342:1... * +>Cluster 43 +0 86nt, >M01687:476:000000000-LL5F5:1:1102:18919:13706:119... * +1 86nt, >M01687:476:000000000-LL5F5:1:2107:14776:20326:1... at +/98.84% +2 66nt, >M01687:476:000000000-LL5F5:1:2104:17022:10775:2... at +/100.00% +3 85nt, >M01687:476:000000000-LL5F5:1:2117:24955:12422:1... at +/100.00% +4 85nt, >M01687:476:000000000-LL5F5:1:1119:21887:13405:1... at +/100.00% +5 65nt, >M01687:476:000000000-LL5F5:1:1115:19708:5047:1... at +/100.00% +6 86nt, >M01687:476:000000000-LL5F5:1:1116:23265:7881:1... at +/98.84% +7 86nt, >M01687:476:000000000-LL5F5:1:1116:8932:8728:1... at +/98.84% +8 86nt, >M01687:476:000000000-LL5F5:1:1113:23287:11896:1... at +/98.84% +9 86nt, >M01687:476:000000000-LL5F5:1:1113:13402:21744:2... at +/98.84% +10 85nt, >M01687:476:000000000-LL5F5:1:1112:19429:8331:1... at +/100.00% +11 79nt, >M01687:476:000000000-LL5F5:1:1111:13633:1411:2... at +/100.00% +12 81nt, >M01687:476:000000000-LL5F5:1:1110:23609:16193:1... at +/100.00% +13 85nt, >M01687:476:000000000-LL5F5:1:1107:23750:10921:1... at +/100.00% +14 86nt, >M01687:476:000000000-LL5F5:1:1106:24718:7318:1... at +/98.84% +15 85nt, >M01687:476:000000000-LL5F5:1:1104:15290:21784:1... at +/100.00% +16 86nt, >M01687:476:000000000-LL5F5:1:1118:14016:12860:1... at +/98.84% +17 85nt, >M01687:476:000000000-LL5F5:1:1117:21934:5813:1... at +/100.00% +18 86nt, >M01687:476:000000000-LL5F5:1:2119:25128:7209:1... at +/98.84% +>Cluster 44 +0 150nt, >M01687:476:000000000-LL5F5:1:1101:16260:13164:1... at +/99.33% +1 150nt, >M01687:476:000000000-LL5F5:1:2115:18924:10264:47... at +/100.00% +2 150nt, >M01687:476:000000000-LL5F5:1:2112:8133:11044:1... at +/99.33% +3 150nt, >M01687:476:000000000-LL5F5:1:2112:22448:22951:1... at +/99.33% +4 151nt, >M01687:476:000000000-LL5F5:1:2111:17799:15548:2... * +5 150nt, >M01687:476:000000000-LL5F5:1:2111:18593:16709:1... at +/98.67% +6 150nt, >M01687:476:000000000-LL5F5:1:2108:9880:5646:1... at +/99.33% +7 131nt, >M01687:476:000000000-LL5F5:1:2106:8979:2042:1... at +/100.00% +8 143nt, >M01687:476:000000000-LL5F5:1:1112:6118:22435:1... at +/100.00% +9 150nt, >M01687:476:000000000-LL5F5:1:1111:14651:12158:1... at +/98.67% +10 150nt, >M01687:476:000000000-LL5F5:1:1111:21553:23977:1... at +/99.33% +11 131nt, >M01687:476:000000000-LL5F5:1:1109:14943:3224:1... at +/100.00% +12 150nt, >M01687:476:000000000-LL5F5:1:1107:24779:12020:1... at +/99.33% +13 150nt, >M01687:476:000000000-LL5F5:1:1105:14285:17496:1... at +/99.33% +14 151nt, >M01687:476:000000000-LL5F5:1:1105:14665:18256:1... at +/99.34% +15 150nt, >M01687:476:000000000-LL5F5:1:1103:12960:24592:1... at +/99.33% +16 119nt, >M01687:476:000000000-LL5F5:1:1117:21112:21237:1... at +/100.00% +17 150nt, >M01687:476:000000000-LL5F5:1:2119:19417:18644:2... at +/99.33% +>Cluster 45 +0 79nt, >M01687:476:000000000-LL5F5:1:1102:12318:16280:145... * +1 76nt, >M01687:476:000000000-LL5F5:1:1101:5339:8217:1... at +/100.00% +2 79nt, >M01687:476:000000000-LL5F5:1:2114:19112:18096:1... at +/98.73% +3 79nt, >M01687:476:000000000-LL5F5:1:2112:13189:4591:1... at +/98.73% +4 79nt, >M01687:476:000000000-LL5F5:1:2109:9467:11675:1... at +/98.73% +5 79nt, >M01687:476:000000000-LL5F5:1:2105:13721:2781:1... at +/98.73% +6 78nt, >M01687:476:000000000-LL5F5:1:2103:14891:16440:1... at +/100.00% +7 79nt, >M01687:476:000000000-LL5F5:1:1116:5413:10191:1... at +/98.73% +8 79nt, >M01687:476:000000000-LL5F5:1:1111:24323:23135:1... at +/98.73% +9 79nt, >M01687:476:000000000-LL5F5:1:1109:24196:16790:1... at +/98.73% +10 79nt, >M01687:476:000000000-LL5F5:1:1108:22998:20027:1... at +/98.73% +11 79nt, >M01687:476:000000000-LL5F5:1:1107:16228:17466:1... at +/98.73% +12 79nt, >M01687:476:000000000-LL5F5:1:1106:21944:7686:1... at +/98.73% +13 78nt, >M01687:476:000000000-LL5F5:1:1106:21964:20488:1... at +/98.72% +14 60nt, >M01687:476:000000000-LL5F5:1:1105:28951:8755:1... at +/100.00% +15 78nt, >M01687:476:000000000-LL5F5:1:1103:6044:9346:1... at +/100.00% +16 74nt, >M01687:476:000000000-LL5F5:1:1103:16115:17545:1... at +/100.00% +>Cluster 46 +0 69nt, >M01687:476:000000000-LL5F5:1:1102:21697:10887:2... at +/98.55% +1 75nt, >M01687:476:000000000-LL5F5:1:1102:14083:12153:1... * +2 57nt, >M01687:476:000000000-LL5F5:1:1101:13928:5526:1... at +/98.25% +3 72nt, >M01687:476:000000000-LL5F5:1:2114:14976:7907:2... at +/98.61% +4 75nt, >M01687:476:000000000-LL5F5:1:2114:22821:20789:1... at +/98.67% +5 73nt, >M01687:476:000000000-LL5F5:1:2108:5645:6316:2... at +/98.63% +6 62nt, >M01687:476:000000000-LL5F5:1:2108:20779:24521:1... at +/96.77% +7 67nt, >M01687:476:000000000-LL5F5:1:2107:13699:7150:1... at +/98.51% +8 68nt, >M01687:476:000000000-LL5F5:1:2107:12299:9326:2... at +/98.53% +9 71nt, >M01687:476:000000000-LL5F5:1:2107:27001:17713:2... at +/98.59% +10 64nt, >M01687:476:000000000-LL5F5:1:2105:19023:8739:2... at +/98.44% +11 61nt, >M01687:476:000000000-LL5F5:1:2103:3430:14391:1... at +/98.36% +12 63nt, >M01687:476:000000000-LL5F5:1:2101:21962:15649:1... at +/98.41% +13 58nt, >M01687:476:000000000-LL5F5:1:1114:19322:24611:1... at +/98.28% +14 62nt, >M01687:476:000000000-LL5F5:1:1112:22975:2772:2... at +/98.39% +15 60nt, >M01687:476:000000000-LL5F5:1:1118:23826:18497:1... at +/98.33% +16 59nt, >M01687:476:000000000-LL5F5:1:2119:14413:10725:1... at +/98.31% +>Cluster 47 +0 24nt, >M01687:476:000000000-LL5F5:1:1102:16141:3809:1... at +/100.00% +1 26nt, >M01687:476:000000000-LL5F5:1:1102:23651:3816:24... * +2 20nt, >M01687:476:000000000-LL5F5:1:1102:3075:8818:34... at +/100.00% +3 25nt, >M01687:476:000000000-LL5F5:1:1102:28972:11972:1... at +/96.00% +4 23nt, >M01687:476:000000000-LL5F5:1:1102:18622:13875:29... at +/100.00% +5 21nt, >M01687:476:000000000-LL5F5:1:1102:22375:14043:60... at +/100.00% +6 24nt, >M01687:476:000000000-LL5F5:1:1102:16094:15629:14... at +/100.00% +7 25nt, >M01687:476:000000000-LL5F5:1:1102:6129:19052:54... at +/100.00% +8 23nt, >M01687:476:000000000-LL5F5:1:1102:16949:23631:2... at +/95.65% +9 22nt, >M01687:476:000000000-LL5F5:1:2115:17463:4046:5... at +/95.45% +10 22nt, >M01687:476:000000000-LL5F5:1:2114:17058:15604:41... at +/100.00% +11 26nt, >M01687:476:000000000-LL5F5:1:2110:11789:3271:1... at +/96.15% +12 23nt, >M01687:476:000000000-LL5F5:1:2104:4097:17366:1... at +/95.65% +13 22nt, >M01687:476:000000000-LL5F5:1:2117:17511:14995:1... at +/95.45% +14 21nt, >M01687:476:000000000-LL5F5:1:1115:9697:15300:1... at +/100.00% +15 23nt, >M01687:476:000000000-LL5F5:1:1107:4959:19004:1... at +/95.65% +16 24nt, >M01687:476:000000000-LL5F5:1:1106:13981:3585:1... at +/95.83% +>Cluster 48 +0 27nt, >M01687:476:000000000-LL5F5:1:1102:15383:9828:30... at +/100.00% +1 33nt, >M01687:476:000000000-LL5F5:1:1102:14920:24845:29... at +/100.00% +2 32nt, >M01687:476:000000000-LL5F5:1:2115:16432:12765:14... at +/100.00% +3 33nt, >M01687:476:000000000-LL5F5:1:2114:14120:1194:1... at +/96.97% +4 29nt, >M01687:476:000000000-LL5F5:1:2114:12857:1242:13... at +/100.00% +5 32nt, >M01687:476:000000000-LL5F5:1:2114:21419:1653:5... at +/96.88% +6 28nt, >M01687:476:000000000-LL5F5:1:2113:26162:21818:15... at +/100.00% +7 30nt, >M01687:476:000000000-LL5F5:1:2112:24356:6199:6... at +/100.00% +8 31nt, >M01687:476:000000000-LL5F5:1:2112:19464:16530:13... at +/100.00% +9 36nt, >M01687:476:000000000-LL5F5:1:2111:2360:13445:1... * +10 32nt, >M01687:476:000000000-LL5F5:1:2103:6794:13176:1... at +/96.88% +11 32nt, >M01687:476:000000000-LL5F5:1:2116:23475:23223:1... at +/100.00% +12 34nt, >M01687:476:000000000-LL5F5:1:2101:16593:23002:4... at +/100.00% +13 28nt, >M01687:476:000000000-LL5F5:1:1115:2827:11085:1... at +/96.43% +14 27nt, >M01687:476:000000000-LL5F5:1:1116:3295:12206:1... at +/96.30% +15 31nt, >M01687:476:000000000-LL5F5:1:1113:1937:11643:1... at +/96.77% +16 34nt, >M01687:476:000000000-LL5F5:1:1103:4152:19914:1... at +/97.06% +>Cluster 49 +0 88nt, >M01687:476:000000000-LL5F5:1:1102:26493:4341:56... * +1 88nt, >M01687:476:000000000-LL5F5:1:1102:16076:6086:17... at +/96.59% +2 88nt, >M01687:476:000000000-LL5F5:1:1102:12928:11104:2... at +/97.73% +3 78nt, >M01687:476:000000000-LL5F5:1:1102:24326:12284:1... at +/100.00% +4 87nt, >M01687:476:000000000-LL5F5:1:1101:9448:20608:1... at +/97.70% +5 88nt, >M01687:476:000000000-LL5F5:1:2113:3620:10828:13... at +/98.86% +6 88nt, >M01687:476:000000000-LL5F5:1:2113:4565:17708:1... at +/98.86% +7 87nt, >M01687:476:000000000-LL5F5:1:2112:14935:13958:1... at +/98.85% +8 88nt, >M01687:476:000000000-LL5F5:1:2111:21962:6333:1... at +/97.73% +9 88nt, >M01687:476:000000000-LL5F5:1:2110:28568:7854:1... at +/98.86% +10 88nt, >M01687:476:000000000-LL5F5:1:2106:26666:20396:1... at +/98.86% +11 87nt, >M01687:476:000000000-LL5F5:1:2107:17090:1546:1... at +/95.40% +12 87nt, >M01687:476:000000000-LL5F5:1:2101:3392:8396:1... at +/100.00% +13 88nt, >M01687:476:000000000-LL5F5:1:1115:5753:9165:2... at +/98.86% +14 88nt, >M01687:476:000000000-LL5F5:1:1112:14181:10267:1... at +/95.45% +15 88nt, >M01687:476:000000000-LL5F5:1:1109:19797:22876:1... at +/98.86% +>Cluster 50 +0 64nt, >M01687:476:000000000-LL5F5:1:1102:28596:17833:4... at +/100.00% +1 59nt, >M01687:476:000000000-LL5F5:1:1101:10923:5046:2... at +/100.00% +2 53nt, >M01687:476:000000000-LL5F5:1:1101:16806:5706:2... at +/100.00% +3 51nt, >M01687:476:000000000-LL5F5:1:2113:23681:2382:1... at +/98.04% +4 56nt, >M01687:476:000000000-LL5F5:1:2113:11038:7053:9... at +/100.00% +5 55nt, >M01687:476:000000000-LL5F5:1:2113:9605:12498:3... at +/100.00% +6 66nt, >M01687:476:000000000-LL5F5:1:2113:21421:17653:5... at +/100.00% +7 51nt, >M01687:476:000000000-LL5F5:1:2111:7199:15319:3... at +/100.00% +8 58nt, >M01687:476:000000000-LL5F5:1:2109:23100:3667:1... at +/98.28% +9 52nt, >M01687:476:000000000-LL5F5:1:2108:7941:4646:1... at +/100.00% +10 67nt, >M01687:476:000000000-LL5F5:1:2108:2181:11398:1... at +/98.51% +11 62nt, >M01687:476:000000000-LL5F5:1:2108:13958:20555:1... at +/100.00% +12 68nt, >M01687:476:000000000-LL5F5:1:2107:27607:18975:1... * +13 58nt, >M01687:476:000000000-LL5F5:1:2107:24711:23924:3... at +/100.00% +14 68nt, >M01687:476:000000000-LL5F5:1:2103:13806:17129:1... at +/98.53% +15 58nt, >M01687:476:000000000-LL5F5:1:1117:1951:12860:1... at +/96.55% +>Cluster 51 +0 23nt, >M01687:476:000000000-LL5F5:1:1102:17850:8097:11... at +/100.00% +1 30nt, >M01687:476:000000000-LL5F5:1:1102:6725:18954:7... * +2 26nt, >M01687:476:000000000-LL5F5:1:1101:11461:3658:5... at +/100.00% +3 27nt, >M01687:476:000000000-LL5F5:1:2112:15954:15365:4... at +/100.00% +4 24nt, >M01687:476:000000000-LL5F5:1:2111:6082:20670:7... at +/100.00% +5 23nt, >M01687:476:000000000-LL5F5:1:2110:20643:6868:3... at +/100.00% +6 24nt, >M01687:476:000000000-LL5F5:1:2109:2684:9963:1... at +/95.83% +7 23nt, >M01687:476:000000000-LL5F5:1:2107:23344:10686:2... at +/95.65% +8 28nt, >M01687:476:000000000-LL5F5:1:2102:24971:16983:8... at +/100.00% +9 28nt, >M01687:476:000000000-LL5F5:1:1115:27168:16027:1... at +/96.43% +10 28nt, >M01687:476:000000000-LL5F5:1:1112:24915:21954:1... at +/96.43% +11 23nt, >M01687:476:000000000-LL5F5:1:1111:13113:2093:1... at +/95.65% +12 24nt, >M01687:476:000000000-LL5F5:1:1105:16266:9130:1... at +/100.00% +13 29nt, >M01687:476:000000000-LL5F5:1:1117:27750:14912:1... at +/100.00% +14 26nt, >M01687:476:000000000-LL5F5:1:2119:28465:10593:1... at +/96.15% +15 25nt, >M01687:476:000000000-LL5F5:1:2119:24290:13249:1... at +/100.00% +>Cluster 52 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:23615:4805:1... * +1 56nt, >M01687:476:000000000-LL5F5:1:1102:14349:13286:88... at +/98.21% +2 55nt, >M01687:476:000000000-LL5F5:1:1101:4172:8717:1... at +/96.36% +3 56nt, >M01687:476:000000000-LL5F5:1:1101:17251:11738:19... at +/96.43% +4 56nt, >M01687:476:000000000-LL5F5:1:2115:19747:17581:24... at +/96.43% +5 55nt, >M01687:476:000000000-LL5F5:1:2112:8012:17474:1... at +/98.18% +6 55nt, >M01687:476:000000000-LL5F5:1:2110:25908:5674:1... at +/98.18% +7 56nt, >M01687:476:000000000-LL5F5:1:2110:21838:15925:1... at +/96.43% +8 56nt, >M01687:476:000000000-LL5F5:1:2107:15810:15516:1... at +/96.43% +9 56nt, >M01687:476:000000000-LL5F5:1:2107:15112:21479:4... at +/96.43% +10 55nt, >M01687:476:000000000-LL5F5:1:2104:20254:19127:1... at +/96.36% +11 56nt, >M01687:476:000000000-LL5F5:1:2104:13756:24242:3... at +/96.43% +12 56nt, >M01687:476:000000000-LL5F5:1:1112:19863:21223:1... at +/96.43% +13 55nt, >M01687:476:000000000-LL5F5:1:1109:3225:14003:2... at +/98.18% +14 56nt, >M01687:476:000000000-LL5F5:1:1106:18299:2389:1... at +/96.43% +15 56nt, >M01687:476:000000000-LL5F5:1:2118:18426:12946:1... at +/96.43% +>Cluster 53 +0 32nt, >M01687:476:000000000-LL5F5:1:2115:12439:1487:5... at +/100.00% +1 33nt, >M01687:476:000000000-LL5F5:1:2115:15556:1524:13... at +/100.00% +2 34nt, >M01687:476:000000000-LL5F5:1:2115:18266:7910:1... at +/97.06% +3 41nt, >M01687:476:000000000-LL5F5:1:2113:11709:22077:1... * +4 33nt, >M01687:476:000000000-LL5F5:1:2112:19290:1135:1... at +/96.97% +5 38nt, >M01687:476:000000000-LL5F5:1:2112:11220:15203:1... at +/100.00% +6 35nt, >M01687:476:000000000-LL5F5:1:2111:3043:10466:2... at +/100.00% +7 36nt, >M01687:476:000000000-LL5F5:1:2109:13911:1833:1... at +/100.00% +8 39nt, >M01687:476:000000000-LL5F5:1:2106:10388:7007:3... at +/97.44% +9 41nt, >M01687:476:000000000-LL5F5:1:2106:15140:7597:2... at +/97.56% +10 34nt, >M01687:476:000000000-LL5F5:1:2107:19589:15101:8... at +/100.00% +11 32nt, >M01687:476:000000000-LL5F5:1:1115:14125:5800:1... at +/96.88% +12 31nt, >M01687:476:000000000-LL5F5:1:1116:23400:5595:1... at +/96.77% +13 32nt, >M01687:476:000000000-LL5F5:1:1113:23118:5298:1... at +/96.88% +14 37nt, >M01687:476:000000000-LL5F5:1:1112:8226:14071:1... at +/100.00% +>Cluster 54 +0 25nt, >M01687:476:000000000-LL5F5:1:1102:13031:2137:2... at +/100.00% +1 29nt, >M01687:476:000000000-LL5F5:1:1102:25468:18685:1... at +/100.00% +2 31nt, >M01687:476:000000000-LL5F5:1:2113:17472:21895:1... * +3 26nt, >M01687:476:000000000-LL5F5:1:2112:27030:7077:1... at +/96.15% +4 24nt, >M01687:476:000000000-LL5F5:1:1119:21473:13499:5... at +/95.83% +5 24nt, >M01687:476:000000000-LL5F5:1:1116:14042:7437:1... at +/100.00% +6 26nt, >M01687:476:000000000-LL5F5:1:1116:21563:11584:1... at +/100.00% +7 25nt, >M01687:476:000000000-LL5F5:1:1116:13195:13016:1... at +/96.00% +8 25nt, >M01687:476:000000000-LL5F5:1:1112:29025:14943:2... at +/100.00% +9 26nt, >M01687:476:000000000-LL5F5:1:1110:25316:18339:1... at +/96.15% +10 25nt, >M01687:476:000000000-LL5F5:1:1109:21767:17939:1... at +/100.00% +11 28nt, >M01687:476:000000000-LL5F5:1:1108:28929:16809:1... at +/100.00% +12 27nt, >M01687:476:000000000-LL5F5:1:1104:15549:16243:1... at +/100.00% +13 26nt, >M01687:476:000000000-LL5F5:1:1103:24495:21168:1... at +/96.15% +14 24nt, >M01687:476:000000000-LL5F5:1:1118:14196:5552:1... at +/100.00% +>Cluster 55 +0 42nt, >M01687:476:000000000-LL5F5:1:2115:25505:17906:1... at +/100.00% +1 43nt, >M01687:476:000000000-LL5F5:1:2111:17616:17059:2... at +/100.00% +2 50nt, >M01687:476:000000000-LL5F5:1:2110:7387:8663:2... at +/100.00% +3 47nt, >M01687:476:000000000-LL5F5:1:2110:9341:19706:1... at +/95.74% +4 49nt, >M01687:476:000000000-LL5F5:1:2109:16020:7436:3... at +/100.00% +5 45nt, >M01687:476:000000000-LL5F5:1:2106:8163:23979:1... at +/95.56% +6 51nt, >M01687:476:000000000-LL5F5:1:2107:2534:13019:1... at +/96.08% +7 44nt, >M01687:476:000000000-LL5F5:1:2107:20025:13341:1... at +/100.00% +8 53nt, >M01687:476:000000000-LL5F5:1:2104:10614:18783:1... at +/100.00% +9 52nt, >M01687:476:000000000-LL5F5:1:2102:4219:7521:3... at +/100.00% +10 43nt, >M01687:476:000000000-LL5F5:1:1105:24128:2213:1... at +/95.35% +11 47nt, >M01687:476:000000000-LL5F5:1:1117:27610:10863:1... at +/100.00% +12 55nt, >M01687:476:000000000-LL5F5:1:1117:13382:19310:1... at +/100.00% +13 56nt, >M01687:476:000000000-LL5F5:1:2119:16133:21624:1... * +>Cluster 56 +0 62nt, >M01687:476:000000000-LL5F5:1:1101:19599:6961:1... * +1 62nt, >M01687:476:000000000-LL5F5:1:1101:16426:12099:47... at +/98.39% +2 62nt, >M01687:476:000000000-LL5F5:1:2114:20042:6246:1... at +/95.16% +3 62nt, >M01687:476:000000000-LL5F5:1:2113:10437:23505:13... at +/96.77% +4 49nt, >M01687:476:000000000-LL5F5:1:2110:8268:14371:1... at +/97.96% +5 62nt, >M01687:476:000000000-LL5F5:1:2108:15536:8138:4... at +/96.77% +6 62nt, >M01687:476:000000000-LL5F5:1:1116:18836:23437:1... at +/96.77% +7 62nt, >M01687:476:000000000-LL5F5:1:1114:22192:15531:1... at +/95.16% +8 62nt, >M01687:476:000000000-LL5F5:1:1105:13824:6405:1... at +/96.77% +9 62nt, >M01687:476:000000000-LL5F5:1:1104:20866:1244:1... at +/95.16% +10 62nt, >M01687:476:000000000-LL5F5:1:1104:6589:3777:1... at +/95.16% +11 47nt, >M01687:476:000000000-LL5F5:1:1104:26044:5817:1... at +/97.87% +12 62nt, >M01687:476:000000000-LL5F5:1:1103:22492:13474:1... at +/95.16% +13 62nt, >M01687:476:000000000-LL5F5:1:1117:26149:7440:1... at +/96.77% +>Cluster 57 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:10776:2831:1... * +1 56nt, >M01687:476:000000000-LL5F5:1:1102:11931:4377:65... at +/98.21% +2 43nt, >M01687:476:000000000-LL5F5:1:1102:12561:14242:1... at +/100.00% +3 56nt, >M01687:476:000000000-LL5F5:1:2115:11663:19954:1... at +/96.43% +4 56nt, >M01687:476:000000000-LL5F5:1:2114:28116:10908:3... at +/96.43% +5 56nt, >M01687:476:000000000-LL5F5:1:2113:18331:9908:4... at +/96.43% +6 49nt, >M01687:476:000000000-LL5F5:1:2112:28669:15110:1... at +/97.96% +7 56nt, >M01687:476:000000000-LL5F5:1:2109:12221:12189:7... at +/96.43% +8 49nt, >M01687:476:000000000-LL5F5:1:2107:28374:17147:1... at +/95.92% +9 56nt, >M01687:476:000000000-LL5F5:1:2101:22838:13436:1... at +/96.43% +10 56nt, >M01687:476:000000000-LL5F5:1:2101:9912:15764:1... at +/98.21% +11 56nt, >M01687:476:000000000-LL5F5:1:1108:9504:7786:1... at +/96.43% +12 53nt, >M01687:476:000000000-LL5F5:1:1117:22047:4233:1... at +/98.11% +13 56nt, >M01687:476:000000000-LL5F5:1:1117:27604:15973:1... at +/96.43% +>Cluster 58 +0 31nt, >M01687:476:000000000-LL5F5:1:1102:10257:20606:13... at +/100.00% +1 36nt, >M01687:476:000000000-LL5F5:1:1101:17619:4943:1... at +/97.22% +2 30nt, >M01687:476:000000000-LL5F5:1:2115:16762:24064:11... at +/100.00% +3 33nt, >M01687:476:000000000-LL5F5:1:2113:11496:1372:6... at +/100.00% +4 40nt, >M01687:476:000000000-LL5F5:1:2112:14572:11832:1... * +5 30nt, >M01687:476:000000000-LL5F5:1:2111:19399:21370:4... at +/96.67% +6 32nt, >M01687:476:000000000-LL5F5:1:2109:23796:15226:5... at +/100.00% +7 35nt, >M01687:476:000000000-LL5F5:1:2106:4615:16059:2... at +/100.00% +8 34nt, >M01687:476:000000000-LL5F5:1:2105:18570:10237:3... at +/100.00% +9 33nt, >M01687:476:000000000-LL5F5:1:2117:8906:1553:1... at +/96.97% +10 34nt, >M01687:476:000000000-LL5F5:1:1116:21878:2827:1... at +/97.06% +11 32nt, >M01687:476:000000000-LL5F5:1:1114:12821:21087:2... at +/96.88% +12 36nt, >M01687:476:000000000-LL5F5:1:1113:18516:17659:1... at +/97.22% +13 36nt, >M01687:476:000000000-LL5F5:1:1105:3441:7399:1... at +/100.00% +>Cluster 59 +0 72nt, >M01687:476:000000000-LL5F5:1:1101:15576:7457:1... at +/100.00% +1 78nt, >M01687:476:000000000-LL5F5:1:2114:23239:4425:3... at +/100.00% +2 79nt, >M01687:476:000000000-LL5F5:1:2114:21588:4425:2... at +/100.00% +3 63nt, >M01687:476:000000000-LL5F5:1:2112:24896:7375:2... at +/100.00% +4 80nt, >M01687:476:000000000-LL5F5:1:2109:8067:18256:1... at +/100.00% +5 66nt, >M01687:476:000000000-LL5F5:1:2108:11677:17392:1... at +/98.48% +6 74nt, >M01687:476:000000000-LL5F5:1:2107:22402:6464:2... at +/100.00% +7 67nt, >M01687:476:000000000-LL5F5:1:2101:13115:13855:1... at +/100.00% +8 69nt, >M01687:476:000000000-LL5F5:1:1114:15202:10072:1... at +/100.00% +9 78nt, >M01687:476:000000000-LL5F5:1:1112:28658:17164:1... at +/98.72% +10 64nt, >M01687:476:000000000-LL5F5:1:1106:15528:15697:1... at +/98.44% +11 82nt, >M01687:476:000000000-LL5F5:1:1117:7668:21320:1... * +12 73nt, >M01687:476:000000000-LL5F5:1:2118:10389:3978:1... at +/100.00% +13 62nt, >M01687:476:000000000-LL5F5:1:2119:4329:11548:1... at +/100.00% +>Cluster 60 +0 65nt, >M01687:476:000000000-LL5F5:1:1102:15394:1567:63... at +/95.38% +1 69nt, >M01687:476:000000000-LL5F5:1:1102:12177:6992:18... * +2 66nt, >M01687:476:000000000-LL5F5:1:1101:22764:12309:32... at +/96.97% +3 66nt, >M01687:476:000000000-LL5F5:1:2115:22693:10397:4... at +/95.45% +4 69nt, >M01687:476:000000000-LL5F5:1:2115:9639:12737:1... at +/98.55% +5 66nt, >M01687:476:000000000-LL5F5:1:2112:19097:11782:1... at +/95.45% +6 69nt, >M01687:476:000000000-LL5F5:1:2112:5600:13354:1... at +/98.55% +7 66nt, >M01687:476:000000000-LL5F5:1:2112:18388:20873:1... at +/95.45% +8 66nt, >M01687:476:000000000-LL5F5:1:2111:9668:7250:15... at +/96.97% +9 65nt, >M01687:476:000000000-LL5F5:1:2111:5394:17473:4... at +/95.38% +10 65nt, >M01687:476:000000000-LL5F5:1:2109:24196:8703:2... at +/95.38% +11 65nt, >M01687:476:000000000-LL5F5:1:2107:22516:3842:1... at +/95.38% +12 66nt, >M01687:476:000000000-LL5F5:1:1115:19320:6545:1... at +/95.45% +13 65nt, >M01687:476:000000000-LL5F5:1:2119:23893:16227:1... at +/95.38% +>Cluster 61 +0 95nt, >M01687:476:000000000-LL5F5:1:1101:12170:17431:1... * +1 74nt, >M01687:476:000000000-LL5F5:1:1101:6090:19451:10... at +/100.00% +2 72nt, >M01687:476:000000000-LL5F5:1:1101:25573:19949:14... at +/100.00% +3 75nt, >M01687:476:000000000-LL5F5:1:2115:28692:16084:9... at +/100.00% +4 75nt, >M01687:476:000000000-LL5F5:1:2115:16112:17081:1... at +/98.67% +5 73nt, >M01687:476:000000000-LL5F5:1:2113:23284:1929:15... at +/100.00% +6 72nt, >M01687:476:000000000-LL5F5:1:2112:29387:11920:1... at +/98.61% +7 72nt, >M01687:476:000000000-LL5F5:1:2109:3571:6997:3... at +/98.61% +8 75nt, >M01687:476:000000000-LL5F5:1:1119:14282:17695:4... at +/98.67% +9 74nt, >M01687:476:000000000-LL5F5:1:1116:28561:17767:1... at +/98.65% +10 95nt, >M01687:476:000000000-LL5F5:1:1116:8945:23614:1... at +/96.84% +11 75nt, >M01687:476:000000000-LL5F5:1:1110:22236:13355:1... at +/98.67% +12 73nt, >M01687:476:000000000-LL5F5:1:1104:10844:14523:1... at +/98.63% +13 74nt, >M01687:476:000000000-LL5F5:1:1104:28099:15187:1... at +/98.65% +>Cluster 62 +0 79nt, >M01687:476:000000000-LL5F5:1:1102:2907:11727:112... * +1 78nt, >M01687:476:000000000-LL5F5:1:2115:4575:19026:3... at +/100.00% +2 79nt, >M01687:476:000000000-LL5F5:1:2112:9368:7935:1... at +/98.73% +3 79nt, >M01687:476:000000000-LL5F5:1:2112:27742:10443:1... at +/98.73% +4 79nt, >M01687:476:000000000-LL5F5:1:2108:5919:7968:1... at +/98.73% +5 79nt, >M01687:476:000000000-LL5F5:1:1119:15069:5268:1... at +/98.73% +6 79nt, >M01687:476:000000000-LL5F5:1:1113:17493:18905:1... at +/98.73% +7 79nt, >M01687:476:000000000-LL5F5:1:1110:8328:4814:1... at +/98.73% +8 79nt, >M01687:476:000000000-LL5F5:1:1110:8395:20579:1... at +/98.73% +9 79nt, >M01687:476:000000000-LL5F5:1:1108:21717:20232:1... at +/97.47% +10 79nt, >M01687:476:000000000-LL5F5:1:1107:25778:13148:1... at +/98.73% +11 79nt, >M01687:476:000000000-LL5F5:1:1107:9107:20190:1... at +/98.73% +12 79nt, >M01687:476:000000000-LL5F5:1:1104:18084:17833:1... at +/98.73% +13 60nt, >M01687:476:000000000-LL5F5:1:1118:27444:5934:1... at +/100.00% +>Cluster 63 +0 65nt, >M01687:476:000000000-LL5F5:1:1102:15352:7417:1... at +/98.46% +1 66nt, >M01687:476:000000000-LL5F5:1:1102:19533:10061:63... at +/98.48% +2 59nt, >M01687:476:000000000-LL5F5:1:1101:15521:6996:1... at +/98.31% +3 66nt, >M01687:476:000000000-LL5F5:1:2115:2898:8469:33... at +/96.97% +4 66nt, >M01687:476:000000000-LL5F5:1:2114:20180:18295:1... at +/95.45% +5 66nt, >M01687:476:000000000-LL5F5:1:2113:10442:5491:1... at +/96.97% +6 66nt, >M01687:476:000000000-LL5F5:1:2112:6488:18314:1... at +/98.48% +7 66nt, >M01687:476:000000000-LL5F5:1:2108:22474:3011:1... at +/96.97% +8 67nt, >M01687:476:000000000-LL5F5:1:2108:26078:5394:1... * +9 66nt, >M01687:476:000000000-LL5F5:1:1116:15674:17964:1... at +/95.45% +10 66nt, >M01687:476:000000000-LL5F5:1:1113:20408:8831:1... at +/95.45% +11 66nt, >M01687:476:000000000-LL5F5:1:1109:8425:18394:1... at +/96.97% +12 66nt, >M01687:476:000000000-LL5F5:1:2118:7646:8200:1... at +/96.97% +>Cluster 64 +0 64nt, >M01687:476:000000000-LL5F5:1:1102:26444:10568:7... * +1 63nt, >M01687:476:000000000-LL5F5:1:1101:17615:23071:17... at +/96.83% +2 63nt, >M01687:476:000000000-LL5F5:1:2115:20942:4726:14... at +/95.24% +3 64nt, >M01687:476:000000000-LL5F5:1:2114:3861:13771:17... at +/96.88% +4 64nt, >M01687:476:000000000-LL5F5:1:2114:22674:14516:1... at +/98.44% +5 62nt, >M01687:476:000000000-LL5F5:1:2112:4915:7754:1... at +/95.16% +6 62nt, >M01687:476:000000000-LL5F5:1:2111:7800:8220:4... at +/96.77% +7 63nt, >M01687:476:000000000-LL5F5:1:2109:26428:14813:1... at +/95.24% +8 63nt, >M01687:476:000000000-LL5F5:1:2107:23091:16535:7... at +/96.83% +9 63nt, >M01687:476:000000000-LL5F5:1:2117:22918:16131:1... at +/96.83% +10 63nt, >M01687:476:000000000-LL5F5:1:1110:8086:4241:1... at +/95.24% +11 64nt, >M01687:476:000000000-LL5F5:1:1107:7468:20879:1... at +/95.31% +12 64nt, >M01687:476:000000000-LL5F5:1:1104:26460:7622:1... at +/95.31% +>Cluster 65 +0 50nt, >M01687:476:000000000-LL5F5:1:1102:20146:14955:9... at +/100.00% +1 48nt, >M01687:476:000000000-LL5F5:1:1102:20435:23249:7... at +/100.00% +2 60nt, >M01687:476:000000000-LL5F5:1:2114:17185:15341:3... * +3 56nt, >M01687:476:000000000-LL5F5:1:2113:6624:4576:1... at +/100.00% +4 46nt, >M01687:476:000000000-LL5F5:1:2113:7934:13734:2... at +/100.00% +5 54nt, >M01687:476:000000000-LL5F5:1:2108:3550:19298:1... at +/100.00% +6 52nt, >M01687:476:000000000-LL5F5:1:2117:20911:2635:2... at +/100.00% +7 55nt, >M01687:476:000000000-LL5F5:1:2101:8174:8136:2... at +/100.00% +8 45nt, >M01687:476:000000000-LL5F5:1:1116:20201:2831:3... at +/100.00% +9 47nt, >M01687:476:000000000-LL5F5:1:1113:18195:19822:1... at +/100.00% +10 54nt, >M01687:476:000000000-LL5F5:1:1107:27258:7435:1... at +/98.15% +11 48nt, >M01687:476:000000000-LL5F5:1:1106:23138:21674:1... at +/97.92% +12 49nt, >M01687:476:000000000-LL5F5:1:1105:23205:20516:1... at +/100.00% +>Cluster 66 +0 38nt, >M01687:476:000000000-LL5F5:1:1102:21958:13142:3... at +/100.00% +1 34nt, >M01687:476:000000000-LL5F5:1:1101:28724:13224:10... at +/100.00% +2 43nt, >M01687:476:000000000-LL5F5:1:2115:5421:11381:4... at +/100.00% +3 33nt, >M01687:476:000000000-LL5F5:1:2115:20133:23056:14... at +/100.00% +4 41nt, >M01687:476:000000000-LL5F5:1:2114:17856:5698:6... at +/100.00% +5 40nt, >M01687:476:000000000-LL5F5:1:2114:13349:22104:2... at +/100.00% +6 35nt, >M01687:476:000000000-LL5F5:1:2113:7668:2329:3... at +/100.00% +7 34nt, >M01687:476:000000000-LL5F5:1:2112:17842:24601:1... at +/97.06% +8 42nt, >M01687:476:000000000-LL5F5:1:2111:15888:16371:1... at +/100.00% +9 41nt, >M01687:476:000000000-LL5F5:1:2109:11766:10078:1... at +/95.12% +10 36nt, >M01687:476:000000000-LL5F5:1:2116:12698:18588:1... at +/100.00% +11 40nt, >M01687:476:000000000-LL5F5:1:1115:16210:24019:1... at +/97.50% +12 44nt, >M01687:476:000000000-LL5F5:1:1114:10593:16851:1... * +>Cluster 67 +0 53nt, >M01687:476:000000000-LL5F5:1:1102:12016:3353:1... at +/96.23% +1 45nt, >M01687:476:000000000-LL5F5:1:1102:29268:11473:1... at +/100.00% +2 50nt, >M01687:476:000000000-LL5F5:1:2114:4264:14149:1... at +/98.00% +3 58nt, >M01687:476:000000000-LL5F5:1:2111:12013:15480:1... at +/98.28% +4 47nt, >M01687:476:000000000-LL5F5:1:2116:4476:15947:2... at +/100.00% +5 59nt, >M01687:476:000000000-LL5F5:1:2117:21267:13044:1... at +/98.31% +6 54nt, >M01687:476:000000000-LL5F5:1:2117:10134:14538:2... at +/100.00% +7 50nt, >M01687:476:000000000-LL5F5:1:1116:21492:13814:2... at +/100.00% +8 58nt, >M01687:476:000000000-LL5F5:1:1112:11279:17884:1... at +/100.00% +9 49nt, >M01687:476:000000000-LL5F5:1:1108:13486:18500:1... at +/100.00% +10 60nt, >M01687:476:000000000-LL5F5:1:1104:19340:18915:1... * +11 51nt, >M01687:476:000000000-LL5F5:1:1118:27070:5840:1... at +/98.04% +12 50nt, >M01687:476:000000000-LL5F5:1:2119:9815:7299:1... at +/98.00% +>Cluster 68 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:20150:3363:151... * +1 56nt, >M01687:476:000000000-LL5F5:1:2114:15375:6994:1... at +/98.21% +2 56nt, >M01687:476:000000000-LL5F5:1:2114:13520:19348:1... at +/98.21% +3 56nt, >M01687:476:000000000-LL5F5:1:2110:23495:4671:1... at +/98.21% +4 48nt, >M01687:476:000000000-LL5F5:1:2106:22045:15195:1... at +/100.00% +5 56nt, >M01687:476:000000000-LL5F5:1:2102:11450:6259:1... at +/98.21% +6 56nt, >M01687:476:000000000-LL5F5:1:2117:13219:20585:1... at +/98.21% +7 55nt, >M01687:476:000000000-LL5F5:1:1119:17857:16623:1... at +/100.00% +8 56nt, >M01687:476:000000000-LL5F5:1:1116:17482:11744:1... at +/98.21% +9 56nt, >M01687:476:000000000-LL5F5:1:1113:17740:20486:1... at +/98.21% +10 56nt, >M01687:476:000000000-LL5F5:1:1112:24657:5521:1... at +/98.21% +11 56nt, >M01687:476:000000000-LL5F5:1:1107:12601:18912:1... at +/98.21% +12 56nt, >M01687:476:000000000-LL5F5:1:1117:19186:17580:1... at +/98.21% +>Cluster 69 +0 50nt, >M01687:476:000000000-LL5F5:1:2114:12780:2258:1... at +/100.00% +1 45nt, >M01687:476:000000000-LL5F5:1:2113:27720:19082:1... at +/100.00% +2 48nt, >M01687:476:000000000-LL5F5:1:2112:24958:4360:2... at +/100.00% +3 47nt, >M01687:476:000000000-LL5F5:1:2110:20411:10378:4... at +/100.00% +4 43nt, >M01687:476:000000000-LL5F5:1:2107:19615:5721:1... at +/100.00% +5 44nt, >M01687:476:000000000-LL5F5:1:2107:12411:5740:3... at +/100.00% +6 40nt, >M01687:476:000000000-LL5F5:1:2103:12085:9085:2... at +/100.00% +7 46nt, >M01687:476:000000000-LL5F5:1:2103:14348:14091:2... at +/100.00% +8 39nt, >M01687:476:000000000-LL5F5:1:2116:8259:5289:1... at +/100.00% +9 42nt, >M01687:476:000000000-LL5F5:1:2117:10703:9694:3... at +/100.00% +10 51nt, >M01687:476:000000000-LL5F5:1:1118:11882:13017:1... * +11 41nt, >M01687:476:000000000-LL5F5:1:1117:25177:21760:1... at +/100.00% +12 44nt, >M01687:476:000000000-LL5F5:1:2119:19479:19509:1... at +/97.73% +>Cluster 70 +0 25nt, >M01687:476:000000000-LL5F5:1:1102:8885:22144:99... at +/96.00% +1 21nt, >M01687:476:000000000-LL5F5:1:1102:14587:23258:9... at +/100.00% +2 25nt, >M01687:476:000000000-LL5F5:1:2115:25212:14399:5... at +/100.00% +3 25nt, >M01687:476:000000000-LL5F5:1:2114:12066:12850:2... at +/100.00% +4 24nt, >M01687:476:000000000-LL5F5:1:2114:20483:19653:3... at +/100.00% +5 23nt, >M01687:476:000000000-LL5F5:1:2113:28848:13888:4... at +/95.65% +6 23nt, >M01687:476:000000000-LL5F5:1:2112:7111:7159:6... at +/95.65% +7 22nt, >M01687:476:000000000-LL5F5:1:2110:18508:5914:8... at +/100.00% +8 23nt, >M01687:476:000000000-LL5F5:1:1115:9823:1465:3... at +/100.00% +9 28nt, >M01687:476:000000000-LL5F5:1:1116:23969:19239:2... * +10 26nt, >M01687:476:000000000-LL5F5:1:1114:23817:3959:2... at +/100.00% +11 25nt, >M01687:476:000000000-LL5F5:1:1112:6811:7385:2... at +/96.00% +12 27nt, >M01687:476:000000000-LL5F5:1:1107:29196:14609:2... at +/100.00% +>Cluster 71 +0 100nt, >M01687:476:000000000-LL5F5:1:1101:10928:15760:9... at +/98.00% +1 79nt, >M01687:476:000000000-LL5F5:1:2115:3753:12086:1... at +/97.47% +2 93nt, >M01687:476:000000000-LL5F5:1:2114:24249:9481:3... at +/97.85% +3 100nt, >M01687:476:000000000-LL5F5:1:2111:18324:7361:1... at +/97.00% +4 97nt, >M01687:476:000000000-LL5F5:1:2106:17372:19599:1... at +/97.94% +5 101nt, >M01687:476:000000000-LL5F5:1:2106:14579:22632:1... at +/100.00% +6 100nt, >M01687:476:000000000-LL5F5:1:2104:21122:15922:1... at +/97.00% +7 91nt, >M01687:476:000000000-LL5F5:1:2101:13347:16147:1... at +/96.70% +8 100nt, >M01687:476:000000000-LL5F5:1:1112:24767:23406:1... at +/98.00% +9 105nt, >M01687:476:000000000-LL5F5:1:1111:22370:4275:1... * +10 82nt, >M01687:476:000000000-LL5F5:1:1110:8491:16674:1... at +/97.56% +11 79nt, >M01687:476:000000000-LL5F5:1:1104:4723:5673:1... at +/97.47% +>Cluster 72 +0 63nt, >M01687:476:000000000-LL5F5:1:1102:8023:4484:79... at +/98.41% +1 64nt, >M01687:476:000000000-LL5F5:1:1102:20446:4646:1... * +2 63nt, >M01687:476:000000000-LL5F5:1:1101:8004:21880:1... at +/96.83% +3 63nt, >M01687:476:000000000-LL5F5:1:2114:13793:2923:1... at +/96.83% +4 61nt, >M01687:476:000000000-LL5F5:1:2110:11175:7531:1... at +/98.36% +5 63nt, >M01687:476:000000000-LL5F5:1:2108:6091:7956:2... at +/96.83% +6 56nt, >M01687:476:000000000-LL5F5:1:1119:23090:19686:1... at +/98.21% +7 63nt, >M01687:476:000000000-LL5F5:1:1113:19301:15909:1... at +/95.24% +8 63nt, >M01687:476:000000000-LL5F5:1:1109:11330:13712:1... at +/96.83% +9 62nt, >M01687:476:000000000-LL5F5:1:1105:24579:13157:1... at +/96.77% +10 63nt, >M01687:476:000000000-LL5F5:1:2118:3270:13945:1... at +/96.83% +11 63nt, >M01687:476:000000000-LL5F5:1:2118:9565:21558:1... at +/95.24% +>Cluster 73 +0 33nt, >M01687:476:000000000-LL5F5:1:2113:13236:1630:2... at +/100.00% +1 35nt, >M01687:476:000000000-LL5F5:1:2110:10487:18496:2... * +2 27nt, >M01687:476:000000000-LL5F5:1:2107:15088:2237:1... at +/100.00% +3 29nt, >M01687:476:000000000-LL5F5:1:2104:28369:14345:1... at +/100.00% +4 28nt, >M01687:476:000000000-LL5F5:1:2102:13475:17963:1... at +/100.00% +5 32nt, >M01687:476:000000000-LL5F5:1:2103:16872:17032:1... at +/100.00% +6 31nt, >M01687:476:000000000-LL5F5:1:2103:3655:17602:1... at +/100.00% +7 33nt, >M01687:476:000000000-LL5F5:1:2117:16712:10635:1... at +/96.97% +8 32nt, >M01687:476:000000000-LL5F5:1:2117:29053:14956:1... at +/96.88% +9 30nt, >M01687:476:000000000-LL5F5:1:2119:24077:6132:1... at +/100.00% +10 33nt, >M01687:476:000000000-LL5F5:1:2119:20752:16587:1... at +/96.97% +>Cluster 74 +0 73nt, >M01687:476:000000000-LL5F5:1:2114:11769:9880:1... at +/98.63% +1 63nt, >M01687:476:000000000-LL5F5:1:2113:22116:14747:1... at +/98.41% +2 64nt, >M01687:476:000000000-LL5F5:1:2113:14580:23246:1... at +/98.44% +3 65nt, >M01687:476:000000000-LL5F5:1:2111:21506:13975:1... at +/95.38% +4 64nt, >M01687:476:000000000-LL5F5:1:2111:19341:16303:1... at +/96.88% +5 70nt, >M01687:476:000000000-LL5F5:1:2106:7768:24315:1... at +/95.71% +6 67nt, >M01687:476:000000000-LL5F5:1:2107:12978:9588:1... at +/98.51% +7 72nt, >M01687:476:000000000-LL5F5:1:2107:13920:12275:1... at +/98.61% +8 78nt, >M01687:476:000000000-LL5F5:1:1112:23197:9041:1... at +/97.44% +9 80nt, >M01687:476:000000000-LL5F5:1:1103:27292:10415:1... * +10 70nt, >M01687:476:000000000-LL5F5:1:2119:9100:22427:1... at +/98.57% +>Cluster 75 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:4741:12923:38... at +/100.00% +1 56nt, >M01687:476:000000000-LL5F5:1:1102:14980:24507:8... at +/98.21% +2 56nt, >M01687:476:000000000-LL5F5:1:2114:27217:13674:3... at +/96.43% +3 55nt, >M01687:476:000000000-LL5F5:1:2114:18638:14338:1... at +/100.00% +4 56nt, >M01687:476:000000000-LL5F5:1:2109:11703:18415:1... at +/98.21% +5 57nt, >M01687:476:000000000-LL5F5:1:2106:19593:7791:1... * +6 56nt, >M01687:476:000000000-LL5F5:1:2102:20201:11157:1... at +/98.21% +7 56nt, >M01687:476:000000000-LL5F5:1:2117:23257:18724:1... at +/98.21% +8 56nt, >M01687:476:000000000-LL5F5:1:1112:16325:7126:1... at +/98.21% +9 56nt, >M01687:476:000000000-LL5F5:1:1107:25908:12360:1... at +/98.21% +10 56nt, >M01687:476:000000000-LL5F5:1:1106:17848:10316:1... at +/98.21% +>Cluster 76 +0 38nt, >M01687:476:000000000-LL5F5:1:2115:11562:17208:2... at +/97.37% +1 33nt, >M01687:476:000000000-LL5F5:1:2113:17925:1097:3... at +/100.00% +2 35nt, >M01687:476:000000000-LL5F5:1:2113:25139:15604:2... at +/100.00% +3 31nt, >M01687:476:000000000-LL5F5:1:2112:19488:16987:4... at +/100.00% +4 32nt, >M01687:476:000000000-LL5F5:1:2112:21078:24389:2... at +/100.00% +5 41nt, >M01687:476:000000000-LL5F5:1:2108:13047:18329:1... * +6 36nt, >M01687:476:000000000-LL5F5:1:1114:25239:13238:1... at +/100.00% +7 37nt, >M01687:476:000000000-LL5F5:1:1113:9784:14967:1... at +/100.00% +8 41nt, >M01687:476:000000000-LL5F5:1:1108:4552:21163:1... at +/97.56% +9 34nt, >M01687:476:000000000-LL5F5:1:2119:27514:11563:1... at +/97.06% +10 39nt, >M01687:476:000000000-LL5F5:1:2119:25753:18200:1... at +/100.00% +>Cluster 77 +0 25nt, >M01687:476:000000000-LL5F5:1:1102:9357:2740:2... at +/100.00% +1 21nt, >M01687:476:000000000-LL5F5:1:1102:9621:5904:52... at +/100.00% +2 22nt, >M01687:476:000000000-LL5F5:1:1102:14302:10592:3... at +/100.00% +3 28nt, >M01687:476:000000000-LL5F5:1:1102:10736:11955:4... * +4 24nt, >M01687:476:000000000-LL5F5:1:2111:7279:3392:1... at +/100.00% +5 23nt, >M01687:476:000000000-LL5F5:1:2106:12996:12870:2... at +/100.00% +6 23nt, >M01687:476:000000000-LL5F5:1:2117:29113:10577:1... at +/100.00% +7 24nt, >M01687:476:000000000-LL5F5:1:1116:20559:19596:1... at +/95.83% +8 28nt, >M01687:476:000000000-LL5F5:1:1114:12755:13839:1... at +/96.43% +9 26nt, >M01687:476:000000000-LL5F5:1:1113:16160:23758:1... at +/100.00% +10 23nt, >M01687:476:000000000-LL5F5:1:1117:11018:2392:1... at +/95.65% +>Cluster 78 +0 28nt, >M01687:476:000000000-LL5F5:1:1102:15431:4149:15... at +/100.00% +1 29nt, >M01687:476:000000000-LL5F5:1:1101:3717:20101:10... at +/100.00% +2 33nt, >M01687:476:000000000-LL5F5:1:2115:21464:1135:9... at +/100.00% +3 28nt, >M01687:476:000000000-LL5F5:1:2113:23356:15242:1... at +/96.43% +4 35nt, >M01687:476:000000000-LL5F5:1:2112:15701:15642:4... at +/100.00% +5 28nt, >M01687:476:000000000-LL5F5:1:2112:20770:18587:1... at +/96.43% +6 37nt, >M01687:476:000000000-LL5F5:1:2112:12352:20753:1... * +7 33nt, >M01687:476:000000000-LL5F5:1:2111:9418:1283:1... at +/96.97% +8 36nt, >M01687:476:000000000-LL5F5:1:2111:2070:16144:1... at +/100.00% +9 28nt, >M01687:476:000000000-LL5F5:1:2105:10694:8344:1... at +/96.43% +10 34nt, >M01687:476:000000000-LL5F5:1:2102:17933:24642:1... at +/100.00% +>Cluster 79 +0 62nt, >M01687:476:000000000-LL5F5:1:2115:23049:4392:22... at +/100.00% +1 62nt, >M01687:476:000000000-LL5F5:1:2115:10987:20670:1... at +/95.16% +2 64nt, >M01687:476:000000000-LL5F5:1:2110:26693:6303:3... * +3 57nt, >M01687:476:000000000-LL5F5:1:2109:7111:9926:1... at +/100.00% +4 64nt, >M01687:476:000000000-LL5F5:1:2107:24252:8297:8... at +/98.44% +5 62nt, >M01687:476:000000000-LL5F5:1:2117:23021:7181:4... at +/96.77% +6 64nt, >M01687:476:000000000-LL5F5:1:2117:22453:10347:1... at +/96.88% +7 61nt, >M01687:476:000000000-LL5F5:1:1115:9685:18243:1... at +/96.72% +8 63nt, >M01687:476:000000000-LL5F5:1:1107:16702:2948:1... at +/98.41% +9 55nt, >M01687:476:000000000-LL5F5:1:1107:13882:9674:1... at +/98.18% +10 64nt, >M01687:476:000000000-LL5F5:1:1117:20495:7304:1... at +/96.88% +>Cluster 80 +0 42nt, >M01687:476:000000000-LL5F5:1:1101:16100:14610:1... * +1 33nt, >M01687:476:000000000-LL5F5:1:2115:14847:1277:6... at +/100.00% +2 34nt, >M01687:476:000000000-LL5F5:1:2114:14823:9173:4... at +/100.00% +3 32nt, >M01687:476:000000000-LL5F5:1:2113:26356:12846:5... at +/100.00% +4 36nt, >M01687:476:000000000-LL5F5:1:2111:4809:20174:3... at +/100.00% +5 32nt, >M01687:476:000000000-LL5F5:1:2110:23188:17782:2... at +/96.88% +6 36nt, >M01687:476:000000000-LL5F5:1:2109:20029:22617:1... at +/97.22% +7 38nt, >M01687:476:000000000-LL5F5:1:1119:4369:19109:1... at +/100.00% +8 39nt, >M01687:476:000000000-LL5F5:1:1114:3904:15471:2... at +/100.00% +9 36nt, >M01687:476:000000000-LL5F5:1:1108:24916:16337:1... at +/97.22% +10 35nt, >M01687:476:000000000-LL5F5:1:1106:26453:17013:1... at +/100.00% +>Cluster 81 +0 33nt, >M01687:476:000000000-LL5F5:1:1101:18747:5582:9... at +/100.00% +1 31nt, >M01687:476:000000000-LL5F5:1:2112:6159:10624:5... at +/100.00% +2 30nt, >M01687:476:000000000-LL5F5:1:2112:22180:21816:7... at +/100.00% +3 28nt, >M01687:476:000000000-LL5F5:1:2106:26454:13516:6... at +/100.00% +4 32nt, >M01687:476:000000000-LL5F5:1:2107:2057:12797:5... at +/100.00% +5 37nt, >M01687:476:000000000-LL5F5:1:2104:12961:4800:4... * +6 36nt, >M01687:476:000000000-LL5F5:1:2117:21984:3229:1... at +/97.22% +7 29nt, >M01687:476:000000000-LL5F5:1:2101:25327:21343:3... at +/100.00% +8 29nt, >M01687:476:000000000-LL5F5:1:1111:21942:24012:1... at +/100.00% +9 28nt, >M01687:476:000000000-LL5F5:1:1107:16685:18178:1... at +/96.43% +>Cluster 82 +0 80nt, >M01687:476:000000000-LL5F5:1:1101:17443:11373:60... * +1 80nt, >M01687:476:000000000-LL5F5:1:2112:28485:14401:1... at +/98.75% +2 80nt, >M01687:476:000000000-LL5F5:1:2111:24151:8926:3... at +/98.75% +3 74nt, >M01687:476:000000000-LL5F5:1:2111:9412:24414:1... at +/100.00% +4 80nt, >M01687:476:000000000-LL5F5:1:2102:19191:11383:1... at +/98.75% +5 80nt, >M01687:476:000000000-LL5F5:1:1115:19215:9593:1... at +/98.75% +6 80nt, >M01687:476:000000000-LL5F5:1:1114:10107:2406:1... at +/98.75% +7 80nt, >M01687:476:000000000-LL5F5:1:1105:20730:21024:1... at +/98.75% +8 80nt, >M01687:476:000000000-LL5F5:1:1103:20331:1183:1... at +/98.75% +9 80nt, >M01687:476:000000000-LL5F5:1:1117:24062:6867:1... at +/98.75% +>Cluster 83 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:21913:5174:62... * +1 53nt, >M01687:476:000000000-LL5F5:1:1101:25169:4919:1... at +/100.00% +2 56nt, >M01687:476:000000000-LL5F5:1:1101:16130:11435:1... at +/98.21% +3 56nt, >M01687:476:000000000-LL5F5:1:2103:11733:1076:1... at +/98.21% +4 56nt, >M01687:476:000000000-LL5F5:1:1119:10486:7425:1... at +/98.21% +5 56nt, >M01687:476:000000000-LL5F5:1:1116:9152:1714:1... at +/98.21% +6 54nt, >M01687:476:000000000-LL5F5:1:1105:15956:21867:1... at +/98.15% +7 55nt, >M01687:476:000000000-LL5F5:1:1104:24154:4482:1... at +/98.18% +8 56nt, >M01687:476:000000000-LL5F5:1:1103:18625:22308:1... at +/98.21% +9 55nt, >M01687:476:000000000-LL5F5:1:2118:20533:21086:1... at +/100.00% +>Cluster 84 +0 35nt, >M01687:476:000000000-LL5F5:1:1102:4602:7592:1... at +/97.14% +1 38nt, >M01687:476:000000000-LL5F5:1:2115:8621:22053:1... at +/100.00% +2 45nt, >M01687:476:000000000-LL5F5:1:2112:16138:15942:1... at +/100.00% +3 42nt, >M01687:476:000000000-LL5F5:1:2110:20243:16612:1... at +/97.62% +4 43nt, >M01687:476:000000000-LL5F5:1:2102:25778:5908:1... at +/100.00% +5 36nt, >M01687:476:000000000-LL5F5:1:2103:7096:7539:2... at +/100.00% +6 36nt, >M01687:476:000000000-LL5F5:1:2116:16767:4806:1... at +/97.22% +7 37nt, >M01687:476:000000000-LL5F5:1:2116:18143:16722:2... at +/100.00% +8 42nt, >M01687:476:000000000-LL5F5:1:1115:25139:19848:2... at +/100.00% +9 46nt, >M01687:476:000000000-LL5F5:1:1105:27026:9670:1... * +>Cluster 85 +0 38nt, >M01687:476:000000000-LL5F5:1:1102:11180:16817:2... at +/100.00% +1 40nt, >M01687:476:000000000-LL5F5:1:2115:11424:20922:4... at +/100.00% +2 46nt, >M01687:476:000000000-LL5F5:1:2114:14569:24837:1... at +/97.83% +3 40nt, >M01687:476:000000000-LL5F5:1:2104:17336:1317:2... at +/97.50% +4 42nt, >M01687:476:000000000-LL5F5:1:2105:22204:11530:2... at +/97.62% +5 50nt, >M01687:476:000000000-LL5F5:1:1111:24854:23708:1... * +6 47nt, >M01687:476:000000000-LL5F5:1:1110:24173:13409:1... at +/97.87% +7 45nt, >M01687:476:000000000-LL5F5:1:1108:6377:18474:1... at +/97.78% +8 39nt, >M01687:476:000000000-LL5F5:1:2119:21722:1900:1... at +/100.00% +>Cluster 86 +0 31nt, >M01687:476:000000000-LL5F5:1:1102:11170:13154:1... at +/100.00% +1 27nt, >M01687:476:000000000-LL5F5:1:1101:3182:8413:3... at +/100.00% +2 29nt, >M01687:476:000000000-LL5F5:1:2115:15660:3985:2... at +/100.00% +3 28nt, >M01687:476:000000000-LL5F5:1:2115:10717:20158:6... at +/100.00% +4 30nt, >M01687:476:000000000-LL5F5:1:2114:4391:9747:3... at +/100.00% +5 33nt, >M01687:476:000000000-LL5F5:1:2113:17451:1673:4... at +/100.00% +6 34nt, >M01687:476:000000000-LL5F5:1:2105:13650:11940:1... * +7 32nt, >M01687:476:000000000-LL5F5:1:2103:12830:19121:2... at +/100.00% +8 26nt, >M01687:476:000000000-LL5F5:1:1119:11187:14647:1... at +/100.00% +>Cluster 87 +0 62nt, >M01687:476:000000000-LL5F5:1:1102:16888:5646:38... * +1 62nt, >M01687:476:000000000-LL5F5:1:1102:27353:15262:3... at +/95.16% +2 62nt, >M01687:476:000000000-LL5F5:1:1101:27360:12816:9... at +/96.77% +3 51nt, >M01687:476:000000000-LL5F5:1:2110:18435:18343:1... at +/100.00% +4 62nt, >M01687:476:000000000-LL5F5:1:1113:16474:11575:1... at +/98.39% +5 62nt, >M01687:476:000000000-LL5F5:1:1113:29040:17273:1... at +/98.39% +6 61nt, >M01687:476:000000000-LL5F5:1:1107:23946:8698:1... at +/95.08% +7 62nt, >M01687:476:000000000-LL5F5:1:1105:2807:14427:1... at +/98.39% +8 62nt, >M01687:476:000000000-LL5F5:1:2118:15926:14994:1... at +/98.39% +>Cluster 88 +0 56nt, >M01687:476:000000000-LL5F5:1:2109:8901:6119:1... at +/98.21% +1 52nt, >M01687:476:000000000-LL5F5:1:2107:10861:10920:1... at +/98.08% +2 44nt, >M01687:476:000000000-LL5F5:1:2102:11696:19019:2... at +/97.73% +3 56nt, >M01687:476:000000000-LL5F5:1:2103:5039:9402:1... at +/100.00% +4 55nt, >M01687:476:000000000-LL5F5:1:2117:4933:17384:1... at +/98.18% +5 50nt, >M01687:476:000000000-LL5F5:1:1111:8367:20358:1... at +/100.00% +6 58nt, >M01687:476:000000000-LL5F5:1:1106:18717:20950:1... * +7 48nt, >M01687:476:000000000-LL5F5:1:1117:15912:18423:1... at +/100.00% +8 50nt, >M01687:476:000000000-LL5F5:1:2119:11314:6224:1... at +/98.00% +>Cluster 89 +0 35nt, >M01687:476:000000000-LL5F5:1:1102:22335:21684:2... at +/100.00% +1 36nt, >M01687:476:000000000-LL5F5:1:2114:27264:17440:1... at +/97.22% +2 45nt, >M01687:476:000000000-LL5F5:1:2109:7755:10832:1... at +/100.00% +3 41nt, >M01687:476:000000000-LL5F5:1:2104:14045:10434:1... at +/100.00% +4 37nt, >M01687:476:000000000-LL5F5:1:2116:26516:16515:3... at +/100.00% +5 42nt, >M01687:476:000000000-LL5F5:1:1115:15126:6331:2... at +/100.00% +6 46nt, >M01687:476:000000000-LL5F5:1:1115:27030:9316:1... * +7 46nt, >M01687:476:000000000-LL5F5:1:1111:24168:16149:1... at +/97.83% +8 39nt, >M01687:476:000000000-LL5F5:1:1118:26898:11916:1... at +/100.00% +>Cluster 90 +0 67nt, >M01687:476:000000000-LL5F5:1:1102:13420:1611:112... * +1 67nt, >M01687:476:000000000-LL5F5:1:2115:7159:12042:1... at +/98.51% +2 67nt, >M01687:476:000000000-LL5F5:1:2115:9506:12406:1... at +/98.51% +3 67nt, >M01687:476:000000000-LL5F5:1:2115:8154:18887:2... at +/98.51% +4 66nt, >M01687:476:000000000-LL5F5:1:2114:16827:6513:1... at +/95.45% +5 67nt, >M01687:476:000000000-LL5F5:1:2105:7928:12027:1... at +/98.51% +6 67nt, >M01687:476:000000000-LL5F5:1:1116:15797:13858:1... at +/98.51% +7 67nt, >M01687:476:000000000-LL5F5:1:1107:7638:8625:1... at +/97.01% +8 67nt, >M01687:476:000000000-LL5F5:1:2119:10315:10627:1... at +/98.51% +>Cluster 91 +0 26nt, >M01687:476:000000000-LL5F5:1:2114:27475:10218:5... at +/100.00% +1 33nt, >M01687:476:000000000-LL5F5:1:2113:16349:1559:4... at +/100.00% +2 32nt, >M01687:476:000000000-LL5F5:1:2113:24749:8162:1... at +/100.00% +3 32nt, >M01687:476:000000000-LL5F5:1:2113:13184:10454:2... at +/96.88% +4 26nt, >M01687:476:000000000-LL5F5:1:2113:2527:14298:1... at +/96.15% +5 26nt, >M01687:476:000000000-LL5F5:1:2112:15565:2003:1... at +/96.15% +6 34nt, >M01687:476:000000000-LL5F5:1:2108:9274:15884:1... * +7 29nt, >M01687:476:000000000-LL5F5:1:2108:8927:22619:1... at +/100.00% +8 27nt, >M01687:476:000000000-LL5F5:1:2106:13475:8744:1... at +/100.00% +>Cluster 92 +0 67nt, >M01687:476:000000000-LL5F5:1:1102:24748:8711:6... at +/100.00% +1 68nt, >M01687:476:000000000-LL5F5:1:1102:28386:13817:1... * +2 65nt, >M01687:476:000000000-LL5F5:1:1102:16897:20798:5... at +/96.92% +3 67nt, >M01687:476:000000000-LL5F5:1:2115:12474:8067:9... at +/98.51% +4 66nt, >M01687:476:000000000-LL5F5:1:2114:20161:24424:1... at +/95.45% +5 67nt, >M01687:476:000000000-LL5F5:1:2113:28317:18667:1... at +/98.51% +6 65nt, >M01687:476:000000000-LL5F5:1:2110:29016:14351:1... at +/96.92% +7 66nt, >M01687:476:000000000-LL5F5:1:2109:7243:12168:3... at +/96.97% +8 66nt, >M01687:476:000000000-LL5F5:1:1114:6849:13266:1... at +/98.48% +>Cluster 93 +0 84nt, >M01687:476:000000000-LL5F5:1:1102:9429:14577:47... * +1 84nt, >M01687:476:000000000-LL5F5:1:2115:16967:17891:1... at +/98.81% +2 84nt, >M01687:476:000000000-LL5F5:1:2110:7998:12793:1... at +/97.62% +3 84nt, >M01687:476:000000000-LL5F5:1:2102:21911:15835:1... at +/98.81% +4 84nt, >M01687:476:000000000-LL5F5:1:2116:5026:12070:1... at +/97.62% +5 77nt, >M01687:476:000000000-LL5F5:1:1109:6511:18025:1... at +/100.00% +6 83nt, >M01687:476:000000000-LL5F5:1:1107:26605:20684:1... at +/100.00% +7 84nt, >M01687:476:000000000-LL5F5:1:1117:25232:17118:1... at +/98.81% +8 84nt, >M01687:476:000000000-LL5F5:1:2119:25073:3139:1... at +/97.62% +>Cluster 94 +0 39nt, >M01687:476:000000000-LL5F5:1:1102:5003:18067:3... * +1 36nt, >M01687:476:000000000-LL5F5:1:1102:21184:23890:3... at +/100.00% +2 31nt, >M01687:476:000000000-LL5F5:1:2114:9247:21240:3... at +/100.00% +3 38nt, >M01687:476:000000000-LL5F5:1:2113:29208:11920:5... at +/100.00% +4 30nt, >M01687:476:000000000-LL5F5:1:2109:12191:21736:2... at +/100.00% +5 39nt, >M01687:476:000000000-LL5F5:1:2107:15848:9315:1... at +/97.44% +6 32nt, >M01687:476:000000000-LL5F5:1:2103:14476:8136:1... at +/96.88% +7 37nt, >M01687:476:000000000-LL5F5:1:1107:7051:21405:2... at +/100.00% +8 32nt, >M01687:476:000000000-LL5F5:1:1106:7432:4729:2... at +/100.00% +>Cluster 95 +0 33nt, >M01687:476:000000000-LL5F5:1:2112:22055:1757:1... at +/100.00% +1 44nt, >M01687:476:000000000-LL5F5:1:2112:5070:14511:2... * +2 41nt, >M01687:476:000000000-LL5F5:1:2109:2697:10683:1... at +/100.00% +3 39nt, >M01687:476:000000000-LL5F5:1:2106:22957:2740:1... at +/100.00% +4 37nt, >M01687:476:000000000-LL5F5:1:2104:25490:10817:1... at +/100.00% +5 40nt, >M01687:476:000000000-LL5F5:1:1119:12881:22277:1... at +/100.00% +6 36nt, >M01687:476:000000000-LL5F5:1:1115:23602:23300:1... at +/97.22% +7 34nt, >M01687:476:000000000-LL5F5:1:1104:23094:11706:1... at +/97.06% +8 37nt, >M01687:476:000000000-LL5F5:1:1118:22488:18872:1... at +/97.30% +>Cluster 96 +0 162nt, >M01687:476:000000000-LL5F5:1:2110:27435:9004:1... * +1 162nt, >M01687:476:000000000-LL5F5:1:2110:12285:10127:8... at +/99.38% +2 162nt, >M01687:476:000000000-LL5F5:1:2117:13347:15832:1... at +/98.77% +3 162nt, >M01687:476:000000000-LL5F5:1:1109:17704:13775:1... at +/98.77% +4 162nt, >M01687:476:000000000-LL5F5:1:1108:14249:19013:1... at +/98.77% +5 162nt, >M01687:476:000000000-LL5F5:1:1106:22756:21598:2... at +/98.77% +6 144nt, >M01687:476:000000000-LL5F5:1:1104:7602:7777:1... at +/99.31% +7 162nt, >M01687:476:000000000-LL5F5:1:1104:13771:19442:1... at +/98.77% +>Cluster 97 +0 22nt, >M01687:476:000000000-LL5F5:1:1102:14841:20399:56... at +/100.00% +1 23nt, >M01687:476:000000000-LL5F5:1:1101:24828:23830:14... at +/95.65% +2 23nt, >M01687:476:000000000-LL5F5:1:2113:15874:1093:1... at +/95.65% +3 22nt, >M01687:476:000000000-LL5F5:1:2108:26234:12062:1... at +/95.45% +4 24nt, >M01687:476:000000000-LL5F5:1:2106:21573:2013:1... at +/95.83% +5 23nt, >M01687:476:000000000-LL5F5:1:2106:22796:10417:2... at +/100.00% +6 23nt, >M01687:476:000000000-LL5F5:1:1104:22432:2165:1... at +/95.65% +7 29nt, >M01687:476:000000000-LL5F5:1:1103:4067:5926:1... * +>Cluster 98 +0 41nt, >M01687:476:000000000-LL5F5:1:2115:17574:18855:1... at +/100.00% +1 40nt, >M01687:476:000000000-LL5F5:1:2112:13834:23565:2... at +/100.00% +2 39nt, >M01687:476:000000000-LL5F5:1:2112:18647:24710:1... at +/100.00% +3 38nt, >M01687:476:000000000-LL5F5:1:2111:16683:2793:1... at +/100.00% +4 47nt, >M01687:476:000000000-LL5F5:1:2109:12040:11070:2... at +/100.00% +5 42nt, >M01687:476:000000000-LL5F5:1:2107:25773:9721:1... at +/97.62% +6 45nt, >M01687:476:000000000-LL5F5:1:1115:27105:11625:3... at +/100.00% +7 50nt, >M01687:476:000000000-LL5F5:1:1114:18080:15888:1... * +>Cluster 99 +0 26nt, >M01687:476:000000000-LL5F5:1:2113:8006:10180:1... at +/100.00% +1 27nt, >M01687:476:000000000-LL5F5:1:2108:23092:7009:2... at +/100.00% +2 32nt, >M01687:476:000000000-LL5F5:1:2101:9455:4168:1... at +/100.00% +3 29nt, >M01687:476:000000000-LL5F5:1:1115:25121:5214:3... at +/100.00% +4 25nt, >M01687:476:000000000-LL5F5:1:1116:21908:17927:3... at +/100.00% +5 31nt, >M01687:476:000000000-LL5F5:1:1107:12394:21097:1... at +/100.00% +6 30nt, >M01687:476:000000000-LL5F5:1:1103:12542:14787:1... at +/100.00% +7 33nt, >M01687:476:000000000-LL5F5:1:2118:17542:1071:1... * +>Cluster 100 +0 140nt, >M01687:476:000000000-LL5F5:1:1102:13271:9654:16... * +1 138nt, >M01687:476:000000000-LL5F5:1:1102:11317:24106:1... at +/100.00% +2 140nt, >M01687:476:000000000-LL5F5:1:2115:15185:9802:4... at +/99.29% +3 140nt, >M01687:476:000000000-LL5F5:1:2104:4033:10103:1... at +/99.29% +4 140nt, >M01687:476:000000000-LL5F5:1:1112:25121:22992:1... at +/99.29% +5 140nt, >M01687:476:000000000-LL5F5:1:1110:14081:12912:1... at +/98.57% +6 140nt, >M01687:476:000000000-LL5F5:1:1106:14891:12894:1... at +/99.29% +7 137nt, >M01687:476:000000000-LL5F5:1:1103:12763:13712:1... at +/100.00% +>Cluster 101 +0 33nt, >M01687:476:000000000-LL5F5:1:2112:8284:1664:4... at +/100.00% +1 38nt, >M01687:476:000000000-LL5F5:1:2110:16274:11980:2... at +/100.00% +2 31nt, >M01687:476:000000000-LL5F5:1:2102:7753:5273:3... at +/100.00% +3 34nt, >M01687:476:000000000-LL5F5:1:2103:23868:12467:3... at +/100.00% +4 32nt, >M01687:476:000000000-LL5F5:1:2116:24545:3183:1... at +/96.88% +5 41nt, >M01687:476:000000000-LL5F5:1:1119:27416:18783:1... * +6 35nt, >M01687:476:000000000-LL5F5:1:1112:5082:4673:1... at +/100.00% +7 37nt, >M01687:476:000000000-LL5F5:1:1104:6969:17715:1... at +/100.00% +>Cluster 102 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:10657:19574:11... * +1 56nt, >M01687:476:000000000-LL5F5:1:1101:14220:17188:1... at +/98.21% +2 56nt, >M01687:476:000000000-LL5F5:1:2115:14939:17836:1... at +/96.43% +3 56nt, >M01687:476:000000000-LL5F5:1:2114:12689:10889:1... at +/96.43% +4 56nt, >M01687:476:000000000-LL5F5:1:2104:9109:12827:1... at +/98.21% +5 56nt, >M01687:476:000000000-LL5F5:1:2103:26772:13559:2... at +/96.43% +6 56nt, >M01687:476:000000000-LL5F5:1:1116:17074:9782:3... at +/96.43% +7 53nt, >M01687:476:000000000-LL5F5:1:1113:26727:18541:1... at +/100.00% +>Cluster 103 +0 33nt, >M01687:476:000000000-LL5F5:1:2114:20390:1345:1... at +/100.00% +1 36nt, >M01687:476:000000000-LL5F5:1:2114:20769:14715:1... at +/100.00% +2 38nt, >M01687:476:000000000-LL5F5:1:2111:23255:2076:1... at +/100.00% +3 42nt, >M01687:476:000000000-LL5F5:1:2109:12387:22764:3... * +4 39nt, >M01687:476:000000000-LL5F5:1:2106:5785:11056:1... at +/100.00% +5 37nt, >M01687:476:000000000-LL5F5:1:2107:4560:10183:1... at +/100.00% +6 40nt, >M01687:476:000000000-LL5F5:1:2116:17502:3743:1... at +/100.00% +7 34nt, >M01687:476:000000000-LL5F5:1:2118:17447:6282:1... at +/100.00% +>Cluster 104 +0 124nt, >M01687:476:000000000-LL5F5:1:1102:18483:12026:1... at +/100.00% +1 112nt, >M01687:476:000000000-LL5F5:1:2114:8879:19631:1... at +/100.00% +2 95nt, >M01687:476:000000000-LL5F5:1:2109:10378:24194:1... at +/100.00% +3 125nt, >M01687:476:000000000-LL5F5:1:1119:24433:16960:1... * +4 115nt, >M01687:476:000000000-LL5F5:1:1116:12352:7918:1... at +/100.00% +5 112nt, >M01687:476:000000000-LL5F5:1:1110:17999:16361:1... at +/99.11% +6 99nt, >M01687:476:000000000-LL5F5:1:1103:11696:20760:1... at +/100.00% +7 119nt, >M01687:476:000000000-LL5F5:1:2118:21615:5496:1... at +/100.00% +>Cluster 105 +0 18nt, >M01687:476:000000000-LL5F5:1:1102:17610:14286:89... at +/100.00% +1 19nt, >M01687:476:000000000-LL5F5:1:2115:14471:21481:4... at +/100.00% +2 21nt, >M01687:476:000000000-LL5F5:1:2113:25737:3816:1... at +/100.00% +3 22nt, >M01687:476:000000000-LL5F5:1:2113:13708:8859:2... at +/100.00% +4 20nt, >M01687:476:000000000-LL5F5:1:2108:2524:12638:2... at +/100.00% +5 22nt, >M01687:476:000000000-LL5F5:1:2107:4670:19309:1... at +/100.00% +6 23nt, >M01687:476:000000000-LL5F5:1:1106:7191:12808:2... at +/100.00% +7 24nt, >M01687:476:000000000-LL5F5:1:1117:21158:1696:1... * +>Cluster 106 +0 46nt, >M01687:476:000000000-LL5F5:1:2109:6572:4627:1... at +/97.83% +1 47nt, >M01687:476:000000000-LL5F5:1:2109:22594:10731:1... * +2 43nt, >M01687:476:000000000-LL5F5:1:2107:16589:17052:1... at +/100.00% +3 38nt, >M01687:476:000000000-LL5F5:1:2116:18221:6941:1... at +/100.00% +4 36nt, >M01687:476:000000000-LL5F5:1:2101:7241:7592:1... at +/97.22% +5 36nt, >M01687:476:000000000-LL5F5:1:1111:8176:14911:2... at +/100.00% +6 39nt, >M01687:476:000000000-LL5F5:1:1107:14699:5346:1... at +/100.00% +7 44nt, >M01687:476:000000000-LL5F5:1:1117:13102:6223:1... at +/100.00% +>Cluster 107 +0 34nt, >M01687:476:000000000-LL5F5:1:1101:26431:10444:1... at +/100.00% +1 35nt, >M01687:476:000000000-LL5F5:1:2115:12960:1357:2... * +2 33nt, >M01687:476:000000000-LL5F5:1:2113:9777:1510:7... at +/100.00% +3 31nt, >M01687:476:000000000-LL5F5:1:2111:20090:8525:4... at +/100.00% +4 34nt, >M01687:476:000000000-LL5F5:1:2111:2724:17243:1... at +/97.06% +5 27nt, >M01687:476:000000000-LL5F5:1:2111:4422:18550:2... at +/100.00% +6 28nt, >M01687:476:000000000-LL5F5:1:2110:19008:14133:4... at +/100.00% +7 32nt, >M01687:476:000000000-LL5F5:1:2108:27281:8188:4... at +/100.00% +>Cluster 108 +0 34nt, >M01687:476:000000000-LL5F5:1:2114:18071:23108:1... at +/100.00% +1 33nt, >M01687:476:000000000-LL5F5:1:2110:18277:1248:2... at +/100.00% +2 36nt, >M01687:476:000000000-LL5F5:1:2105:6539:19765:1... at +/100.00% +3 39nt, >M01687:476:000000000-LL5F5:1:2103:18883:19430:1... at +/100.00% +4 31nt, >M01687:476:000000000-LL5F5:1:1119:17258:18420:1... at +/100.00% +5 41nt, >M01687:476:000000000-LL5F5:1:1111:9534:19764:1... * +6 35nt, >M01687:476:000000000-LL5F5:1:1110:14462:8841:3... at +/100.00% +7 40nt, >M01687:476:000000000-LL5F5:1:1107:23939:24256:1... at +/97.50% +>Cluster 109 +0 55nt, >M01687:476:000000000-LL5F5:1:1102:23059:5538:29... * +1 55nt, >M01687:476:000000000-LL5F5:1:1101:4609:14774:32... at +/98.18% +2 55nt, >M01687:476:000000000-LL5F5:1:2115:20508:17449:7... at +/98.18% +3 51nt, >M01687:476:000000000-LL5F5:1:2102:26825:18262:1... at +/98.04% +4 55nt, >M01687:476:000000000-LL5F5:1:1119:7610:17257:1... at +/96.36% +5 55nt, >M01687:476:000000000-LL5F5:1:1110:8479:18199:1... at +/98.18% +6 55nt, >M01687:476:000000000-LL5F5:1:1105:9352:12733:1... at +/96.36% +7 54nt, >M01687:476:000000000-LL5F5:1:1104:19121:21760:1... at +/100.00% +>Cluster 110 +0 69nt, >M01687:476:000000000-LL5F5:1:1102:24148:23029:28... * +1 69nt, >M01687:476:000000000-LL5F5:1:2108:26689:21534:1... at +/98.55% +2 69nt, >M01687:476:000000000-LL5F5:1:2105:15214:20913:1... at +/98.55% +3 69nt, >M01687:476:000000000-LL5F5:1:1106:5938:5286:1... at +/95.65% +4 69nt, >M01687:476:000000000-LL5F5:1:1105:15713:2575:1... at +/98.55% +5 69nt, >M01687:476:000000000-LL5F5:1:1118:10113:23789:1... at +/98.55% +6 69nt, >M01687:476:000000000-LL5F5:1:2118:12898:22508:1... at +/98.55% +>Cluster 111 +0 54nt, >M01687:476:000000000-LL5F5:1:1101:17203:21945:1... * +1 45nt, >M01687:476:000000000-LL5F5:1:2113:3345:15163:2... at +/100.00% +2 41nt, >M01687:476:000000000-LL5F5:1:2112:16718:7315:1... at +/100.00% +3 53nt, >M01687:476:000000000-LL5F5:1:2112:5073:12561:1... at +/98.11% +4 43nt, >M01687:476:000000000-LL5F5:1:2108:22123:20620:3... at +/100.00% +5 50nt, >M01687:476:000000000-LL5F5:1:2107:17144:3580:1... at +/100.00% +6 41nt, >M01687:476:000000000-LL5F5:1:1112:19166:18818:1... at +/100.00% +>Cluster 112 +0 30nt, >M01687:476:000000000-LL5F5:1:2115:25100:12895:2... at +/100.00% +1 32nt, >M01687:476:000000000-LL5F5:1:2109:21179:23470:2... at +/100.00% +2 36nt, >M01687:476:000000000-LL5F5:1:2105:26996:14469:1... at +/97.22% +3 35nt, >M01687:476:000000000-LL5F5:1:1111:24294:7726:1... at +/97.14% +4 31nt, >M01687:476:000000000-LL5F5:1:1106:23973:3195:1... at +/100.00% +5 29nt, >M01687:476:000000000-LL5F5:1:1105:4513:9787:1... at +/100.00% +6 38nt, >M01687:476:000000000-LL5F5:1:1117:22732:19250:1... * +>Cluster 113 +0 28nt, >M01687:476:000000000-LL5F5:1:2113:23317:3471:2... at +/100.00% +1 33nt, >M01687:476:000000000-LL5F5:1:2111:22307:1659:2... at +/100.00% +2 26nt, >M01687:476:000000000-LL5F5:1:2111:9531:2059:5... at +/100.00% +3 27nt, >M01687:476:000000000-LL5F5:1:2102:18089:13118:3... at +/100.00% +4 34nt, >M01687:476:000000000-LL5F5:1:2116:5185:10544:1... * +5 33nt, >M01687:476:000000000-LL5F5:1:2117:20250:7038:1... at +/96.97% +6 26nt, >M01687:476:000000000-LL5F5:1:1107:20472:23714:1... at +/96.15% +>Cluster 114 +0 167nt, >M01687:476:000000000-LL5F5:1:2111:16008:14710:1... * +1 167nt, >M01687:476:000000000-LL5F5:1:2108:7955:3924:10... at +/99.40% +2 167nt, >M01687:476:000000000-LL5F5:1:2108:24074:5010:1... at +/98.80% +3 167nt, >M01687:476:000000000-LL5F5:1:2104:10933:12869:1... at +/98.80% +4 167nt, >M01687:476:000000000-LL5F5:1:2103:14012:21614:1... at +/98.20% +5 166nt, >M01687:476:000000000-LL5F5:1:2101:4929:5479:2... at +/99.40% +6 167nt, >M01687:476:000000000-LL5F5:1:1105:16509:24592:1... at +/98.80% +>Cluster 115 +0 46nt, >M01687:476:000000000-LL5F5:1:2112:28305:18675:1... at +/100.00% +1 52nt, >M01687:476:000000000-LL5F5:1:2110:19441:5699:1... at +/98.08% +2 59nt, >M01687:476:000000000-LL5F5:1:2108:2366:10289:1... * +3 50nt, >M01687:476:000000000-LL5F5:1:2116:27136:14671:2... at +/100.00% +4 49nt, >M01687:476:000000000-LL5F5:1:1110:20636:23762:1... at +/100.00% +5 55nt, >M01687:476:000000000-LL5F5:1:1107:20094:1482:1... at +/98.18% +6 56nt, >M01687:476:000000000-LL5F5:1:1103:25638:22486:1... at +/100.00% +>Cluster 116 +0 42nt, >M01687:476:000000000-LL5F5:1:1102:27213:14911:1... at +/97.62% +1 47nt, >M01687:476:000000000-LL5F5:1:2102:14525:12982:1... at +/97.87% +2 45nt, >M01687:476:000000000-LL5F5:1:1119:25557:12185:2... at +/95.56% +3 48nt, >M01687:476:000000000-LL5F5:1:1113:6154:9761:1... at +/95.83% +4 42nt, >M01687:476:000000000-LL5F5:1:1110:15764:6664:1... at +/95.24% +5 44nt, >M01687:476:000000000-LL5F5:1:1105:10342:6185:1... at +/97.73% +6 56nt, >M01687:476:000000000-LL5F5:1:1103:17604:2032:1... * +>Cluster 117 +0 93nt, >M01687:476:000000000-LL5F5:1:1101:24792:13270:19... at +/95.70% +1 94nt, >M01687:476:000000000-LL5F5:1:2115:3023:8706:1... * +2 94nt, >M01687:476:000000000-LL5F5:1:2115:17212:24439:13... at +/98.94% +3 94nt, >M01687:476:000000000-LL5F5:1:2106:10000:7748:1... at +/97.87% +4 94nt, >M01687:476:000000000-LL5F5:1:1113:12221:9996:1... at +/97.87% +5 94nt, >M01687:476:000000000-LL5F5:1:1110:21675:9399:1... at +/97.87% +6 94nt, >M01687:476:000000000-LL5F5:1:1105:10660:23857:1... at +/97.87% +>Cluster 118 +0 26nt, >M01687:476:000000000-LL5F5:1:1102:21750:10784:7... at +/96.15% +1 25nt, >M01687:476:000000000-LL5F5:1:2115:25994:7671:15... at +/96.00% +2 33nt, >M01687:476:000000000-LL5F5:1:2115:24462:10697:1... * +3 25nt, >M01687:476:000000000-LL5F5:1:2113:25377:7312:5... at +/96.00% +4 26nt, >M01687:476:000000000-LL5F5:1:2111:21151:7676:3... at +/96.15% +5 33nt, >M01687:476:000000000-LL5F5:1:2111:6807:17084:2... at +/96.97% +6 27nt, >M01687:476:000000000-LL5F5:1:1113:18641:8350:1... at +/96.30% +>Cluster 119 +0 26nt, >M01687:476:000000000-LL5F5:1:1101:14237:7768:3... at +/100.00% +1 27nt, >M01687:476:000000000-LL5F5:1:1101:28999:15295:26... at +/96.30% +2 27nt, >M01687:476:000000000-LL5F5:1:2112:23494:6589:12... at +/100.00% +3 28nt, >M01687:476:000000000-LL5F5:1:2110:3333:14133:3... at +/96.43% +4 28nt, >M01687:476:000000000-LL5F5:1:2108:15627:24181:3... at +/100.00% +5 26nt, >M01687:476:000000000-LL5F5:1:1105:25690:10879:1... at +/96.15% +6 34nt, >M01687:476:000000000-LL5F5:1:2119:23486:12298:1... * +>Cluster 120 +0 27nt, >M01687:476:000000000-LL5F5:1:1102:11683:1245:11... at +/96.30% +1 28nt, >M01687:476:000000000-LL5F5:1:1102:12095:7513:6... at +/96.43% +2 27nt, >M01687:476:000000000-LL5F5:1:2109:5318:14626:4... at +/96.30% +3 36nt, >M01687:476:000000000-LL5F5:1:2108:25567:20164:1... * +4 28nt, >M01687:476:000000000-LL5F5:1:1111:21039:18930:1... at +/100.00% +5 29nt, >M01687:476:000000000-LL5F5:1:1109:19021:6594:1... at +/100.00% +6 35nt, >M01687:476:000000000-LL5F5:1:2119:8819:9802:1... at +/100.00% +>Cluster 121 +0 104nt, >M01687:476:000000000-LL5F5:1:1101:22054:4844:19... * +1 104nt, >M01687:476:000000000-LL5F5:1:2114:19264:19755:2... at +/97.12% +2 98nt, >M01687:476:000000000-LL5F5:1:2110:24650:17088:1... at +/100.00% +3 104nt, >M01687:476:000000000-LL5F5:1:2117:15573:23434:1... at +/99.04% +4 104nt, >M01687:476:000000000-LL5F5:1:2101:17860:16449:1... at +/99.04% +5 104nt, >M01687:476:000000000-LL5F5:1:1109:10594:12575:1... at +/99.04% +6 104nt, >M01687:476:000000000-LL5F5:1:2119:3516:6625:1... at +/95.19% +>Cluster 122 +0 30nt, >M01687:476:000000000-LL5F5:1:1102:25780:12412:3... at +/100.00% +1 39nt, >M01687:476:000000000-LL5F5:1:2114:11138:4301:1... * +2 33nt, >M01687:476:000000000-LL5F5:1:2114:26345:18834:1... at +/100.00% +3 36nt, >M01687:476:000000000-LL5F5:1:2104:28703:11441:1... at +/97.22% +4 36nt, >M01687:476:000000000-LL5F5:1:2102:15784:6381:1... at +/100.00% +5 39nt, >M01687:476:000000000-LL5F5:1:2116:24973:17798:1... at +/97.44% +6 38nt, >M01687:476:000000000-LL5F5:1:1104:10198:5100:1... at +/100.00% +>Cluster 123 +0 24nt, >M01687:476:000000000-LL5F5:1:2115:17523:7669:1... at +/95.83% +1 27nt, >M01687:476:000000000-LL5F5:1:2110:29370:12771:1... at +/96.30% +2 24nt, >M01687:476:000000000-LL5F5:1:2116:25928:11773:1... at +/95.83% +3 25nt, >M01687:476:000000000-LL5F5:1:1119:23103:18858:1... at +/100.00% +4 27nt, >M01687:476:000000000-LL5F5:1:1113:14817:18130:1... at +/100.00% +5 25nt, >M01687:476:000000000-LL5F5:1:1118:16739:24604:1... at +/96.00% +6 31nt, >M01687:476:000000000-LL5F5:1:2118:21310:23046:1... * +>Cluster 124 +0 44nt, >M01687:476:000000000-LL5F5:1:2113:18130:9803:1... at +/100.00% +1 38nt, >M01687:476:000000000-LL5F5:1:2110:23565:19762:1... at +/100.00% +2 40nt, >M01687:476:000000000-LL5F5:1:2109:14726:8178:1... at +/100.00% +3 49nt, >M01687:476:000000000-LL5F5:1:2101:29590:11302:1... * +4 45nt, >M01687:476:000000000-LL5F5:1:1112:8331:21916:1... at +/97.78% +5 37nt, >M01687:476:000000000-LL5F5:1:1106:17228:1659:1... at +/100.00% +6 46nt, >M01687:476:000000000-LL5F5:1:1105:18022:23889:1... at +/100.00% +>Cluster 125 +0 27nt, >M01687:476:000000000-LL5F5:1:2113:19876:4413:9... at +/100.00% +1 25nt, >M01687:476:000000000-LL5F5:1:2110:21303:18838:3... at +/100.00% +2 28nt, >M01687:476:000000000-LL5F5:1:2106:12770:6434:1... at +/100.00% +3 30nt, >M01687:476:000000000-LL5F5:1:2107:10683:16243:1... at +/100.00% +4 31nt, >M01687:476:000000000-LL5F5:1:2116:6764:10062:1... at +/100.00% +5 26nt, >M01687:476:000000000-LL5F5:1:1119:22498:13652:2... at +/100.00% +6 33nt, >M01687:476:000000000-LL5F5:1:2118:11429:1206:1... * +>Cluster 126 +0 30nt, >M01687:476:000000000-LL5F5:1:2112:6475:8519:1... at +/100.00% +1 29nt, >M01687:476:000000000-LL5F5:1:2109:27882:10414:1... at +/96.55% +2 29nt, >M01687:476:000000000-LL5F5:1:2108:2699:11152:4... at +/96.55% +3 29nt, >M01687:476:000000000-LL5F5:1:1119:28348:16388:1... at +/100.00% +4 38nt, >M01687:476:000000000-LL5F5:1:1116:21453:6061:1... * +5 32nt, >M01687:476:000000000-LL5F5:1:1105:28172:9652:1... at +/100.00% +6 33nt, >M01687:476:000000000-LL5F5:1:1118:14139:3353:1... at +/100.00% +>Cluster 127 +0 40nt, >M01687:476:000000000-LL5F5:1:2115:22148:15197:2... at +/100.00% +1 41nt, >M01687:476:000000000-LL5F5:1:2112:20111:15934:1... at +/100.00% +2 46nt, >M01687:476:000000000-LL5F5:1:2106:9017:10183:1... at +/100.00% +3 44nt, >M01687:476:000000000-LL5F5:1:2117:22389:17861:1... at +/100.00% +4 38nt, >M01687:476:000000000-LL5F5:1:1116:24725:5937:1... at +/100.00% +5 47nt, >M01687:476:000000000-LL5F5:1:1110:15600:24319:1... * +6 36nt, >M01687:476:000000000-LL5F5:1:1117:20232:23667:1... at +/100.00% +>Cluster 128 +0 93nt, >M01687:476:000000000-LL5F5:1:1101:23111:15733:2... * +1 93nt, >M01687:476:000000000-LL5F5:1:2111:6136:21967:1... at +/97.85% +2 93nt, >M01687:476:000000000-LL5F5:1:2108:25289:7678:1... at +/97.85% +3 93nt, >M01687:476:000000000-LL5F5:1:2105:13951:3124:1... at +/97.85% +4 93nt, >M01687:476:000000000-LL5F5:1:2116:23157:3779:1... at +/97.85% +5 93nt, >M01687:476:000000000-LL5F5:1:2116:25661:10660:1... at +/97.85% +6 93nt, >M01687:476:000000000-LL5F5:1:2119:8998:15211:1... at +/97.85% +>Cluster 129 +0 59nt, >M01687:476:000000000-LL5F5:1:2114:24767:23359:28... * +1 59nt, >M01687:476:000000000-LL5F5:1:2113:27707:13891:1... at +/98.31% +2 59nt, >M01687:476:000000000-LL5F5:1:2106:9296:12696:1... at +/98.31% +3 59nt, >M01687:476:000000000-LL5F5:1:1107:14946:15340:1... at +/96.61% +4 54nt, >M01687:476:000000000-LL5F5:1:1106:22250:14874:1... at +/100.00% +5 58nt, >M01687:476:000000000-LL5F5:1:2118:18196:1783:1... at +/100.00% +6 59nt, >M01687:476:000000000-LL5F5:1:2119:16794:6250:1... at +/98.31% +>Cluster 130 +0 46nt, >M01687:476:000000000-LL5F5:1:2113:17382:7044:4... at +/100.00% +1 43nt, >M01687:476:000000000-LL5F5:1:2107:14387:18220:2... at +/100.00% +2 44nt, >M01687:476:000000000-LL5F5:1:2104:24412:20176:1... at +/100.00% +3 45nt, >M01687:476:000000000-LL5F5:1:2105:2416:9744:2... at +/100.00% +4 40nt, >M01687:476:000000000-LL5F5:1:2103:13538:14731:1... at +/100.00% +5 47nt, >M01687:476:000000000-LL5F5:1:1107:15062:12300:1... at +/100.00% +6 48nt, >M01687:476:000000000-LL5F5:1:1105:22302:5860:1... * +>Cluster 131 +0 36nt, >M01687:476:000000000-LL5F5:1:1102:16999:6407:1... at +/97.22% +1 38nt, >M01687:476:000000000-LL5F5:1:1101:27704:8441:1... at +/100.00% +2 36nt, >M01687:476:000000000-LL5F5:1:2101:21960:24175:1... at +/100.00% +3 45nt, >M01687:476:000000000-LL5F5:1:1111:6003:20506:1... at +/97.78% +4 41nt, >M01687:476:000000000-LL5F5:1:1110:2071:11914:1... at +/100.00% +5 46nt, >M01687:476:000000000-LL5F5:1:1110:10044:20247:1... * +>Cluster 132 +0 35nt, >M01687:476:000000000-LL5F5:1:2114:25142:15165:1... at +/100.00% +1 39nt, >M01687:476:000000000-LL5F5:1:2110:18941:9694:2... * +2 33nt, >M01687:476:000000000-LL5F5:1:2109:24945:11758:1... at +/100.00% +3 38nt, >M01687:476:000000000-LL5F5:1:2104:16643:21881:1... at +/97.37% +4 32nt, >M01687:476:000000000-LL5F5:1:1111:26043:20513:1... at +/100.00% +5 30nt, >M01687:476:000000000-LL5F5:1:1108:8471:23752:1... at +/100.00% +>Cluster 133 +0 66nt, >M01687:476:000000000-LL5F5:1:2113:11762:6347:2... * +1 66nt, >M01687:476:000000000-LL5F5:1:2108:10210:10496:1... at +/96.97% +2 66nt, >M01687:476:000000000-LL5F5:1:2108:10235:19059:1... at +/96.97% +3 66nt, >M01687:476:000000000-LL5F5:1:1116:9710:14417:1... at +/96.97% +4 66nt, >M01687:476:000000000-LL5F5:1:1107:28506:14135:1... at +/96.97% +5 53nt, >M01687:476:000000000-LL5F5:1:2119:11288:12499:1... at +/98.11% +>Cluster 134 +0 23nt, >M01687:476:000000000-LL5F5:1:1102:17989:8228:39... at +/100.00% +1 24nt, >M01687:476:000000000-LL5F5:1:2115:13888:1102:40... at +/100.00% +2 24nt, >M01687:476:000000000-LL5F5:1:2115:22558:24191:3... at +/95.83% +3 24nt, >M01687:476:000000000-LL5F5:1:2107:29249:15440:1... at +/100.00% +4 25nt, >M01687:476:000000000-LL5F5:1:2104:20944:18615:1... * +5 24nt, >M01687:476:000000000-LL5F5:1:1117:11502:4063:1... at +/95.83% +>Cluster 135 +0 90nt, >M01687:476:000000000-LL5F5:1:1101:24082:7837:12... * +1 90nt, >M01687:476:000000000-LL5F5:1:2112:4522:9912:4... at +/98.89% +2 90nt, >M01687:476:000000000-LL5F5:1:2102:17983:4535:1... at +/98.89% +3 90nt, >M01687:476:000000000-LL5F5:1:2103:27478:17916:3... at +/98.89% +4 89nt, >M01687:476:000000000-LL5F5:1:1118:14743:2035:1... at +/100.00% +5 90nt, >M01687:476:000000000-LL5F5:1:2118:3735:13641:1... at +/97.78% +>Cluster 136 +0 33nt, >M01687:476:000000000-LL5F5:1:2108:12136:19688:3... at +/100.00% +1 30nt, >M01687:476:000000000-LL5F5:1:2105:23820:13375:1... at +/100.00% +2 36nt, >M01687:476:000000000-LL5F5:1:2101:3509:19988:1... at +/100.00% +3 38nt, >M01687:476:000000000-LL5F5:1:1116:27442:6447:1... at +/100.00% +4 38nt, >M01687:476:000000000-LL5F5:1:1112:14123:3126:1... at +/97.37% +5 40nt, >M01687:476:000000000-LL5F5:1:2119:8869:22556:1... * +>Cluster 137 +0 157nt, >M01687:476:000000000-LL5F5:1:2115:22651:2731:8... * +1 157nt, >M01687:476:000000000-LL5F5:1:2110:18081:20250:1... at +/99.36% +2 157nt, >M01687:476:000000000-LL5F5:1:2104:12042:10388:1... at +/99.36% +3 157nt, >M01687:476:000000000-LL5F5:1:2105:10602:9772:1... at +/99.36% +4 157nt, >M01687:476:000000000-LL5F5:1:1113:7044:5298:1... at +/98.73% +5 157nt, >M01687:476:000000000-LL5F5:1:1109:21750:22220:1... at +/99.36% +>Cluster 138 +0 39nt, >M01687:476:000000000-LL5F5:1:1101:9141:3855:2... at +/97.44% +1 33nt, >M01687:476:000000000-LL5F5:1:2114:16173:24225:3... at +/96.97% +2 36nt, >M01687:476:000000000-LL5F5:1:1113:17409:24906:1... at +/97.22% +3 41nt, >M01687:476:000000000-LL5F5:1:1111:18141:19068:1... * +4 35nt, >M01687:476:000000000-LL5F5:1:1104:9894:2800:1... at +/97.14% +5 31nt, >M01687:476:000000000-LL5F5:1:2119:14628:5412:1... at +/96.77% +>Cluster 139 +0 40nt, >M01687:476:000000000-LL5F5:1:2108:22920:11501:2... at +/100.00% +1 36nt, >M01687:476:000000000-LL5F5:1:2102:2353:15113:1... at +/100.00% +2 38nt, >M01687:476:000000000-LL5F5:1:1113:14308:24861:2... at +/100.00% +3 35nt, >M01687:476:000000000-LL5F5:1:1108:7517:3767:1... at +/100.00% +4 44nt, >M01687:476:000000000-LL5F5:1:1105:17783:9301:1... * +5 33nt, >M01687:476:000000000-LL5F5:1:1104:16040:15859:1... at +/100.00% +>Cluster 140 +0 58nt, >M01687:476:000000000-LL5F5:1:1102:20437:17339:1... * +1 58nt, >M01687:476:000000000-LL5F5:1:1101:3381:8720:1... at +/96.55% +2 58nt, >M01687:476:000000000-LL5F5:1:1101:27395:13629:19... at +/98.28% +3 58nt, >M01687:476:000000000-LL5F5:1:2115:12894:23776:1... at +/96.55% +4 58nt, >M01687:476:000000000-LL5F5:1:2105:25493:10037:1... at +/96.55% +5 58nt, >M01687:476:000000000-LL5F5:1:1104:10358:19055:1... at +/96.55% +>Cluster 141 +0 21nt, >M01687:476:000000000-LL5F5:1:1101:8337:12838:14... at +/100.00% +1 24nt, >M01687:476:000000000-LL5F5:1:1101:24725:23542:5... at +/100.00% +2 27nt, >M01687:476:000000000-LL5F5:1:2111:25785:3533:2... at +/100.00% +3 26nt, >M01687:476:000000000-LL5F5:1:2111:4286:9080:3... at +/100.00% +4 25nt, >M01687:476:000000000-LL5F5:1:2102:23523:15026:4... at +/100.00% +5 28nt, >M01687:476:000000000-LL5F5:1:1115:29244:10291:1... * +>Cluster 142 +0 65nt, >M01687:476:000000000-LL5F5:1:2104:11987:21439:1... * +1 65nt, >M01687:476:000000000-LL5F5:1:2102:25690:12287:1... at +/98.46% +2 65nt, >M01687:476:000000000-LL5F5:1:1119:24545:15707:1... at +/96.92% +3 65nt, >M01687:476:000000000-LL5F5:1:1109:24312:6677:1... at +/96.92% +4 57nt, >M01687:476:000000000-LL5F5:1:1103:7433:8217:1... at +/98.25% +5 65nt, >M01687:476:000000000-LL5F5:1:2119:25233:7352:1... at +/96.92% +>Cluster 143 +0 21nt, >M01687:476:000000000-LL5F5:1:1102:14162:22436:36... at +/100.00% +1 23nt, >M01687:476:000000000-LL5F5:1:1102:22207:23999:10... at +/100.00% +2 28nt, >M01687:476:000000000-LL5F5:1:2115:22887:15842:1... * +3 22nt, >M01687:476:000000000-LL5F5:1:2106:6533:19286:2... at +/100.00% +4 21nt, >M01687:476:000000000-LL5F5:1:1114:16819:8309:1... at +/95.24% +5 24nt, >M01687:476:000000000-LL5F5:1:1114:7089:9193:1... at +/100.00% +>Cluster 144 +0 22nt, >M01687:476:000000000-LL5F5:1:1102:25462:3829:62... at +/100.00% +1 23nt, >M01687:476:000000000-LL5F5:1:1102:25622:17040:17... at +/95.65% +2 28nt, >M01687:476:000000000-LL5F5:1:2103:20233:17986:1... * +3 25nt, >M01687:476:000000000-LL5F5:1:2116:18969:10887:1... at +/100.00% +4 23nt, >M01687:476:000000000-LL5F5:1:1111:10739:13150:1... at +/95.65% +5 27nt, >M01687:476:000000000-LL5F5:1:1104:10979:9687:1... at +/100.00% +>Cluster 145 +0 33nt, >M01687:476:000000000-LL5F5:1:2113:21474:1621:1... at +/96.97% +1 29nt, >M01687:476:000000000-LL5F5:1:1115:6928:5181:2... at +/100.00% +2 38nt, >M01687:476:000000000-LL5F5:1:1111:25087:21141:1... * +3 30nt, >M01687:476:000000000-LL5F5:1:1104:7877:4437:1... at +/100.00% +4 29nt, >M01687:476:000000000-LL5F5:1:1103:13366:12025:1... at +/96.55% +5 29nt, >M01687:476:000000000-LL5F5:1:1118:24020:21405:1... at +/96.55% +>Cluster 146 +0 50nt, >M01687:476:000000000-LL5F5:1:1101:24627:2789:1... at +/98.00% +1 64nt, >M01687:476:000000000-LL5F5:1:2110:22945:9360:1... * +2 63nt, >M01687:476:000000000-LL5F5:1:2110:11575:11069:1... at +/100.00% +3 55nt, >M01687:476:000000000-LL5F5:1:1107:14238:13915:1... at +/98.18% +4 64nt, >M01687:476:000000000-LL5F5:1:1103:23964:8464:1... at +/98.44% +5 59nt, >M01687:476:000000000-LL5F5:1:2119:17112:23782:1... at +/98.31% +>Cluster 147 +0 27nt, >M01687:476:000000000-LL5F5:1:2107:16255:11094:1... at +/96.30% +1 34nt, >M01687:476:000000000-LL5F5:1:2105:6084:6819:1... at +/100.00% +2 33nt, >M01687:476:000000000-LL5F5:1:2117:19963:13679:2... at +/100.00% +3 35nt, >M01687:476:000000000-LL5F5:1:1115:26259:12053:1... at +/97.14% +4 29nt, >M01687:476:000000000-LL5F5:1:1112:15808:7402:1... at +/100.00% +5 36nt, >M01687:476:000000000-LL5F5:1:1117:4737:14168:1... * +>Cluster 148 +0 71nt, >M01687:476:000000000-LL5F5:1:2113:8327:11975:1... at +/98.59% +1 79nt, >M01687:476:000000000-LL5F5:1:2111:6761:20875:1... * +2 79nt, >M01687:476:000000000-LL5F5:1:2109:20765:15724:1... at +/97.47% +3 79nt, >M01687:476:000000000-LL5F5:1:2108:6642:6847:1... at +/97.47% +4 79nt, >M01687:476:000000000-LL5F5:1:2105:12174:1811:1... at +/97.47% +5 79nt, >M01687:476:000000000-LL5F5:1:1110:24699:22382:1... at +/97.47% +>Cluster 149 +0 66nt, >M01687:476:000000000-LL5F5:1:2109:18665:9196:7... * +1 66nt, >M01687:476:000000000-LL5F5:1:2105:14538:20244:1... at +/95.45% +2 66nt, >M01687:476:000000000-LL5F5:1:2103:4223:7544:1... at +/98.48% +3 66nt, >M01687:476:000000000-LL5F5:1:1112:7397:23189:2... at +/96.97% +4 66nt, >M01687:476:000000000-LL5F5:1:1111:9803:23233:1... at +/98.48% +>Cluster 150 +0 66nt, >M01687:476:000000000-LL5F5:1:2111:7267:7100:6... * +1 66nt, >M01687:476:000000000-LL5F5:1:2110:22131:10303:1... at +/98.48% +2 66nt, >M01687:476:000000000-LL5F5:1:2104:15848:21536:1... at +/98.48% +3 66nt, >M01687:476:000000000-LL5F5:1:1110:13696:22523:1... at +/98.48% +4 66nt, >M01687:476:000000000-LL5F5:1:1117:12753:8944:1... at +/98.48% +>Cluster 151 +0 62nt, >M01687:476:000000000-LL5F5:1:1101:16318:22938:16... at +/95.16% +1 62nt, >M01687:476:000000000-LL5F5:1:2115:15109:23547:5... at +/96.77% +2 62nt, >M01687:476:000000000-LL5F5:1:2114:15279:22804:1... at +/96.77% +3 61nt, >M01687:476:000000000-LL5F5:1:1114:17093:16986:1... at +/96.72% +4 63nt, >M01687:476:000000000-LL5F5:1:1109:10404:6981:1... * +>Cluster 152 +0 59nt, >M01687:476:000000000-LL5F5:1:2108:21548:15606:1... at +/98.31% +1 51nt, >M01687:476:000000000-LL5F5:1:2106:9101:9852:1... at +/100.00% +2 50nt, >M01687:476:000000000-LL5F5:1:1115:19626:2218:1... at +/100.00% +3 48nt, >M01687:476:000000000-LL5F5:1:1109:20616:7368:1... at +/100.00% +4 64nt, >M01687:476:000000000-LL5F5:1:1103:4180:5673:1... * +>Cluster 153 +0 33nt, >M01687:476:000000000-LL5F5:1:2113:29585:11266:1... * +1 27nt, >M01687:476:000000000-LL5F5:1:2109:27590:11348:2... at +/96.30% +2 26nt, >M01687:476:000000000-LL5F5:1:1113:17507:13013:1... at +/100.00% +3 27nt, >M01687:476:000000000-LL5F5:1:1111:19690:9331:1... at +/96.30% +4 26nt, >M01687:476:000000000-LL5F5:1:1108:25224:18567:1... at +/96.15% +>Cluster 154 +0 53nt, >M01687:476:000000000-LL5F5:1:1101:5220:20890:1... at +/100.00% +1 52nt, >M01687:476:000000000-LL5F5:1:2116:19518:14939:1... at +/100.00% +2 56nt, >M01687:476:000000000-LL5F5:1:2116:8053:21679:1... at +/100.00% +3 59nt, >M01687:476:000000000-LL5F5:1:1113:23378:2574:2... * +4 51nt, >M01687:476:000000000-LL5F5:1:1105:20229:23717:2... at +/100.00% +>Cluster 155 +0 25nt, >M01687:476:000000000-LL5F5:1:1101:7237:22310:1... at +/96.00% +1 33nt, >M01687:476:000000000-LL5F5:1:2115:11772:1331:1... * +2 25nt, >M01687:476:000000000-LL5F5:1:2110:26596:11216:4... at +/96.00% +3 25nt, >M01687:476:000000000-LL5F5:1:2108:6968:6129:1... at +/100.00% +4 25nt, >M01687:476:000000000-LL5F5:1:1110:12861:15070:1... at +/96.00% +>Cluster 156 +0 25nt, >M01687:476:000000000-LL5F5:1:2107:6654:10253:1... at +/96.00% +1 25nt, >M01687:476:000000000-LL5F5:1:2104:13662:18293:1... at +/96.00% +2 26nt, >M01687:476:000000000-LL5F5:1:2101:14376:24750:1... at +/100.00% +3 33nt, >M01687:476:000000000-LL5F5:1:1115:3626:17763:1... * +4 26nt, >M01687:476:000000000-LL5F5:1:1107:16369:2074:1... at +/96.15% +>Cluster 157 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:4385:8057:40... * +1 56nt, >M01687:476:000000000-LL5F5:1:1101:19361:8975:2... at +/98.21% +2 56nt, >M01687:476:000000000-LL5F5:1:1109:14182:11112:3... at +/98.21% +3 56nt, >M01687:476:000000000-LL5F5:1:1106:15068:24516:1... at +/96.43% +4 56nt, >M01687:476:000000000-LL5F5:1:1117:13544:7842:1... at +/98.21% +>Cluster 158 +0 24nt, >M01687:476:000000000-LL5F5:1:2114:21994:1760:17... at +/95.83% +1 23nt, >M01687:476:000000000-LL5F5:1:2114:9413:20296:21... at +/95.65% +2 30nt, >M01687:476:000000000-LL5F5:1:2103:16205:20117:1... * +3 26nt, >M01687:476:000000000-LL5F5:1:1114:24328:2284:1... at +/96.15% +4 25nt, >M01687:476:000000000-LL5F5:1:1118:26736:20335:1... at +/96.00% +>Cluster 159 +0 64nt, >M01687:476:000000000-LL5F5:1:1102:20412:12931:5... at +/98.44% +1 64nt, >M01687:476:000000000-LL5F5:1:2115:18090:19964:6... at +/100.00% +2 65nt, >M01687:476:000000000-LL5F5:1:2106:17135:22968:1... * +3 64nt, >M01687:476:000000000-LL5F5:1:2107:16984:2067:1... at +/96.88% +4 64nt, >M01687:476:000000000-LL5F5:1:1112:19642:2742:1... at +/95.31% +>Cluster 160 +0 64nt, >M01687:476:000000000-LL5F5:1:2115:6552:9782:1... * +1 64nt, >M01687:476:000000000-LL5F5:1:2115:9822:12596:40... at +/98.44% +2 64nt, >M01687:476:000000000-LL5F5:1:1113:4752:16841:1... at +/96.88% +3 64nt, >M01687:476:000000000-LL5F5:1:1104:8567:4336:1... at +/96.88% +4 63nt, >M01687:476:000000000-LL5F5:1:1104:24118:18613:1... at +/98.41% +>Cluster 161 +0 24nt, >M01687:476:000000000-LL5F5:1:2113:12854:15358:2... at +/100.00% +1 30nt, >M01687:476:000000000-LL5F5:1:2105:22385:8682:2... at +/100.00% +2 25nt, >M01687:476:000000000-LL5F5:1:1114:20014:23798:1... at +/100.00% +3 32nt, >M01687:476:000000000-LL5F5:1:1110:3866:15928:1... * +4 28nt, >M01687:476:000000000-LL5F5:1:2118:6631:22307:1... at +/100.00% +>Cluster 162 +0 77nt, >M01687:476:000000000-LL5F5:1:1102:8215:20358:66... * +1 60nt, >M01687:476:000000000-LL5F5:1:2114:25266:21586:1... at +/100.00% +2 77nt, >M01687:476:000000000-LL5F5:1:1113:10268:14028:1... at +/98.70% +3 77nt, >M01687:476:000000000-LL5F5:1:1108:24104:21044:1... at +/98.70% +4 77nt, >M01687:476:000000000-LL5F5:1:1106:14482:8852:1... at +/98.70% +>Cluster 163 +0 78nt, >M01687:476:000000000-LL5F5:1:1101:3229:9416:7... * +1 78nt, >M01687:476:000000000-LL5F5:1:2114:27241:16461:3... at +/98.72% +2 77nt, >M01687:476:000000000-LL5F5:1:2112:22998:11409:10... at +/96.10% +3 78nt, >M01687:476:000000000-LL5F5:1:1111:4624:5401:1... at +/98.72% +4 78nt, >M01687:476:000000000-LL5F5:1:1117:24146:14611:1... at +/98.72% +>Cluster 164 +0 75nt, >M01687:476:000000000-LL5F5:1:1102:20934:2648:23... * +1 75nt, >M01687:476:000000000-LL5F5:1:1101:14157:23416:10... at +/98.67% +2 75nt, >M01687:476:000000000-LL5F5:1:2111:12751:22029:1... at +/98.67% +3 75nt, >M01687:476:000000000-LL5F5:1:1114:21866:20366:1... at +/98.67% +4 74nt, >M01687:476:000000000-LL5F5:1:1112:15741:18292:2... at +/100.00% +>Cluster 165 +0 22nt, >M01687:476:000000000-LL5F5:1:1102:13431:19589:8... at +/100.00% +1 28nt, >M01687:476:000000000-LL5F5:1:2107:4295:21171:1... * +2 23nt, >M01687:476:000000000-LL5F5:1:2104:7549:14562:2... at +/100.00% +3 26nt, >M01687:476:000000000-LL5F5:1:1110:19706:2518:1... at +/100.00% +4 23nt, >M01687:476:000000000-LL5F5:1:1105:11637:4771:1... at +/100.00% +>Cluster 166 +0 39nt, >M01687:476:000000000-LL5F5:1:2110:15816:24771:1... * +1 33nt, >M01687:476:000000000-LL5F5:1:2103:22853:1467:2... at +/100.00% +2 33nt, >M01687:476:000000000-LL5F5:1:2116:29541:11402:1... at +/96.97% +3 37nt, >M01687:476:000000000-LL5F5:1:1113:18458:11504:1... at +/97.30% +4 34nt, >M01687:476:000000000-LL5F5:1:1110:22962:12245:1... at +/100.00% +>Cluster 167 +0 24nt, >M01687:476:000000000-LL5F5:1:2115:23388:2370:4... at +/100.00% +1 20nt, >M01687:476:000000000-LL5F5:1:2114:2647:15437:8... at +/100.00% +2 22nt, >M01687:476:000000000-LL5F5:1:2113:6815:23809:6... at +/100.00% +3 26nt, >M01687:476:000000000-LL5F5:1:2106:15654:3821:6... * +4 22nt, >M01687:476:000000000-LL5F5:1:1117:28196:17330:1... at +/100.00% +>Cluster 168 +0 69nt, >M01687:476:000000000-LL5F5:1:2108:12897:4667:2... * +1 58nt, >M01687:476:000000000-LL5F5:1:2108:12089:13626:1... at +/100.00% +2 60nt, >M01687:476:000000000-LL5F5:1:1107:26051:7046:1... at +/100.00% +3 52nt, >M01687:476:000000000-LL5F5:1:1117:2546:17930:1... at +/100.00% +4 55nt, >M01687:476:000000000-LL5F5:1:1117:10155:19570:1... at +/100.00% +>Cluster 169 +0 22nt, >M01687:476:000000000-LL5F5:1:2115:13514:15485:2... at +/100.00% +1 21nt, >M01687:476:000000000-LL5F5:1:2106:23800:3632:1... at +/100.00% +2 24nt, >M01687:476:000000000-LL5F5:1:2104:3568:6326:2... at +/100.00% +3 23nt, >M01687:476:000000000-LL5F5:1:2102:11249:3900:2... at +/95.65% +4 25nt, >M01687:476:000000000-LL5F5:1:1115:28915:15435:1... * +>Cluster 170 +0 22nt, >M01687:476:000000000-LL5F5:1:2114:9978:2758:1... at +/95.45% +1 22nt, >M01687:476:000000000-LL5F5:1:2113:5649:17098:3... at +/100.00% +2 29nt, >M01687:476:000000000-LL5F5:1:1112:9500:16092:1... * +3 23nt, >M01687:476:000000000-LL5F5:1:1111:22427:13217:2... at +/95.65% +4 24nt, >M01687:476:000000000-LL5F5:1:1118:26878:17525:1... at +/100.00% +>Cluster 171 +0 66nt, >M01687:476:000000000-LL5F5:1:1101:27206:10746:1... at +/96.97% +1 66nt, >M01687:476:000000000-LL5F5:1:1101:12980:11162:26... at +/98.48% +2 66nt, >M01687:476:000000000-LL5F5:1:2102:12195:19655:3... at +/96.97% +3 66nt, >M01687:476:000000000-LL5F5:1:1113:2756:13089:1... at +/96.97% +4 67nt, >M01687:476:000000000-LL5F5:1:1109:19236:16477:1... * +>Cluster 172 +0 23nt, >M01687:476:000000000-LL5F5:1:1102:10751:8042:1... at +/100.00% +1 22nt, >M01687:476:000000000-LL5F5:1:1101:24547:12255:14... at +/100.00% +2 29nt, >M01687:476:000000000-LL5F5:1:2109:21066:22944:1... * +3 24nt, >M01687:476:000000000-LL5F5:1:1116:20601:8358:1... at +/100.00% +4 22nt, >M01687:476:000000000-LL5F5:1:1103:23272:16655:1... at +/95.45% +>Cluster 173 +0 33nt, >M01687:476:000000000-LL5F5:1:2115:24138:7357:2... at +/100.00% +1 37nt, >M01687:476:000000000-LL5F5:1:2113:10420:24457:2... at +/100.00% +2 39nt, >M01687:476:000000000-LL5F5:1:2107:10142:13210:2... at +/100.00% +3 40nt, >M01687:476:000000000-LL5F5:1:1105:25494:19895:1... * +4 38nt, >M01687:476:000000000-LL5F5:1:1103:15580:11362:1... at +/100.00% +>Cluster 174 +0 48nt, >M01687:476:000000000-LL5F5:1:2115:24178:12671:2... at +/100.00% +1 50nt, >M01687:476:000000000-LL5F5:1:2114:10235:22826:1... at +/100.00% +2 42nt, >M01687:476:000000000-LL5F5:1:2103:28260:9074:2... at +/100.00% +3 47nt, >M01687:476:000000000-LL5F5:1:2118:23521:18952:1... at +/100.00% +4 53nt, >M01687:476:000000000-LL5F5:1:2119:11608:19038:1... * +>Cluster 175 +0 86nt, >M01687:476:000000000-LL5F5:1:1102:7197:10185:11... * +1 85nt, >M01687:476:000000000-LL5F5:1:1116:23534:17041:1... at +/100.00% +2 86nt, >M01687:476:000000000-LL5F5:1:1107:8048:23860:1... at +/98.84% +3 86nt, >M01687:476:000000000-LL5F5:1:1105:17827:22305:1... at +/98.84% +4 86nt, >M01687:476:000000000-LL5F5:1:1118:23715:15588:1... at +/98.84% +>Cluster 176 +0 69nt, >M01687:476:000000000-LL5F5:1:2114:8246:18271:1... at +/100.00% +1 81nt, >M01687:476:000000000-LL5F5:1:2108:9440:7476:1... at +/98.77% +2 87nt, >M01687:476:000000000-LL5F5:1:1108:12576:5369:1... * +3 83nt, >M01687:476:000000000-LL5F5:1:1105:8095:4764:1... at +/98.80% +4 75nt, >M01687:476:000000000-LL5F5:1:2119:5821:4472:1... at +/97.33% +>Cluster 177 +0 21nt, >M01687:476:000000000-LL5F5:1:2114:17796:4048:8... at +/100.00% +1 23nt, >M01687:476:000000000-LL5F5:1:2114:26588:11774:2... at +/95.65% +2 22nt, >M01687:476:000000000-LL5F5:1:2112:4217:17003:2... at +/100.00% +3 24nt, >M01687:476:000000000-LL5F5:1:1111:5723:9532:1... at +/100.00% +4 28nt, >M01687:476:000000000-LL5F5:1:1109:26975:11145:1... * +>Cluster 178 +0 85nt, >M01687:476:000000000-LL5F5:1:2113:4098:15167:1... * +1 85nt, >M01687:476:000000000-LL5F5:1:2112:24552:9514:20... at +/98.82% +2 85nt, >M01687:476:000000000-LL5F5:1:2112:21387:15297:4... at +/96.47% +3 85nt, >M01687:476:000000000-LL5F5:1:1107:7242:18787:1... at +/95.29% +4 85nt, >M01687:476:000000000-LL5F5:1:1117:25585:20379:1... at +/97.65% +>Cluster 179 +0 20nt, >M01687:476:000000000-LL5F5:1:1102:26613:20357:21... at +/100.00% +1 19nt, >M01687:476:000000000-LL5F5:1:2115:17650:5985:9... at +/100.00% +2 21nt, >M01687:476:000000000-LL5F5:1:2107:7040:17842:3... at +/100.00% +3 25nt, >M01687:476:000000000-LL5F5:1:1117:24561:18325:1... * +>Cluster 180 +0 33nt, >M01687:476:000000000-LL5F5:1:2116:4358:6349:1... at +/100.00% +1 28nt, >M01687:476:000000000-LL5F5:1:1113:25827:22507:1... at +/100.00% +2 28nt, >M01687:476:000000000-LL5F5:1:1105:27527:7352:1... at +/96.43% +3 36nt, >M01687:476:000000000-LL5F5:1:2119:18784:20601:1... * +>Cluster 181 +0 49nt, >M01687:476:000000000-LL5F5:1:2117:12691:10629:1... * +1 45nt, >M01687:476:000000000-LL5F5:1:1119:16792:11016:1... at +/100.00% +2 40nt, >M01687:476:000000000-LL5F5:1:1112:12713:22415:1... at +/100.00% +3 42nt, >M01687:476:000000000-LL5F5:1:1109:6469:8085:1... at +/100.00% +>Cluster 182 +0 35nt, >M01687:476:000000000-LL5F5:1:2115:18102:8823:1... * +1 32nt, >M01687:476:000000000-LL5F5:1:1118:24814:2560:1... at +/96.88% +2 33nt, >M01687:476:000000000-LL5F5:1:2118:20311:1217:1... at +/96.97% +3 28nt, >M01687:476:000000000-LL5F5:1:2118:2118:14451:1... at +/96.43% +>Cluster 183 +0 62nt, >M01687:476:000000000-LL5F5:1:2108:10282:4714:1... at +/100.00% +1 63nt, >M01687:476:000000000-LL5F5:1:2116:23307:8967:1... * +2 61nt, >M01687:476:000000000-LL5F5:1:2101:24212:20859:1... at +/95.08% +3 62nt, >M01687:476:000000000-LL5F5:1:1107:14562:19237:1... at +/98.39% +>Cluster 184 +0 21nt, >M01687:476:000000000-LL5F5:1:2113:8133:15193:1... at +/95.24% +1 21nt, >M01687:476:000000000-LL5F5:1:2108:3281:15151:3... at +/100.00% +2 25nt, >M01687:476:000000000-LL5F5:1:2104:22734:23635:1... * +3 22nt, >M01687:476:000000000-LL5F5:1:1106:24575:4146:1... at +/100.00% +>Cluster 185 +0 33nt, >M01687:476:000000000-LL5F5:1:2112:14373:1286:1... at +/100.00% +1 40nt, >M01687:476:000000000-LL5F5:1:2116:20935:18083:1... at +/97.50% +2 36nt, >M01687:476:000000000-LL5F5:1:2117:13358:9635:1... at +/97.22% +3 41nt, >M01687:476:000000000-LL5F5:1:1104:5855:9137:1... * +>Cluster 186 +0 102nt, >M01687:476:000000000-LL5F5:1:2106:10576:23141:1... at +/99.02% +1 134nt, >M01687:476:000000000-LL5F5:1:1115:20042:23921:1... * +2 134nt, >M01687:476:000000000-LL5F5:1:1116:15583:21354:1... at +/98.51% +3 134nt, >M01687:476:000000000-LL5F5:1:1114:11390:14012:1... at +/97.76% +>Cluster 187 +0 17nt, >M01687:476:000000000-LL5F5:1:1102:9211:11814:53... at +/100.00% +1 18nt, >M01687:476:000000000-LL5F5:1:1119:4846:11963:5... at +/100.00% +2 19nt, >M01687:476:000000000-LL5F5:1:1110:17785:13468:1... at +/100.00% +3 20nt, >M01687:476:000000000-LL5F5:1:1104:26927:14487:1... * +>Cluster 188 +0 30nt, >M01687:476:000000000-LL5F5:1:2115:23527:19832:3... at +/96.67% +1 31nt, >M01687:476:000000000-LL5F5:1:2102:25295:18227:1... at +/100.00% +2 30nt, >M01687:476:000000000-LL5F5:1:1108:11039:11837:1... at +/100.00% +3 40nt, >M01687:476:000000000-LL5F5:1:1117:25195:22065:1... * +>Cluster 189 +0 163nt, >M01687:476:000000000-LL5F5:1:1102:12790:16344:1... * +1 163nt, >M01687:476:000000000-LL5F5:1:1102:22854:19601:11... at +/99.39% +2 162nt, >M01687:476:000000000-LL5F5:1:2109:28182:14222:3... at +/99.38% +3 162nt, >M01687:476:000000000-LL5F5:1:1105:4965:19122:1... at +/100.00% +>Cluster 190 +0 35nt, >M01687:476:000000000-LL5F5:1:2111:11376:14878:1... at +/97.14% +1 33nt, >M01687:476:000000000-LL5F5:1:2110:22205:1080:1... at +/100.00% +2 38nt, >M01687:476:000000000-LL5F5:1:1110:19658:7861:1... at +/100.00% +3 40nt, >M01687:476:000000000-LL5F5:1:1105:15023:15945:1... * +>Cluster 191 +0 60nt, >M01687:476:000000000-LL5F5:1:1101:21093:3900:29... * +1 60nt, >M01687:476:000000000-LL5F5:1:2113:21762:20232:1... at +/98.33% +2 59nt, >M01687:476:000000000-LL5F5:1:2112:20935:23406:1... at +/100.00% +3 58nt, >M01687:476:000000000-LL5F5:1:1110:8248:18718:1... at +/98.28% +>Cluster 192 +0 21nt, >M01687:476:000000000-LL5F5:1:1102:12762:17395:1... at +/95.24% +1 19nt, >M01687:476:000000000-LL5F5:1:1102:21568:24415:1... at +/100.00% +2 24nt, >M01687:476:000000000-LL5F5:1:2107:15093:7320:1... * +3 23nt, >M01687:476:000000000-LL5F5:1:2103:8297:13817:1... at +/100.00% +>Cluster 193 +0 45nt, >M01687:476:000000000-LL5F5:1:2114:21780:5625:1... * +1 34nt, >M01687:476:000000000-LL5F5:1:2112:9020:6678:1... at +/97.06% +2 42nt, >M01687:476:000000000-LL5F5:1:2111:15088:11815:1... at +/97.62% +3 37nt, >M01687:476:000000000-LL5F5:1:2110:24754:18523:1... at +/97.30% +>Cluster 194 +0 62nt, >M01687:476:000000000-LL5F5:1:1102:24619:8382:26... * +1 62nt, >M01687:476:000000000-LL5F5:1:2107:20778:15721:2... at +/96.77% +2 62nt, >M01687:476:000000000-LL5F5:1:1116:7637:12206:1... at +/98.39% +3 61nt, >M01687:476:000000000-LL5F5:1:1108:8772:20451:1... at +/100.00% +>Cluster 195 +0 100nt, >M01687:476:000000000-LL5F5:1:2115:11155:11604:1... * +1 99nt, >M01687:476:000000000-LL5F5:1:2115:23167:20826:1... at +/98.99% +2 100nt, >M01687:476:000000000-LL5F5:1:2110:23221:4102:10... at +/99.00% +3 100nt, >M01687:476:000000000-LL5F5:1:2107:9266:22497:1... at +/98.00% +>Cluster 196 +0 53nt, >M01687:476:000000000-LL5F5:1:2110:24314:5898:1... at +/100.00% +1 50nt, >M01687:476:000000000-LL5F5:1:2110:26993:10654:1... at +/100.00% +2 49nt, >M01687:476:000000000-LL5F5:1:2108:17659:9948:1... at +/100.00% +3 59nt, >M01687:476:000000000-LL5F5:1:2117:18432:22563:1... * +>Cluster 197 +0 16nt, >M01687:476:000000000-LL5F5:1:2114:27103:14695:7... at +/100.00% +1 15nt, >M01687:476:000000000-LL5F5:1:2111:16655:19058:10... at +/100.00% +2 18nt, >M01687:476:000000000-LL5F5:1:2110:5041:13218:1... at +/100.00% +3 20nt, >M01687:476:000000000-LL5F5:1:1110:14621:23051:1... * +>Cluster 198 +0 34nt, >M01687:476:000000000-LL5F5:1:2115:17739:23330:11... at +/97.06% +1 42nt, >M01687:476:000000000-LL5F5:1:2114:23162:5000:1... * +2 34nt, >M01687:476:000000000-LL5F5:1:2116:14308:20595:1... at +/97.06% +3 34nt, >M01687:476:000000000-LL5F5:1:2101:19548:17517:1... at +/97.06% +>Cluster 199 +0 19nt, >M01687:476:000000000-LL5F5:1:1102:23525:20088:31... at +/100.00% +1 24nt, >M01687:476:000000000-LL5F5:1:1102:18453:23892:1... at +/95.83% +2 25nt, >M01687:476:000000000-LL5F5:1:2109:26249:22341:1... * +3 22nt, >M01687:476:000000000-LL5F5:1:1113:14144:5965:1... at +/95.45% +>Cluster 200 +0 65nt, >M01687:476:000000000-LL5F5:1:2110:14517:14317:1... * +1 65nt, >M01687:476:000000000-LL5F5:1:2102:5855:3688:10... at +/96.92% +2 65nt, >M01687:476:000000000-LL5F5:1:1109:19392:22230:2... at +/95.38% +3 65nt, >M01687:476:000000000-LL5F5:1:1117:25424:16323:1... at +/95.38% +>Cluster 201 +0 24nt, >M01687:476:000000000-LL5F5:1:1101:2763:13709:1... at +/100.00% +1 27nt, >M01687:476:000000000-LL5F5:1:2114:5153:22000:1... at +/100.00% +2 31nt, >M01687:476:000000000-LL5F5:1:2112:10955:10348:1... * +3 25nt, >M01687:476:000000000-LL5F5:1:2102:23012:19087:1... at +/100.00% +>Cluster 202 +0 71nt, >M01687:476:000000000-LL5F5:1:2114:15766:3937:1... at +/98.59% +1 72nt, >M01687:476:000000000-LL5F5:1:2109:22665:14247:1... * +2 72nt, >M01687:476:000000000-LL5F5:1:2106:15492:3291:1... at +/97.22% +3 72nt, >M01687:476:000000000-LL5F5:1:2106:27512:8849:1... at +/97.22% +>Cluster 203 +0 55nt, >M01687:476:000000000-LL5F5:1:1102:14463:10022:48... * +1 49nt, >M01687:476:000000000-LL5F5:1:2115:19831:24264:1... at +/100.00% +2 55nt, >M01687:476:000000000-LL5F5:1:2106:12073:15488:1... at +/98.18% +3 55nt, >M01687:476:000000000-LL5F5:1:2119:29454:12097:1... at +/98.18% +>Cluster 204 +0 34nt, >M01687:476:000000000-LL5F5:1:2105:11964:19581:1... at +/100.00% +1 37nt, >M01687:476:000000000-LL5F5:1:2117:6978:12170:1... at +/100.00% +2 38nt, >M01687:476:000000000-LL5F5:1:1104:22535:11466:1... * +3 36nt, >M01687:476:000000000-LL5F5:1:1117:14424:17209:1... at +/100.00% +>Cluster 205 +0 51nt, >M01687:476:000000000-LL5F5:1:2107:15501:22230:1... at +/98.04% +1 66nt, >M01687:476:000000000-LL5F5:1:2116:17197:5396:1... * +2 66nt, >M01687:476:000000000-LL5F5:1:2117:16861:21580:1... at +/96.97% +3 50nt, >M01687:476:000000000-LL5F5:1:2119:17887:9636:1... at +/96.00% +>Cluster 206 +0 35nt, >M01687:476:000000000-LL5F5:1:2115:14237:6906:3... at +/100.00% +1 34nt, >M01687:476:000000000-LL5F5:1:2113:14179:23908:3... at +/100.00% +2 37nt, >M01687:476:000000000-LL5F5:1:2103:10832:23051:1... * +3 35nt, >M01687:476:000000000-LL5F5:1:1111:12957:3016:1... at +/97.14% +>Cluster 207 +0 67nt, >M01687:476:000000000-LL5F5:1:1101:15488:15339:2... * +1 67nt, >M01687:476:000000000-LL5F5:1:2104:15105:15155:1... at +/97.01% +2 66nt, >M01687:476:000000000-LL5F5:1:2104:20930:15704:1... at +/100.00% +3 67nt, >M01687:476:000000000-LL5F5:1:2117:10778:19185:1... at +/98.51% +>Cluster 208 +0 24nt, >M01687:476:000000000-LL5F5:1:1102:17877:14722:1... at +/100.00% +1 24nt, >M01687:476:000000000-LL5F5:1:2115:1986:12271:1... at +/95.83% +2 24nt, >M01687:476:000000000-LL5F5:1:2113:3164:7719:13... at +/95.83% +3 31nt, >M01687:476:000000000-LL5F5:1:2102:17270:22876:1... * +>Cluster 209 +0 24nt, >M01687:476:000000000-LL5F5:1:1101:8803:19202:9... at +/95.83% +1 26nt, >M01687:476:000000000-LL5F5:1:2115:6062:8577:10... at +/96.15% +2 25nt, >M01687:476:000000000-LL5F5:1:2108:9262:11939:6... at +/96.00% +3 31nt, >M01687:476:000000000-LL5F5:1:1104:17097:8582:1... * +>Cluster 210 +0 65nt, >M01687:476:000000000-LL5F5:1:1119:20853:15254:2... * +1 65nt, >M01687:476:000000000-LL5F5:1:1116:22490:20019:1... at +/98.46% +2 65nt, >M01687:476:000000000-LL5F5:1:1108:22324:9724:1... at +/98.46% +3 65nt, >M01687:476:000000000-LL5F5:1:1106:14821:19671:1... at +/98.46% +>Cluster 211 +0 49nt, >M01687:476:000000000-LL5F5:1:2109:26938:8423:1... * +1 41nt, >M01687:476:000000000-LL5F5:1:2101:20424:9576:1... at +/100.00% +2 42nt, >M01687:476:000000000-LL5F5:1:1108:9680:4404:1... at +/100.00% +3 48nt, >M01687:476:000000000-LL5F5:1:2119:4883:13978:1... at +/100.00% +>Cluster 212 +0 80nt, >M01687:476:000000000-LL5F5:1:1102:17750:13889:15... at +/100.00% +1 81nt, >M01687:476:000000000-LL5F5:1:1101:18928:4151:7... * +2 81nt, >M01687:476:000000000-LL5F5:1:2109:18890:5546:1... at +/98.77% +3 80nt, >M01687:476:000000000-LL5F5:1:2102:8905:14435:1... at +/98.75% +>Cluster 213 +0 80nt, >M01687:476:000000000-LL5F5:1:1102:6591:11612:1... * +1 80nt, >M01687:476:000000000-LL5F5:1:2115:11063:24971:1... at +/97.50% +2 80nt, >M01687:476:000000000-LL5F5:1:2114:26100:4346:15... at +/98.75% +3 80nt, >M01687:476:000000000-LL5F5:1:1118:12645:14527:1... at +/97.50% +>Cluster 214 +0 20nt, >M01687:476:000000000-LL5F5:1:1102:21677:3818:65... at +/100.00% +1 25nt, >M01687:476:000000000-LL5F5:1:2115:27284:8285:30... at +/100.00% +2 26nt, >M01687:476:000000000-LL5F5:1:1103:17478:19102:1... * +3 22nt, >M01687:476:000000000-LL5F5:1:1118:23037:23288:1... at +/100.00% +>Cluster 215 +0 80nt, >M01687:476:000000000-LL5F5:1:2104:27560:13457:9... * +1 80nt, >M01687:476:000000000-LL5F5:1:2105:8452:4257:1... at +/98.75% +2 79nt, >M01687:476:000000000-LL5F5:1:2118:14911:10729:1... at +/100.00% +3 80nt, >M01687:476:000000000-LL5F5:1:2118:23102:23151:1... at +/98.75% +>Cluster 216 +0 48nt, >M01687:476:000000000-LL5F5:1:2103:9953:20003:1... at +/97.92% +1 56nt, >M01687:476:000000000-LL5F5:1:1114:13227:12683:1... * +2 56nt, >M01687:476:000000000-LL5F5:1:1112:22881:15622:1... at +/96.43% +3 56nt, >M01687:476:000000000-LL5F5:1:1117:7297:21109:1... at +/96.43% +>Cluster 217 +0 50nt, >M01687:476:000000000-LL5F5:1:1102:23784:14766:19... * +1 50nt, >M01687:476:000000000-LL5F5:1:1101:12299:9973:16... at +/96.00% +2 49nt, >M01687:476:000000000-LL5F5:1:2113:14535:12875:1... at +/100.00% +3 50nt, >M01687:476:000000000-LL5F5:1:1103:11000:22699:1... at +/96.00% +>Cluster 218 +0 79nt, >M01687:476:000000000-LL5F5:1:2114:15707:10176:9... * +1 79nt, >M01687:476:000000000-LL5F5:1:2112:21585:2752:5... at +/97.47% +2 79nt, >M01687:476:000000000-LL5F5:1:2107:25461:10892:1... at +/98.73% +3 79nt, >M01687:476:000000000-LL5F5:1:2107:10298:24180:1... at +/97.47% +>Cluster 219 +0 66nt, >M01687:476:000000000-LL5F5:1:1102:24011:10888:47... * +1 65nt, >M01687:476:000000000-LL5F5:1:2112:12608:6868:2... at +/100.00% +2 66nt, >M01687:476:000000000-LL5F5:1:2110:20005:3487:1... at +/98.48% +3 66nt, >M01687:476:000000000-LL5F5:1:1113:17104:13820:1... at +/98.48% +>Cluster 220 +0 33nt, >M01687:476:000000000-LL5F5:1:2115:19613:1618:1... at +/100.00% +1 32nt, >M01687:476:000000000-LL5F5:1:2107:21355:19889:1... at +/100.00% +2 35nt, >M01687:476:000000000-LL5F5:1:2119:10957:17529:1... * +>Cluster 221 +0 56nt, >M01687:476:000000000-LL5F5:1:1101:13499:7613:1... * +1 56nt, >M01687:476:000000000-LL5F5:1:2115:5323:16590:13... at +/98.21% +2 55nt, >M01687:476:000000000-LL5F5:1:1103:4318:18996:1... at +/98.18% +>Cluster 222 +0 33nt, >M01687:476:000000000-LL5F5:1:2115:9126:1381:1... at +/96.97% +1 31nt, >M01687:476:000000000-LL5F5:1:2110:10071:3227:1... at +/96.77% +2 40nt, >M01687:476:000000000-LL5F5:1:1105:7368:14959:1... * +>Cluster 223 +0 30nt, >M01687:476:000000000-LL5F5:1:2107:23608:10886:2... at +/96.67% +1 30nt, >M01687:476:000000000-LL5F5:1:1109:8280:2032:2... at +/96.67% +2 40nt, >M01687:476:000000000-LL5F5:1:1117:8891:2492:1... * +>Cluster 224 +0 40nt, >M01687:476:000000000-LL5F5:1:2115:23257:23370:1... at +/100.00% +1 46nt, >M01687:476:000000000-LL5F5:1:2113:16983:12332:4... * +2 46nt, >M01687:476:000000000-LL5F5:1:1111:5491:10776:1... at +/97.83% +>Cluster 225 +0 52nt, >M01687:476:000000000-LL5F5:1:1101:6951:17795:1... at +/100.00% +1 53nt, >M01687:476:000000000-LL5F5:1:2102:12588:21318:5... * +2 42nt, >M01687:476:000000000-LL5F5:1:1117:10110:21999:1... at +/100.00% +>Cluster 226 +0 39nt, >M01687:476:000000000-LL5F5:1:2114:26067:18460:3... at +/97.44% +1 38nt, >M01687:476:000000000-LL5F5:1:2107:21741:19127:7... at +/97.37% +2 50nt, >M01687:476:000000000-LL5F5:1:1111:3682:13869:1... * +>Cluster 227 +0 50nt, >M01687:476:000000000-LL5F5:1:2111:22177:6389:1... * +1 38nt, >M01687:476:000000000-LL5F5:1:1119:28741:10338:1... at +/97.37% +2 44nt, >M01687:476:000000000-LL5F5:1:1112:6111:22451:1... at +/97.73% +>Cluster 228 +0 34nt, >M01687:476:000000000-LL5F5:1:2114:20049:8442:1... at +/97.06% +1 33nt, >M01687:476:000000000-LL5F5:1:2113:11725:1294:1... at +/96.97% +2 44nt, >M01687:476:000000000-LL5F5:1:1109:23634:14563:1... * +>Cluster 229 +0 42nt, >M01687:476:000000000-LL5F5:1:2104:7750:5147:1... * +1 32nt, >M01687:476:000000000-LL5F5:1:1117:11356:7725:1... at +/100.00% +2 39nt, >M01687:476:000000000-LL5F5:1:2119:7377:21797:1... at +/100.00% +>Cluster 230 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:10996:18331:25... * +1 56nt, >M01687:476:000000000-LL5F5:1:2112:26404:7104:1... at +/98.21% +2 56nt, >M01687:476:000000000-LL5F5:1:2111:21607:9398:1... at +/98.21% +>Cluster 231 +0 50nt, >M01687:476:000000000-LL5F5:1:2113:9484:22186:1... at +/100.00% +1 58nt, >M01687:476:000000000-LL5F5:1:2103:16693:20867:1... * +2 56nt, >M01687:476:000000000-LL5F5:1:2118:26555:21615:1... at +/100.00% +>Cluster 232 +0 45nt, >M01687:476:000000000-LL5F5:1:2113:3105:18111:1... at +/100.00% +1 55nt, >M01687:476:000000000-LL5F5:1:1113:27577:13915:1... * +2 52nt, >M01687:476:000000000-LL5F5:1:1109:24836:15437:1... at +/100.00% +>Cluster 233 +0 66nt, >M01687:476:000000000-LL5F5:1:2111:17915:6262:11... * +1 66nt, >M01687:476:000000000-LL5F5:1:2102:11997:17015:2... at +/98.48% +2 66nt, >M01687:476:000000000-LL5F5:1:2117:17516:11372:1... at +/98.48% +>Cluster 234 +0 73nt, >M01687:476:000000000-LL5F5:1:1101:17941:9008:21... * +1 72nt, >M01687:476:000000000-LL5F5:1:2105:12047:5268:1... at +/100.00% +2 73nt, >M01687:476:000000000-LL5F5:1:2119:24021:15024:1... at +/98.63% +>Cluster 235 +0 31nt, >M01687:476:000000000-LL5F5:1:2114:17213:11529:1... at +/100.00% +1 25nt, >M01687:476:000000000-LL5F5:1:2104:7824:24016:1... at +/96.00% +2 33nt, >M01687:476:000000000-LL5F5:1:2101:8271:16356:1... * +>Cluster 236 +0 81nt, >M01687:476:000000000-LL5F5:1:1101:15004:11737:28... * +1 80nt, >M01687:476:000000000-LL5F5:1:2111:16748:9283:1... at +/98.75% +2 81nt, >M01687:476:000000000-LL5F5:1:2104:9434:12437:1... at +/98.77% +>Cluster 237 +0 88nt, >M01687:476:000000000-LL5F5:1:2114:9458:2031:1... * +1 88nt, >M01687:476:000000000-LL5F5:1:2111:14029:18275:13... at +/98.86% +2 88nt, >M01687:476:000000000-LL5F5:1:2101:14346:23818:2... at +/97.73% +>Cluster 238 +0 106nt, >M01687:476:000000000-LL5F5:1:2111:19388:21385:1... at +/99.06% +1 111nt, >M01687:476:000000000-LL5F5:1:1119:26049:8129:1... * +2 90nt, >M01687:476:000000000-LL5F5:1:2118:11715:20548:1... at +/98.89% +>Cluster 239 +0 152nt, >M01687:476:000000000-LL5F5:1:1112:23853:20071:1... * +1 152nt, >M01687:476:000000000-LL5F5:1:1107:27344:15176:1... at +/98.68% +2 152nt, >M01687:476:000000000-LL5F5:1:1103:16236:13527:1... at +/99.34% +>Cluster 240 +0 85nt, >M01687:476:000000000-LL5F5:1:2104:13576:21422:1... at +/100.00% +1 86nt, >M01687:476:000000000-LL5F5:1:1119:17834:7660:1... * +2 86nt, >M01687:476:000000000-LL5F5:1:1114:22217:24479:1... at +/98.84% +>Cluster 241 +0 65nt, >M01687:476:000000000-LL5F5:1:2105:20025:21902:1... * +1 65nt, >M01687:476:000000000-LL5F5:1:1113:25572:15292:1... at +/96.92% +2 65nt, >M01687:476:000000000-LL5F5:1:1105:7080:13386:1... at +/96.92% +>Cluster 242 +0 78nt, >M01687:476:000000000-LL5F5:1:1102:4638:13678:16... * +1 78nt, >M01687:476:000000000-LL5F5:1:2111:26575:7489:1... at +/98.72% +2 78nt, >M01687:476:000000000-LL5F5:1:1113:13273:16478:1... at +/98.72% +>Cluster 243 +0 78nt, >M01687:476:000000000-LL5F5:1:1101:14141:14951:1... * +1 78nt, >M01687:476:000000000-LL5F5:1:2113:10184:18654:9... at +/98.72% +2 78nt, >M01687:476:000000000-LL5F5:1:2110:3594:13311:1... at +/97.44% +>Cluster 244 +0 50nt, >M01687:476:000000000-LL5F5:1:2108:27949:7146:1... at +/96.00% +1 65nt, >M01687:476:000000000-LL5F5:1:2105:16083:5271:1... * +2 65nt, >M01687:476:000000000-LL5F5:1:1110:2479:13733:1... at +/96.92% +>Cluster 245 +0 76nt, >M01687:476:000000000-LL5F5:1:1102:18901:17587:3... * +1 76nt, >M01687:476:000000000-LL5F5:1:2115:6023:6120:9... at +/97.37% +2 76nt, >M01687:476:000000000-LL5F5:1:1105:8737:22601:1... at +/96.05% +>Cluster 246 +0 63nt, >M01687:476:000000000-LL5F5:1:1101:9783:1733:6... at +/100.00% +1 64nt, >M01687:476:000000000-LL5F5:1:2107:20927:24034:3... * +2 64nt, >M01687:476:000000000-LL5F5:1:1113:12153:3819:1... at +/98.44% +>Cluster 247 +0 81nt, >M01687:476:000000000-LL5F5:1:2112:26350:16070:1... * +1 62nt, >M01687:476:000000000-LL5F5:1:2106:3048:11879:3... at +/100.00% +2 62nt, >M01687:476:000000000-LL5F5:1:2116:15365:11395:1... at +/98.39% +>Cluster 248 +0 50nt, >M01687:476:000000000-LL5F5:1:2113:2661:10759:2... at +/98.00% +1 62nt, >M01687:476:000000000-LL5F5:1:1107:23793:2938:1... at +/96.77% +2 65nt, >M01687:476:000000000-LL5F5:1:1117:25560:5358:1... * +>Cluster 249 +0 70nt, >M01687:476:000000000-LL5F5:1:1102:15575:24379:1... * +1 56nt, >M01687:476:000000000-LL5F5:1:1113:13147:22890:1... at +/100.00% +2 62nt, >M01687:476:000000000-LL5F5:1:1112:25910:21725:1... at +/100.00% +>Cluster 250 +0 94nt, >M01687:476:000000000-LL5F5:1:2115:21929:20943:17... * +1 94nt, >M01687:476:000000000-LL5F5:1:1107:14029:10301:2... at +/98.94% +2 94nt, >M01687:476:000000000-LL5F5:1:1117:3374:8375:1... at +/97.87% +>Cluster 251 +0 163nt, >M01687:476:000000000-LL5F5:1:1102:13702:23042:7... * +1 163nt, >M01687:476:000000000-LL5F5:1:2111:7072:22310:3... at +/99.39% +2 162nt, >M01687:476:000000000-LL5F5:1:2110:23293:16028:1... at +/99.38% +>Cluster 252 +0 26nt, >M01687:476:000000000-LL5F5:1:1102:22457:8003:17... at +/96.15% +1 26nt, >M01687:476:000000000-LL5F5:1:1102:25576:17362:1... at +/96.15% +2 34nt, >M01687:476:000000000-LL5F5:1:1106:7568:12351:1... * +>Cluster 253 +0 56nt, >M01687:476:000000000-LL5F5:1:2103:21153:13826:1... at +/100.00% +1 60nt, >M01687:476:000000000-LL5F5:1:1111:13476:24185:1... at +/100.00% +2 70nt, >M01687:476:000000000-LL5F5:1:1104:27780:20305:1... * +>Cluster 254 +0 97nt, >M01687:476:000000000-LL5F5:1:2114:8168:7310:3... * +1 97nt, >M01687:476:000000000-LL5F5:1:2112:20630:12716:1... at +/98.97% +2 96nt, >M01687:476:000000000-LL5F5:1:2116:4986:13468:2... at +/100.00% +>Cluster 255 +0 60nt, >M01687:476:000000000-LL5F5:1:1102:12080:11480:1... * +1 60nt, >M01687:476:000000000-LL5F5:1:1102:16591:14134:34... at +/98.33% +2 60nt, >M01687:476:000000000-LL5F5:1:1114:5053:14726:1... at +/96.67% +>Cluster 256 +0 31nt, >M01687:476:000000000-LL5F5:1:1101:18622:21670:3... at +/96.77% +1 29nt, >M01687:476:000000000-LL5F5:1:2101:6311:13764:2... at +/96.55% +2 34nt, >M01687:476:000000000-LL5F5:1:1103:10328:10959:1... * +>Cluster 257 +0 62nt, >M01687:476:000000000-LL5F5:1:2107:5129:18778:1... * +1 47nt, >M01687:476:000000000-LL5F5:1:2117:20631:5046:1... at +/97.87% +2 62nt, >M01687:476:000000000-LL5F5:1:2117:8492:9846:1... at +/96.77% +>Cluster 258 +0 69nt, >M01687:476:000000000-LL5F5:1:2116:20702:19501:1... * +1 52nt, >M01687:476:000000000-LL5F5:1:1112:3104:14003:1... at +/98.08% +>Cluster 259 +0 51nt, >M01687:476:000000000-LL5F5:1:1102:25637:19207:6... * +1 51nt, >M01687:476:000000000-LL5F5:1:1119:5471:17088:2... at +/98.04% +>Cluster 260 +0 51nt, >M01687:476:000000000-LL5F5:1:2108:12518:4590:1... * +1 51nt, >M01687:476:000000000-LL5F5:1:1106:16576:6627:1... at +/98.04% +>Cluster 261 +0 48nt, >M01687:476:000000000-LL5F5:1:2109:12140:15278:5... at +/95.83% +1 51nt, >M01687:476:000000000-LL5F5:1:2105:16312:16071:1... * +>Cluster 262 +0 41nt, >M01687:476:000000000-LL5F5:1:2114:10115:9884:1... * +1 34nt, >M01687:476:000000000-LL5F5:1:2107:11317:22162:1... at +/100.00% +>Cluster 263 +0 29nt, >M01687:476:000000000-LL5F5:1:2111:26621:14533:6... at +/96.55% +1 38nt, >M01687:476:000000000-LL5F5:1:1114:13549:11149:1... * +>Cluster 264 +0 37nt, >M01687:476:000000000-LL5F5:1:2109:12124:21345:1... * +1 30nt, >M01687:476:000000000-LL5F5:1:2108:22398:8039:1... at +/100.00% +>Cluster 265 +0 52nt, >M01687:476:000000000-LL5F5:1:2109:29343:13113:1... * +1 50nt, >M01687:476:000000000-LL5F5:1:1109:7480:10881:1... at +/96.00% +>Cluster 266 +0 42nt, >M01687:476:000000000-LL5F5:1:2108:26548:20248:1... * +1 33nt, >M01687:476:000000000-LL5F5:1:2118:23176:20031:1... at +/100.00% +>Cluster 267 +0 20nt, >M01687:476:000000000-LL5F5:1:2106:20574:19033:1... * +1 17nt, >M01687:476:000000000-LL5F5:1:1117:6364:9212:1... at +/100.00% +>Cluster 268 +0 71nt, >M01687:476:000000000-LL5F5:1:2112:9786:8612:1... at +/97.18% +1 73nt, >M01687:476:000000000-LL5F5:1:1104:17904:16094:1... * +>Cluster 269 +0 72nt, >M01687:476:000000000-LL5F5:1:1101:20049:10741:12... * +1 72nt, >M01687:476:000000000-LL5F5:1:2115:5806:17548:11... at +/95.83% +>Cluster 270 +0 73nt, >M01687:476:000000000-LL5F5:1:2113:24676:19715:1... at +/98.63% +1 77nt, >M01687:476:000000000-LL5F5:1:1110:2840:11332:1... * +>Cluster 271 +0 77nt, >M01687:476:000000000-LL5F5:1:1101:22427:18465:4... * +1 76nt, >M01687:476:000000000-LL5F5:1:2110:19027:6074:1... at +/100.00% +>Cluster 272 +0 95nt, >M01687:476:000000000-LL5F5:1:2114:8020:19436:1... at +/97.89% +1 121nt, >M01687:476:000000000-LL5F5:1:2105:24501:16558:1... * +>Cluster 273 +0 28nt, >M01687:476:000000000-LL5F5:1:2115:3253:13095:8... at +/100.00% +1 37nt, >M01687:476:000000000-LL5F5:1:2111:13950:10391:1... * +>Cluster 274 +0 33nt, >M01687:476:000000000-LL5F5:1:2114:21574:1326:1... at +/96.97% +1 44nt, >M01687:476:000000000-LL5F5:1:1112:2666:10348:1... * +>Cluster 275 +0 39nt, >M01687:476:000000000-LL5F5:1:1102:9329:19819:1... * +1 34nt, >M01687:476:000000000-LL5F5:1:1109:12355:7000:1... at +/100.00% +>Cluster 276 +0 45nt, >M01687:476:000000000-LL5F5:1:2112:15670:15726:1... at +/100.00% +1 46nt, >M01687:476:000000000-LL5F5:1:2110:24505:21689:1... * +>Cluster 277 +0 47nt, >M01687:476:000000000-LL5F5:1:1110:10181:11020:1... * +1 44nt, >M01687:476:000000000-LL5F5:1:2119:9811:2118:1... at +/100.00% +>Cluster 278 +0 33nt, >M01687:476:000000000-LL5F5:1:2113:19838:1350:1... at +/100.00% +1 44nt, >M01687:476:000000000-LL5F5:1:1110:8693:16673:1... * +>Cluster 279 +0 22nt, >M01687:476:000000000-LL5F5:1:1102:17024:4185:1... * +1 17nt, >M01687:476:000000000-LL5F5:1:1109:21754:10000:1... at +/100.00% +>Cluster 280 +0 107nt, >M01687:476:000000000-LL5F5:1:1112:11303:21752:1... * +1 99nt, >M01687:476:000000000-LL5F5:1:1108:9933:22819:1... at +/100.00% +>Cluster 281 +0 45nt, >M01687:476:000000000-LL5F5:1:2111:8590:2153:1... * +1 39nt, >M01687:476:000000000-LL5F5:1:1111:2366:15505:1... at +/97.44% +>Cluster 282 +0 98nt, >M01687:476:000000000-LL5F5:1:2113:8980:5171:1... * +1 98nt, >M01687:476:000000000-LL5F5:1:2119:16922:9729:1... at +/98.98% +>Cluster 283 +0 108nt, >M01687:476:000000000-LL5F5:1:1119:22764:15952:1... * +1 108nt, >M01687:476:000000000-LL5F5:1:1115:9076:8398:4... at +/99.07% +>Cluster 284 +0 29nt, >M01687:476:000000000-LL5F5:1:2113:12199:16499:6... at +/100.00% +1 38nt, >M01687:476:000000000-LL5F5:1:2112:20650:5865:1... * +>Cluster 285 +0 16nt, >M01687:476:000000000-LL5F5:1:2116:25653:18706:1... at +/100.00% +1 21nt, >M01687:476:000000000-LL5F5:1:1107:18171:9588:1... * +>Cluster 286 +0 42nt, >M01687:476:000000000-LL5F5:1:1102:8826:20965:1... * +1 33nt, >M01687:476:000000000-LL5F5:1:2112:16815:1256:2... at +/96.97% +>Cluster 287 +0 79nt, >M01687:476:000000000-LL5F5:1:1101:5360:6137:8... * +1 79nt, >M01687:476:000000000-LL5F5:1:2115:16824:22470:16... at +/96.20% +>Cluster 288 +0 26nt, >M01687:476:000000000-LL5F5:1:2112:28232:13784:1... * +1 25nt, >M01687:476:000000000-LL5F5:1:1112:22140:21171:1... at +/96.00% +>Cluster 289 +0 50nt, >M01687:476:000000000-LL5F5:1:2115:17139:17488:1... * +1 50nt, >M01687:476:000000000-LL5F5:1:2114:15340:4211:4... at +/96.00% +>Cluster 290 +0 82nt, >M01687:476:000000000-LL5F5:1:2115:16939:13875:7... * +1 82nt, >M01687:476:000000000-LL5F5:1:2106:8180:16453:1... at +/98.78% +>Cluster 291 +0 84nt, >M01687:476:000000000-LL5F5:1:2107:27080:8295:1... * +1 79nt, >M01687:476:000000000-LL5F5:1:2117:25046:7356:1... at +/96.20% +>Cluster 292 +0 49nt, >M01687:476:000000000-LL5F5:1:2114:26395:18665:3... * +1 49nt, >M01687:476:000000000-LL5F5:1:1116:4125:19565:1... at +/95.92% +>Cluster 293 +0 44nt, >M01687:476:000000000-LL5F5:1:2107:12588:15026:1... at +/100.00% +1 50nt, >M01687:476:000000000-LL5F5:1:1107:27073:10416:1... * +>Cluster 294 +0 30nt, >M01687:476:000000000-LL5F5:1:2116:13044:21525:1... at +/96.67% +1 38nt, >M01687:476:000000000-LL5F5:1:2116:14397:24071:1... * +>Cluster 295 +0 68nt, >M01687:476:000000000-LL5F5:1:2115:2747:13497:13... * +1 65nt, >M01687:476:000000000-LL5F5:1:2117:22620:13132:1... at +/100.00% +>Cluster 296 +0 48nt, >M01687:476:000000000-LL5F5:1:1102:22032:7347:2... at +/100.00% +1 62nt, >M01687:476:000000000-LL5F5:1:1112:11066:18679:1... * +>Cluster 297 +0 65nt, >M01687:476:000000000-LL5F5:1:1116:11759:11641:1... * +1 65nt, >M01687:476:000000000-LL5F5:1:1118:22734:14045:1... at +/98.46% +>Cluster 298 +0 33nt, >M01687:476:000000000-LL5F5:1:2113:19217:14120:1... at +/96.97% +1 41nt, >M01687:476:000000000-LL5F5:1:1103:19569:24524:1... * +>Cluster 299 +0 36nt, >M01687:476:000000000-LL5F5:1:1104:13867:19942:1... * +1 27nt, >M01687:476:000000000-LL5F5:1:2118:26050:17228:1... at +/100.00% +>Cluster 300 +0 27nt, >M01687:476:000000000-LL5F5:1:2108:27372:6586:1... at +/96.30% +1 36nt, >M01687:476:000000000-LL5F5:1:1112:15741:22555:1... * +>Cluster 301 +0 66nt, >M01687:476:000000000-LL5F5:1:2116:8265:2171:1... * +1 59nt, >M01687:476:000000000-LL5F5:1:1112:14423:3504:1... at +/100.00% +>Cluster 302 +0 30nt, >M01687:476:000000000-LL5F5:1:2117:25782:18790:2... at +/100.00% +1 40nt, >M01687:476:000000000-LL5F5:1:1104:25351:11463:1... * +>Cluster 303 +0 27nt, >M01687:476:000000000-LL5F5:1:2113:25523:14287:1... at +/100.00% +1 31nt, >M01687:476:000000000-LL5F5:1:1109:17802:17286:1... * +>Cluster 304 +0 33nt, >M01687:476:000000000-LL5F5:1:1115:14085:5819:1... at +/100.00% +1 35nt, >M01687:476:000000000-LL5F5:1:1112:11707:20224:1... * +>Cluster 305 +0 61nt, >M01687:476:000000000-LL5F5:1:2115:10984:9125:1... * +1 61nt, >M01687:476:000000000-LL5F5:1:2116:12981:6183:4... at +/98.36% +>Cluster 306 +0 57nt, >M01687:476:000000000-LL5F5:1:1101:14483:6842:10... * +1 57nt, >M01687:476:000000000-LL5F5:1:1110:19711:11689:1... at +/98.25% +>Cluster 307 +0 58nt, >M01687:476:000000000-LL5F5:1:2110:19084:6213:1... * +1 58nt, >M01687:476:000000000-LL5F5:1:1112:12833:21235:1... at +/98.28% +>Cluster 308 +0 61nt, >M01687:476:000000000-LL5F5:1:2110:15782:5468:3... at +/95.08% +1 62nt, >M01687:476:000000000-LL5F5:1:2110:22001:10210:7... * +>Cluster 309 +0 30nt, >M01687:476:000000000-LL5F5:1:2105:2574:12233:2... at +/96.67% +1 40nt, >M01687:476:000000000-LL5F5:1:1108:5650:7076:1... * +>Cluster 310 +0 157nt, >M01687:476:000000000-LL5F5:1:1102:12178:12181:7... * +1 156nt, >M01687:476:000000000-LL5F5:1:2107:13588:23541:1... at +/100.00% +>Cluster 311 +0 59nt, >M01687:476:000000000-LL5F5:1:2116:16245:6944:3... * +1 59nt, >M01687:476:000000000-LL5F5:1:2118:18022:14918:1... at +/98.31% +>Cluster 312 +0 33nt, >M01687:476:000000000-LL5F5:1:2112:16677:1321:1... * +1 25nt, >M01687:476:000000000-LL5F5:1:2111:27708:16764:1... at +/96.00% +>Cluster 313 +0 33nt, >M01687:476:000000000-LL5F5:1:2111:15541:16782:2... * +1 31nt, >M01687:476:000000000-LL5F5:1:1105:22742:11445:1... at +/96.77% +>Cluster 314 +0 63nt, >M01687:476:000000000-LL5F5:1:1102:14108:4091:8... * +1 58nt, >M01687:476:000000000-LL5F5:1:1109:6388:21818:1... at +/100.00% +>Cluster 315 +0 40nt, >M01687:476:000000000-LL5F5:1:2109:14848:2639:1... * +1 32nt, >M01687:476:000000000-LL5F5:1:2106:10419:14519:1... at +/100.00% +>Cluster 316 +0 62nt, >M01687:476:000000000-LL5F5:1:2105:25321:17939:1... * +1 62nt, >M01687:476:000000000-LL5F5:1:1115:13739:4253:1... at +/98.39% +>Cluster 317 +0 30nt, >M01687:476:000000000-LL5F5:1:2112:8080:15284:1... at +/100.00% +1 37nt, >M01687:476:000000000-LL5F5:1:1107:14445:12932:1... * +>Cluster 318 +0 60nt, >M01687:476:000000000-LL5F5:1:2110:28164:18302:6... * +1 60nt, >M01687:476:000000000-LL5F5:1:2104:15784:21434:1... at +/98.33% +>Cluster 319 +0 145nt, >M01687:476:000000000-LL5F5:1:2112:7194:7285:5... * +1 145nt, >M01687:476:000000000-LL5F5:1:1105:24278:15098:1... at +/99.31% +>Cluster 320 +0 66nt, >M01687:476:000000000-LL5F5:1:1102:4812:14257:11... * +1 66nt, >M01687:476:000000000-LL5F5:1:1115:20922:20299:1... at +/96.97% +>Cluster 321 +0 60nt, >M01687:476:000000000-LL5F5:1:2116:10528:6592:1... * +1 55nt, >M01687:476:000000000-LL5F5:1:1107:19402:2108:1... at +/100.00% +>Cluster 322 +0 67nt, >M01687:476:000000000-LL5F5:1:2115:4985:15263:9... * +1 66nt, >M01687:476:000000000-LL5F5:1:2106:23779:4713:1... at +/95.45% +>Cluster 323 +0 55nt, >M01687:476:000000000-LL5F5:1:2114:20941:24062:2... * +1 54nt, >M01687:476:000000000-LL5F5:1:2102:7848:7742:1... at +/100.00% +>Cluster 324 +0 67nt, >M01687:476:000000000-LL5F5:1:2110:14633:9997:1... * +1 63nt, >M01687:476:000000000-LL5F5:1:1114:22361:1319:1... at +/100.00% +>Cluster 325 +0 32nt, >M01687:476:000000000-LL5F5:1:2102:8329:17960:1... at +/96.88% +1 37nt, >M01687:476:000000000-LL5F5:1:1108:25515:17912:1... * +>Cluster 326 +0 66nt, >M01687:476:000000000-LL5F5:1:2111:10715:15382:8... at +/100.00% +1 67nt, >M01687:476:000000000-LL5F5:1:2117:15914:19603:1... * +>Cluster 327 +0 56nt, >M01687:476:000000000-LL5F5:1:2113:16269:11576:2... * +1 52nt, >M01687:476:000000000-LL5F5:1:1113:9438:24334:1... at +/100.00% +>Cluster 328 +0 56nt, >M01687:476:000000000-LL5F5:1:2110:25177:6430:1... * +1 56nt, >M01687:476:000000000-LL5F5:1:1117:14790:24597:1... at +/98.21% +>Cluster 329 +0 66nt, >M01687:476:000000000-LL5F5:1:2109:11643:19743:2... * +1 65nt, >M01687:476:000000000-LL5F5:1:1104:18723:13998:1... at +/100.00% +>Cluster 330 +0 55nt, >M01687:476:000000000-LL5F5:1:2111:19750:20777:1... * +1 55nt, >M01687:476:000000000-LL5F5:1:2109:21295:18973:5... at +/96.36% +>Cluster 331 +0 30nt, >M01687:476:000000000-LL5F5:1:2109:16355:18746:2... * +1 25nt, >M01687:476:000000000-LL5F5:1:1111:20065:23813:1... at +/100.00% +>Cluster 332 +0 56nt, >M01687:476:000000000-LL5F5:1:1119:26546:22045:3... * +1 56nt, >M01687:476:000000000-LL5F5:1:1103:5433:12382:2... at +/96.43% +>Cluster 333 +0 66nt, >M01687:476:000000000-LL5F5:1:2114:16549:10691:1... * +1 66nt, >M01687:476:000000000-LL5F5:1:2112:6017:19497:3... at +/98.48% +>Cluster 334 +0 56nt, >M01687:476:000000000-LL5F5:1:2103:6634:6221:1... * +1 46nt, >M01687:476:000000000-LL5F5:1:2116:7691:8631:1... at +/100.00% +>Cluster 335 +0 126nt, >M01687:476:000000000-LL5F5:1:2110:6419:13872:3... * +1 126nt, >M01687:476:000000000-LL5F5:1:1108:16916:24331:1... at +/99.21% +>Cluster 336 +0 56nt, >M01687:476:000000000-LL5F5:1:2102:17594:13963:1... * +1 56nt, >M01687:476:000000000-LL5F5:1:2116:15253:23949:3... at +/98.21% +>Cluster 337 +0 16nt, >M01687:476:000000000-LL5F5:1:1106:8346:14164:1... * +>Cluster 338 +0 16nt, >M01687:476:000000000-LL5F5:1:2115:8732:21966:1... * +>Cluster 339 +0 22nt, >M01687:476:000000000-LL5F5:1:1109:21639:4047:1... * +>Cluster 340 +0 18nt, >M01687:476:000000000-LL5F5:1:2102:29145:17094:1... * +>Cluster 341 +0 18nt, >M01687:476:000000000-LL5F5:1:2118:3167:18634:1... * +>Cluster 342 +0 18nt, >M01687:476:000000000-LL5F5:1:2108:22292:20727:1... * +>Cluster 343 +0 20nt, >M01687:476:000000000-LL5F5:1:1107:12663:10375:1... * +>Cluster 344 +0 19nt, >M01687:476:000000000-LL5F5:1:1102:11999:13270:1... * +>Cluster 345 +0 17nt, >M01687:476:000000000-LL5F5:1:1118:20436:19419:1... * +>Cluster 346 +0 21nt, >M01687:476:000000000-LL5F5:1:2106:17445:14606:1... * +>Cluster 347 +0 17nt, >M01687:476:000000000-LL5F5:1:1118:20797:12910:1... * +>Cluster 348 +0 21nt, >M01687:476:000000000-LL5F5:1:1103:20952:14584:1... * +>Cluster 349 +0 40nt, >M01687:476:000000000-LL5F5:1:2119:28001:14625:1... * +>Cluster 350 +0 32nt, >M01687:476:000000000-LL5F5:1:2108:26588:21768:1... * +>Cluster 351 +0 32nt, >M01687:476:000000000-LL5F5:1:2107:29135:9989:1... * +>Cluster 352 +0 36nt, >M01687:476:000000000-LL5F5:1:1119:22121:6164:1... * +>Cluster 353 +0 33nt, >M01687:476:000000000-LL5F5:1:2118:21422:1296:1... * +>Cluster 354 +0 36nt, >M01687:476:000000000-LL5F5:1:2114:24671:13308:1... * +>Cluster 355 +0 30nt, >M01687:476:000000000-LL5F5:1:1111:29550:11577:1... * +>Cluster 356 +0 30nt, >M01687:476:000000000-LL5F5:1:2115:17128:12437:1... * +>Cluster 357 +0 36nt, >M01687:476:000000000-LL5F5:1:2117:13344:4119:2... * +>Cluster 358 +0 33nt, >M01687:476:000000000-LL5F5:1:1107:29669:13095:1... * +>Cluster 359 +0 35nt, >M01687:476:000000000-LL5F5:1:2117:7121:2994:1... * +>Cluster 360 +0 35nt, >M01687:476:000000000-LL5F5:1:2107:14099:2896:1... * +>Cluster 361 +0 34nt, >M01687:476:000000000-LL5F5:1:1107:8785:7994:1... * +>Cluster 362 +0 35nt, >M01687:476:000000000-LL5F5:1:1110:26741:16904:1... * +>Cluster 363 +0 33nt, >M01687:476:000000000-LL5F5:1:2115:20650:1700:1... * +>Cluster 364 +0 33nt, >M01687:476:000000000-LL5F5:1:2113:7200:23673:1... * +>Cluster 365 +0 35nt, >M01687:476:000000000-LL5F5:1:2109:16808:22212:1... * +>Cluster 366 +0 34nt, >M01687:476:000000000-LL5F5:1:1118:5626:6516:1... * +>Cluster 367 +0 29nt, >M01687:476:000000000-LL5F5:1:1113:27629:8176:1... * +>Cluster 368 +0 25nt, >M01687:476:000000000-LL5F5:1:1117:20748:20388:1... * +>Cluster 369 +0 38nt, >M01687:476:000000000-LL5F5:1:2114:19690:16400:1... * +>Cluster 370 +0 25nt, >M01687:476:000000000-LL5F5:1:1113:20993:11073:1... * +>Cluster 371 +0 25nt, >M01687:476:000000000-LL5F5:1:1109:28099:9743:1... * +>Cluster 372 +0 23nt, >M01687:476:000000000-LL5F5:1:2116:17493:24644:1... * +>Cluster 373 +0 23nt, >M01687:476:000000000-LL5F5:1:1104:19589:21712:1... * +>Cluster 374 +0 24nt, >M01687:476:000000000-LL5F5:1:2113:12476:8984:1... * +>Cluster 375 +0 24nt, >M01687:476:000000000-LL5F5:1:2106:28441:8674:1... * +>Cluster 376 +0 38nt, >M01687:476:000000000-LL5F5:1:2113:12638:24920:1... * +>Cluster 377 +0 37nt, >M01687:476:000000000-LL5F5:1:2115:20929:15328:1... * +>Cluster 378 +0 38nt, >M01687:476:000000000-LL5F5:1:2118:5479:7255:1... * +>Cluster 379 +0 37nt, >M01687:476:000000000-LL5F5:1:2110:19112:15977:1... * +>Cluster 380 +0 37nt, >M01687:476:000000000-LL5F5:1:2111:16693:21883:1... * +>Cluster 381 +0 26nt, >M01687:476:000000000-LL5F5:1:1111:11457:22178:1... * +>Cluster 382 +0 26nt, >M01687:476:000000000-LL5F5:1:1105:27808:14451:1... * +>Cluster 383 +0 27nt, >M01687:476:000000000-LL5F5:1:1108:28492:13761:1... * +>Cluster 384 +0 26nt, >M01687:476:000000000-LL5F5:1:1112:10594:12783:1... * +>Cluster 385 +0 75nt, >M01687:476:000000000-LL5F5:1:1117:16945:22998:1... * +>Cluster 386 +0 73nt, >M01687:476:000000000-LL5F5:1:1116:16486:18014:6... * +>Cluster 387 +0 75nt, >M01687:476:000000000-LL5F5:1:2111:15485:22511:3... * +>Cluster 388 +0 75nt, >M01687:476:000000000-LL5F5:1:1111:27847:19299:1... * +>Cluster 389 +0 68nt, >M01687:476:000000000-LL5F5:1:2113:5415:18944:4... * +>Cluster 390 +0 68nt, >M01687:476:000000000-LL5F5:1:1106:11485:5202:1... * +>Cluster 391 +0 70nt, >M01687:476:000000000-LL5F5:1:2113:20140:17845:2... * +>Cluster 392 +0 69nt, >M01687:476:000000000-LL5F5:1:2106:9542:24640:1... * +>Cluster 393 +0 78nt, >M01687:476:000000000-LL5F5:1:2107:18405:3254:4... * +>Cluster 394 +0 78nt, >M01687:476:000000000-LL5F5:1:2105:10658:8728:2... * +>Cluster 395 +0 79nt, >M01687:476:000000000-LL5F5:1:1111:24916:9507:1... * +>Cluster 396 +0 78nt, >M01687:476:000000000-LL5F5:1:2110:2724:9722:1... * +>Cluster 397 +0 76nt, >M01687:476:000000000-LL5F5:1:1108:15057:4313:1... * +>Cluster 398 +0 75nt, >M01687:476:000000000-LL5F5:1:1102:11584:14411:1... * +>Cluster 399 +0 76nt, >M01687:476:000000000-LL5F5:1:2107:27100:9913:2... * +>Cluster 400 +0 76nt, >M01687:476:000000000-LL5F5:1:2117:6884:8079:1... * +>Cluster 401 +0 67nt, >M01687:476:000000000-LL5F5:1:1111:18454:4779:1... * +>Cluster 402 +0 65nt, >M01687:476:000000000-LL5F5:1:2108:11716:22927:2... * +>Cluster 403 +0 65nt, >M01687:476:000000000-LL5F5:1:2104:20449:11233:2... * +>Cluster 404 +0 66nt, >M01687:476:000000000-LL5F5:1:2119:28121:16070:1... * +>Cluster 405 +0 65nt, >M01687:476:000000000-LL5F5:1:1102:4131:9799:9... * +>Cluster 406 +0 65nt, >M01687:476:000000000-LL5F5:1:1114:22679:17674:1... * +>Cluster 407 +0 65nt, >M01687:476:000000000-LL5F5:1:1113:22181:12999:1... * +>Cluster 408 +0 65nt, >M01687:476:000000000-LL5F5:1:2103:14669:8093:1... * +>Cluster 409 +0 65nt, >M01687:476:000000000-LL5F5:1:2103:16236:19712:3... * +>Cluster 410 +0 66nt, >M01687:476:000000000-LL5F5:1:2107:21923:13831:2... * +>Cluster 411 +0 66nt, >M01687:476:000000000-LL5F5:1:2105:14175:13555:1... * +>Cluster 412 +0 67nt, >M01687:476:000000000-LL5F5:1:1108:6232:18794:1... * +>Cluster 413 +0 66nt, >M01687:476:000000000-LL5F5:1:2109:21225:10278:4... * +>Cluster 414 +0 66nt, >M01687:476:000000000-LL5F5:1:1112:7955:10194:1... * +>Cluster 415 +0 66nt, >M01687:476:000000000-LL5F5:1:1107:12634:8034:1... * +>Cluster 416 +0 66nt, >M01687:476:000000000-LL5F5:1:2102:25055:16195:2... * +>Cluster 417 +0 66nt, >M01687:476:000000000-LL5F5:1:2101:7167:3311:1... * +>Cluster 418 +0 80nt, >M01687:476:000000000-LL5F5:1:2108:22260:6733:3... * +>Cluster 419 +0 124nt, >M01687:476:000000000-LL5F5:1:2114:11479:20437:1... * +>Cluster 420 +0 124nt, >M01687:476:000000000-LL5F5:1:2109:22688:21304:1... * +>Cluster 421 +0 129nt, >M01687:476:000000000-LL5F5:1:1109:16147:22847:1... * +>Cluster 422 +0 126nt, >M01687:476:000000000-LL5F5:1:2118:9220:10993:1... * +>Cluster 423 +0 112nt, >M01687:476:000000000-LL5F5:1:2103:3164:11639:1... * +>Cluster 424 +0 108nt, >M01687:476:000000000-LL5F5:1:2110:7086:21470:6... * +>Cluster 425 +0 118nt, >M01687:476:000000000-LL5F5:1:1111:9232:12765:1... * +>Cluster 426 +0 115nt, >M01687:476:000000000-LL5F5:1:2107:7785:1729:1... * +>Cluster 427 +0 149nt, >M01687:476:000000000-LL5F5:1:2106:26696:12896:1... * +>Cluster 428 +0 149nt, >M01687:476:000000000-LL5F5:1:1119:12375:5830:1... * +>Cluster 429 +0 170nt, >M01687:476:000000000-LL5F5:1:1105:6845:20675:1... * +>Cluster 430 +0 165nt, >M01687:476:000000000-LL5F5:1:2115:26263:18647:6... * +>Cluster 431 +0 146nt, >M01687:476:000000000-LL5F5:1:1115:16406:21641:1... * +>Cluster 432 +0 130nt, >M01687:476:000000000-LL5F5:1:2115:17771:19894:1... * +>Cluster 433 +0 148nt, >M01687:476:000000000-LL5F5:1:1104:23472:14290:1... * +>Cluster 434 +0 147nt, >M01687:476:000000000-LL5F5:1:2108:23121:19766:1... * +>Cluster 435 +0 107nt, >M01687:476:000000000-LL5F5:1:2106:14584:21809:3... * +>Cluster 436 +0 90nt, >M01687:476:000000000-LL5F5:1:1117:14465:11550:1... * +>Cluster 437 +0 87nt, >M01687:476:000000000-LL5F5:1:2111:22483:9600:1... * +>Cluster 438 +0 91nt, >M01687:476:000000000-LL5F5:1:1104:21859:20748:1... * +>Cluster 439 +0 90nt, >M01687:476:000000000-LL5F5:1:2115:22669:1865:1... * +>Cluster 440 +0 80nt, >M01687:476:000000000-LL5F5:1:1101:24182:5935:1... * +>Cluster 441 +0 80nt, >M01687:476:000000000-LL5F5:1:2111:6297:4721:1... * +>Cluster 442 +0 84nt, >M01687:476:000000000-LL5F5:1:1102:20957:2350:1... * +>Cluster 443 +0 82nt, >M01687:476:000000000-LL5F5:1:2111:6690:5661:1... * +>Cluster 444 +0 100nt, >M01687:476:000000000-LL5F5:1:1102:2534:12632:3... * +>Cluster 445 +0 100nt, >M01687:476:000000000-LL5F5:1:2113:3281:13493:2... * +>Cluster 446 +0 102nt, >M01687:476:000000000-LL5F5:1:2112:24012:22032:1... * +>Cluster 447 +0 102nt, >M01687:476:000000000-LL5F5:1:1104:23490:14298:1... * +>Cluster 448 +0 94nt, >M01687:476:000000000-LL5F5:1:2113:11746:7142:2... * +>Cluster 449 +0 94nt, >M01687:476:000000000-LL5F5:1:1104:15017:24441:1... * +>Cluster 450 +0 100nt, >M01687:476:000000000-LL5F5:1:1115:15621:11837:1... * +>Cluster 451 +0 96nt, >M01687:476:000000000-LL5F5:1:2117:12275:22196:1... * +>Cluster 452 +0 55nt, >M01687:476:000000000-LL5F5:1:1113:15162:10059:1... * +>Cluster 453 +0 55nt, >M01687:476:000000000-LL5F5:1:1112:13716:9261:1... * +>Cluster 454 +0 55nt, >M01687:476:000000000-LL5F5:1:2105:17519:16105:1... * +>Cluster 455 +0 55nt, >M01687:476:000000000-LL5F5:1:1116:27928:15852:1... * +>Cluster 456 +0 54nt, >M01687:476:000000000-LL5F5:1:2101:15257:8822:2... * +>Cluster 457 +0 54nt, >M01687:476:000000000-LL5F5:1:1115:22117:6229:1... * +>Cluster 458 +0 55nt, >M01687:476:000000000-LL5F5:1:1107:3079:17197:1... * +>Cluster 459 +0 54nt, >M01687:476:000000000-LL5F5:1:2116:19112:10153:1... * +>Cluster 460 +0 56nt, >M01687:476:000000000-LL5F5:1:1108:15672:24257:1... * +>Cluster 461 +0 56nt, >M01687:476:000000000-LL5F5:1:1103:18828:13287:1... * +>Cluster 462 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:23859:22524:2... * +>Cluster 463 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:23379:24054:4... * +>Cluster 464 +0 55nt, >M01687:476:000000000-LL5F5:1:2112:17663:17945:5... * +>Cluster 465 +0 55nt, >M01687:476:000000000-LL5F5:1:2106:20382:21345:1... * +>Cluster 466 +0 56nt, >M01687:476:000000000-LL5F5:1:1103:27414:18460:1... * +>Cluster 467 +0 56nt, >M01687:476:000000000-LL5F5:1:2119:15472:8326:1... * +>Cluster 468 +0 54nt, >M01687:476:000000000-LL5F5:1:1103:18531:2774:1... * +>Cluster 469 +0 44nt, >M01687:476:000000000-LL5F5:1:2109:5368:20522:1... * +>Cluster 470 +0 44nt, >M01687:476:000000000-LL5F5:1:2103:19766:10471:1... * +>Cluster 471 +0 45nt, >M01687:476:000000000-LL5F5:1:1107:26016:21462:1... * +>Cluster 472 +0 45nt, >M01687:476:000000000-LL5F5:1:2119:8301:5066:1... * +>Cluster 473 +0 41nt, >M01687:476:000000000-LL5F5:1:1109:17965:8702:1... * +>Cluster 474 +0 40nt, >M01687:476:000000000-LL5F5:1:1101:12969:20831:1... * +>Cluster 475 +0 42nt, >M01687:476:000000000-LL5F5:1:2106:3959:19121:1... * +>Cluster 476 +0 41nt, >M01687:476:000000000-LL5F5:1:1110:17614:1821:1... * +>Cluster 477 +0 50nt, >M01687:476:000000000-LL5F5:1:1113:4813:12936:1... * +>Cluster 478 +0 50nt, >M01687:476:000000000-LL5F5:1:1104:14798:10546:1... * +>Cluster 479 +0 53nt, >M01687:476:000000000-LL5F5:1:2104:28107:11453:1... * +>Cluster 480 +0 51nt, >M01687:476:000000000-LL5F5:1:2117:7786:19971:1... * +>Cluster 481 +0 46nt, >M01687:476:000000000-LL5F5:1:1115:18207:1561:1... * +>Cluster 482 +0 45nt, >M01687:476:000000000-LL5F5:1:2115:24299:21956:1... * +>Cluster 483 +0 49nt, >M01687:476:000000000-LL5F5:1:1115:15877:14964:1... * +>Cluster 484 +0 48nt, >M01687:476:000000000-LL5F5:1:2110:11857:9899:1... * +>Cluster 485 +0 57nt, >M01687:476:000000000-LL5F5:1:1118:23494:11044:1... * +>Cluster 486 +0 62nt, >M01687:476:000000000-LL5F5:1:2111:18032:2598:2... * +>Cluster 487 +0 62nt, >M01687:476:000000000-LL5F5:1:2111:25302:3500:3... * +>Cluster 488 +0 62nt, >M01687:476:000000000-LL5F5:1:1102:8197:11322:1... * +>Cluster 489 +0 62nt, >M01687:476:000000000-LL5F5:1:1101:26353:4793:2... * +>Cluster 490 +0 61nt, >M01687:476:000000000-LL5F5:1:1101:23786:13000:5... * +>Cluster 491 +0 61nt, >M01687:476:000000000-LL5F5:1:1107:11691:13515:1... * +>Cluster 492 +0 62nt, >M01687:476:000000000-LL5F5:1:2109:20429:7004:1... * +>Cluster 493 +0 62nt, >M01687:476:000000000-LL5F5:1:2107:5137:17417:5... * +>Cluster 494 +0 64nt, >M01687:476:000000000-LL5F5:1:2105:25595:19999:2... * +>Cluster 495 +0 64nt, >M01687:476:000000000-LL5F5:1:2101:14104:9551:1... * +>Cluster 496 +0 65nt, >M01687:476:000000000-LL5F5:1:1110:12526:6585:1... * +>Cluster 497 +0 64nt, >M01687:476:000000000-LL5F5:1:2114:14742:6677:1... * +>Cluster 498 +0 63nt, >M01687:476:000000000-LL5F5:1:1101:25485:22437:1... * +>Cluster 499 +0 63nt, >M01687:476:000000000-LL5F5:1:1117:16163:4572:1... * +>Cluster 500 +0 64nt, >M01687:476:000000000-LL5F5:1:1116:19244:23342:1... * +>Cluster 501 +0 64nt, >M01687:476:000000000-LL5F5:1:1108:19646:14682:1... * +>Cluster 502 +0 61nt, >M01687:476:000000000-LL5F5:1:1103:9065:16041:1... * +>Cluster 503 +0 57nt, >M01687:476:000000000-LL5F5:1:1102:8305:12597:1... * +>Cluster 504 +0 57nt, >M01687:476:000000000-LL5F5:1:1102:2258:13965:1... * +>Cluster 505 +0 59nt, >M01687:476:000000000-LL5F5:1:2103:27687:20311:1... * +>Cluster 506 +0 58nt, >M01687:476:000000000-LL5F5:1:1113:10397:8827:1... * +>Cluster 507 +0 57nt, >M01687:476:000000000-LL5F5:1:1110:3216:10623:1... * +>Cluster 508 +0 57nt, >M01687:476:000000000-LL5F5:1:1106:13059:4373:1... * +>Cluster 509 +0 57nt, >M01687:476:000000000-LL5F5:1:2114:21594:12732:1... * +>Cluster 510 +0 57nt, >M01687:476:000000000-LL5F5:1:2109:16762:21422:3... * +>Cluster 511 +0 60nt, >M01687:476:000000000-LL5F5:1:2101:8835:2007:1... * +>Cluster 512 +0 60nt, >M01687:476:000000000-LL5F5:1:1103:5577:4456:1... * +>Cluster 513 +0 60nt, >M01687:476:000000000-LL5F5:1:2111:4634:5095:5... * +>Cluster 514 +0 60nt, >M01687:476:000000000-LL5F5:1:2102:14168:14163:3... * +>Cluster 515 +0 59nt, >M01687:476:000000000-LL5F5:1:2113:22493:20004:2... * +>Cluster 516 +0 59nt, >M01687:476:000000000-LL5F5:1:2108:25955:21183:1... * +>Cluster 517 +0 59nt, >M01687:476:000000000-LL5F5:1:1102:22455:19018:4... * +>Cluster 518 +0 59nt, >M01687:476:000000000-LL5F5:1:2113:11989:16356:2... *
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/input2_test.clstr.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,5262 @@ +>Cluster 0 +0 357nt, >M01687:476:000000000-LL5F5:1:2113:18579:17490_CONS(1)... * +>Cluster 1 +0 85nt, >M01687:476:000000000-LL5F5:1:1102:21316:1191_CONS(59577)... at 1:85:1:85/+/98.82% +1 85nt, >M01687:476:000000000-LL5F5:1:1102:19793:1302_CONS(106)... at 1:85:1:85/+/97.65% +2 84nt, >M01687:476:000000000-LL5F5:1:1102:18943:1430_CONS(15)... at 1:84:1:85/+/98.81% +3 85nt, >M01687:476:000000000-LL5F5:1:1102:9619:1460_CONS(38)... at 1:85:1:85/+/97.65% +4 85nt, >M01687:476:000000000-LL5F5:1:1102:8280:1614_CONS(1)... at 1:85:1:85/+/97.65% +5 84nt, >M01687:476:000000000-LL5F5:1:1102:23070:1819_CONS(45)... at 1:84:1:85/+/98.81% +6 85nt, >M01687:476:000000000-LL5F5:1:1102:17953:1828_CONS(34)... at 1:85:1:85/+/97.65% +7 85nt, >M01687:476:000000000-LL5F5:1:1102:23751:1925_CONS(63)... at 1:85:1:85/+/97.65% +8 84nt, >M01687:476:000000000-LL5F5:1:1102:19384:1968_CONS(483)... at 1:84:1:85/+/98.81% +9 84nt, >M01687:476:000000000-LL5F5:1:1102:20052:2016_CONS(1)... at 1:84:1:85/+/97.62% +10 85nt, >M01687:476:000000000-LL5F5:1:1102:14773:2086_CONS(11)... at 1:85:1:85/+/97.65% +11 85nt, >M01687:476:000000000-LL5F5:1:1102:20365:2164_CONS(67)... at 1:85:1:85/+/97.65% +12 85nt, >M01687:476:000000000-LL5F5:1:1102:22578:2370_CONS(330)... at 1:85:1:85/+/97.65% +13 84nt, >M01687:476:000000000-LL5F5:1:1102:22516:2548_CONS(18)... at 1:84:1:85/+/98.81% +14 85nt, >M01687:476:000000000-LL5F5:1:1102:11384:2562_CONS(75)... at 1:85:1:85/+/97.65% +15 85nt, >M01687:476:000000000-LL5F5:1:1102:17809:2601_CONS(16)... at 1:85:1:85/+/97.65% +16 85nt, >M01687:476:000000000-LL5F5:1:1102:8127:2897_CONS(156)... at 1:85:1:85/+/97.65% +17 85nt, >M01687:476:000000000-LL5F5:1:1102:11342:3353_CONS(128)... at 1:85:1:85/+/97.65% +18 85nt, >M01687:476:000000000-LL5F5:1:1102:13896:3358_CONS(50)... at 1:85:1:85/+/97.65% +19 85nt, >M01687:476:000000000-LL5F5:1:1102:25197:3364_CONS(21)... at 1:85:1:85/+/98.82% +20 84nt, >M01687:476:000000000-LL5F5:1:1102:5615:3665_CONS(115)... at 1:84:1:85/+/98.81% +21 85nt, >M01687:476:000000000-LL5F5:1:1102:20549:3689_CONS(57)... at 1:85:1:85/+/97.65% +22 85nt, >M01687:476:000000000-LL5F5:1:1102:12968:3831_CONS(48)... at 1:85:1:85/+/97.65% +23 85nt, >M01687:476:000000000-LL5F5:1:1102:14402:3886_CONS(53)... at 1:85:1:85/+/97.65% +24 85nt, >M01687:476:000000000-LL5F5:1:1102:15186:3974_CONS(62)... at 1:85:1:85/+/97.65% +25 85nt, >M01687:476:000000000-LL5F5:1:1102:7468:4003_CONS(29)... at 1:85:1:85/+/97.65% +26 85nt, >M01687:476:000000000-LL5F5:1:1102:24557:4345_CONS(23)... at 1:85:1:85/+/97.65% +27 84nt, >M01687:476:000000000-LL5F5:1:1102:14693:4390_CONS(38)... at 1:84:1:85/+/98.81% +28 85nt, >M01687:476:000000000-LL5F5:1:1102:11744:4547_CONS(8)... at 1:85:1:85/+/97.65% +29 85nt, >M01687:476:000000000-LL5F5:1:1102:5441:4619_CONS(49)... at 1:85:1:85/+/97.65% +30 85nt, >M01687:476:000000000-LL5F5:1:1102:22032:4762_CONS(55)... at 1:85:1:85/+/97.65% +31 84nt, >M01687:476:000000000-LL5F5:1:1102:18845:4875_CONS(52)... at 1:84:2:85/+/97.62% +32 85nt, >M01687:476:000000000-LL5F5:1:1102:7070:5133_CONS(10)... at 1:85:1:85/+/97.65% +33 85nt, >M01687:476:000000000-LL5F5:1:1102:21606:5198_CONS(24)... at 1:85:1:85/+/97.65% +34 85nt, >M01687:476:000000000-LL5F5:1:1102:10358:5330_CONS(69)... at 1:85:1:85/+/97.65% +35 85nt, >M01687:476:000000000-LL5F5:1:1102:25642:5438_CONS(35)... at 1:85:1:85/+/97.65% +36 85nt, >M01687:476:000000000-LL5F5:1:1102:11715:5504_CONS(22)... at 1:85:1:85/+/97.65% +37 85nt, >M01687:476:000000000-LL5F5:1:1102:5395:5680_CONS(88)... at 1:85:1:85/+/97.65% +38 85nt, >M01687:476:000000000-LL5F5:1:1102:22710:5776_CONS(6)... at 1:85:1:85/+/97.65% +39 85nt, >M01687:476:000000000-LL5F5:1:1102:7297:6159_CONS(12)... at 1:85:1:85/+/97.65% +40 85nt, >M01687:476:000000000-LL5F5:1:1102:13228:6271_CONS(6)... at 1:85:1:85/+/97.65% +41 85nt, >M01687:476:000000000-LL5F5:1:1102:9772:6514_CONS(32)... at 1:85:1:85/+/97.65% +42 85nt, >M01687:476:000000000-LL5F5:1:1102:27439:6526_CONS(26)... at 1:85:1:85/+/97.65% +43 85nt, >M01687:476:000000000-LL5F5:1:1102:23093:6622_CONS(47)... at 1:85:1:85/+/97.65% +44 85nt, >M01687:476:000000000-LL5F5:1:1102:22596:6669_CONS(89)... at 1:85:1:85/+/97.65% +45 84nt, >M01687:476:000000000-LL5F5:1:1102:17979:6712_CONS(44)... at 1:84:1:85/+/98.81% +46 84nt, >M01687:476:000000000-LL5F5:1:1102:16517:6741_CONS(1)... at 1:84:1:85/+/97.62% +47 85nt, >M01687:476:000000000-LL5F5:1:1102:15182:6812_CONS(46)... at 1:85:1:85/+/97.65% +48 85nt, >M01687:476:000000000-LL5F5:1:1102:6278:7090_CONS(39)... at 1:85:1:85/+/97.65% +49 85nt, >M01687:476:000000000-LL5F5:1:1102:20761:7141_CONS(26)... at 1:85:1:85/+/97.65% +50 84nt, >M01687:476:000000000-LL5F5:1:1102:6843:7161_CONS(51)... at 1:84:1:84/+/97.62% +51 85nt, >M01687:476:000000000-LL5F5:1:1102:26923:7173_CONS(146)... at 1:85:1:85/+/97.65% +52 48nt, >M01687:476:000000000-LL5F5:1:1102:27401:7196_CONS(3)... at 1:48:1:48/+/100.00% +53 85nt, >M01687:476:000000000-LL5F5:1:1102:7099:7300_CONS(206)... at 1:85:1:85/+/97.65% +54 85nt, >M01687:476:000000000-LL5F5:1:1102:21894:7660_CONS(36)... at 1:85:1:85/+/97.65% +55 85nt, >M01687:476:000000000-LL5F5:1:1102:28563:7775_CONS(28)... at 1:85:1:85/+/97.65% +56 85nt, >M01687:476:000000000-LL5F5:1:1102:18152:7884_CONS(111)... at 1:85:1:85/+/97.65% +57 85nt, >M01687:476:000000000-LL5F5:1:1102:27691:8058_CONS(17)... at 1:85:1:85/+/97.65% +58 85nt, >M01687:476:000000000-LL5F5:1:1102:7162:8211_CONS(71)... at 1:85:1:85/+/97.65% +59 85nt, >M01687:476:000000000-LL5F5:1:1102:18748:8211_CONS(17)... at 1:85:1:85/+/97.65% +60 38nt, >M01687:476:000000000-LL5F5:1:1102:5742:8325_CONS(13)... at 1:38:1:38/+/100.00% +61 85nt, >M01687:476:000000000-LL5F5:1:1102:14112:8528_CONS(16)... at 1:85:1:85/+/97.65% +62 84nt, >M01687:476:000000000-LL5F5:1:1102:21544:8533_CONS(19)... at 1:84:1:85/+/98.81% +63 85nt, >M01687:476:000000000-LL5F5:1:1102:14694:8549_CONS(26)... at 1:85:1:85/+/97.65% +64 84nt, >M01687:476:000000000-LL5F5:1:1102:10177:8591_CONS(2)... at 1:84:1:85/+/97.62% +65 85nt, >M01687:476:000000000-LL5F5:1:1102:12420:8739_CONS(6)... at 1:85:1:85/+/97.65% +66 85nt, >M01687:476:000000000-LL5F5:1:1102:9965:8882_CONS(26)... at 1:85:1:85/+/97.65% +67 85nt, >M01687:476:000000000-LL5F5:1:1102:20882:10041_CONS(7)... at 1:85:1:85/+/97.65% +68 84nt, >M01687:476:000000000-LL5F5:1:1102:16909:10299_CONS(100)... at 1:84:1:84/+/98.81% +69 85nt, >M01687:476:000000000-LL5F5:1:1102:11849:10539_CONS(30)... at 1:85:1:85/+/97.65% +70 85nt, >M01687:476:000000000-LL5F5:1:1102:28049:10722_CONS(65)... at 1:85:1:85/+/97.65% +71 85nt, >M01687:476:000000000-LL5F5:1:1102:4576:10830_CONS(2)... at 1:85:1:85/+/97.65% +72 85nt, >M01687:476:000000000-LL5F5:1:1102:7157:11557_CONS(59)... at 1:85:1:85/+/97.65% +73 84nt, >M01687:476:000000000-LL5F5:1:1102:5187:11612_CONS(21)... at 1:84:1:85/+/98.81% +74 85nt, >M01687:476:000000000-LL5F5:1:1102:21066:11864_CONS(10)... at 1:85:1:85/+/97.65% +75 85nt, >M01687:476:000000000-LL5F5:1:1102:14839:12000_CONS(26)... at 1:85:1:85/+/97.65% +76 85nt, >M01687:476:000000000-LL5F5:1:1102:2220:12478_CONS(72)... at 1:85:1:85/+/97.65% +77 85nt, >M01687:476:000000000-LL5F5:1:1102:9477:12797_CONS(17)... at 1:85:1:85/+/97.65% +78 85nt, >M01687:476:000000000-LL5F5:1:1102:5785:12937_CONS(130)... at 1:85:1:85/+/97.65% +79 39nt, >M01687:476:000000000-LL5F5:1:1102:23247:13566_CONS(20)... at 1:39:1:39/+/100.00% +80 83nt, >M01687:476:000000000-LL5F5:1:1102:11525:13939_CONS(1)... at 1:83:1:85/+/97.59% +81 85nt, >M01687:476:000000000-LL5F5:1:1102:6933:14748_CONS(58)... at 1:85:1:85/+/97.65% +82 85nt, >M01687:476:000000000-LL5F5:1:1102:21576:14816_CONS(35)... at 1:85:1:85/+/97.65% +83 85nt, >M01687:476:000000000-LL5F5:1:1102:24440:14826_CONS(8)... at 1:85:1:85/+/97.65% +84 85nt, >M01687:476:000000000-LL5F5:1:1102:18361:15220_CONS(10)... at 1:85:1:85/+/97.65% +85 85nt, >M01687:476:000000000-LL5F5:1:1102:11652:15259_CONS(82)... at 1:85:1:85/+/97.65% +86 85nt, >M01687:476:000000000-LL5F5:1:1102:4412:15444_CONS(44)... at 1:85:1:85/+/97.65% +87 85nt, >M01687:476:000000000-LL5F5:1:1102:6027:15690_CONS(5)... at 1:85:1:85/+/97.65% +88 85nt, >M01687:476:000000000-LL5F5:1:1102:19923:15796_CONS(5)... at 1:85:1:85/+/97.65% +89 84nt, >M01687:476:000000000-LL5F5:1:1102:14581:16088_CONS(1)... at 1:84:1:85/+/97.62% +90 84nt, >M01687:476:000000000-LL5F5:1:1102:2197:16445_CONS(27)... at 1:84:1:85/+/98.81% +91 85nt, >M01687:476:000000000-LL5F5:1:1102:18622:16450_CONS(114)... at 1:85:1:85/+/97.65% +92 85nt, >M01687:476:000000000-LL5F5:1:1102:11654:16512_CONS(2)... at 1:85:1:85/+/97.65% +93 84nt, >M01687:476:000000000-LL5F5:1:1102:11451:16782_CONS(11)... at 1:84:1:85/+/98.81% +94 84nt, >M01687:476:000000000-LL5F5:1:1102:15295:16805_CONS(1)... at 1:84:1:84/+/97.62% +95 85nt, >M01687:476:000000000-LL5F5:1:1102:15249:16904_CONS(59)... at 1:85:1:85/+/97.65% +96 85nt, >M01687:476:000000000-LL5F5:1:1102:8411:17018_CONS(11)... at 1:85:1:85/+/97.65% +97 84nt, >M01687:476:000000000-LL5F5:1:1102:15825:17057_CONS(4)... at 1:84:1:85/+/98.81% +98 85nt, >M01687:476:000000000-LL5F5:1:1102:26980:17304_CONS(20)... at 1:85:1:85/+/97.65% +99 84nt, >M01687:476:000000000-LL5F5:1:1102:6097:17495_CONS(1)... at 1:84:1:85/+/97.62% +100 84nt, >M01687:476:000000000-LL5F5:1:1102:12536:17571_CONS(1)... at 1:84:1:85/+/97.62% +101 85nt, >M01687:476:000000000-LL5F5:1:1102:12513:17734_CONS(21)... at 1:85:1:85/+/97.65% +102 85nt, >M01687:476:000000000-LL5F5:1:1102:25992:17903_CONS(48)... at 1:85:1:85/+/97.65% +103 84nt, >M01687:476:000000000-LL5F5:1:1102:13457:18314_CONS(45)... at 1:84:1:85/+/98.81% +104 85nt, >M01687:476:000000000-LL5F5:1:1102:4156:18440_CONS(12)... at 1:85:1:85/+/97.65% +105 85nt, >M01687:476:000000000-LL5F5:1:1102:14423:18457_CONS(43)... at 1:85:1:85/+/97.65% +106 85nt, >M01687:476:000000000-LL5F5:1:1102:14979:18483_CONS(47)... at 1:85:1:85/+/97.65% +107 85nt, >M01687:476:000000000-LL5F5:1:1102:6017:18542_CONS(66)... at 1:85:1:85/+/97.65% +108 86nt, >M01687:476:000000000-LL5F5:1:1102:19447:19677_CONS(12)... at 1:86:1:85/+/97.67% +109 85nt, >M01687:476:000000000-LL5F5:1:1102:8233:19687_CONS(59)... at 1:85:1:85/+/97.65% +110 87nt, >M01687:476:000000000-LL5F5:1:1102:4018:20055_CONS(2)... at 1:87:1:85/+/97.70% +111 85nt, >M01687:476:000000000-LL5F5:1:1102:11651:20085_CONS(31)... at 1:85:1:85/+/97.65% +112 84nt, >M01687:476:000000000-LL5F5:1:1102:15700:20247_CONS(1)... at 1:84:1:85/+/97.62% +113 85nt, >M01687:476:000000000-LL5F5:1:1102:21167:20271_CONS(19)... at 1:85:1:85/+/97.65% +114 84nt, >M01687:476:000000000-LL5F5:1:1102:16728:20359_CONS(44)... at 1:84:1:85/+/98.81% +115 85nt, >M01687:476:000000000-LL5F5:1:1102:16769:20507_CONS(82)... at 1:85:1:85/+/97.65% +116 84nt, >M01687:476:000000000-LL5F5:1:1102:8504:20800_CONS(117)... at 1:84:1:85/+/98.81% +117 85nt, >M01687:476:000000000-LL5F5:1:1102:10013:21513_CONS(21)... at 1:85:1:85/+/97.65% +118 85nt, >M01687:476:000000000-LL5F5:1:1102:12730:21790_CONS(8)... at 1:85:1:85/+/97.65% +119 85nt, >M01687:476:000000000-LL5F5:1:1102:20151:21900_CONS(9)... at 1:85:1:85/+/97.65% +120 85nt, >M01687:476:000000000-LL5F5:1:1102:9827:22243_CONS(9)... at 1:85:1:85/+/97.65% +121 85nt, >M01687:476:000000000-LL5F5:1:1102:15106:22585_CONS(44)... at 1:85:1:85/+/97.65% +122 85nt, >M01687:476:000000000-LL5F5:1:1102:12457:23046_CONS(10)... at 1:85:1:85/+/97.65% +123 85nt, >M01687:476:000000000-LL5F5:1:1102:21709:23319_CONS(43)... at 1:85:1:85/+/97.65% +124 85nt, >M01687:476:000000000-LL5F5:1:1102:21009:23618_CONS(10)... at 1:85:1:85/+/97.65% +125 85nt, >M01687:476:000000000-LL5F5:1:1102:12417:23780_CONS(26)... at 1:85:1:85/+/97.65% +126 84nt, >M01687:476:000000000-LL5F5:1:1101:16099:1289_CONS(28)... at 1:84:1:85/+/98.81% +127 85nt, >M01687:476:000000000-LL5F5:1:1101:15396:1553_CONS(31)... at 1:85:1:85/+/97.65% +128 85nt, >M01687:476:000000000-LL5F5:1:1101:15056:1683_CONS(10)... at 1:85:1:85/+/97.65% +129 85nt, >M01687:476:000000000-LL5F5:1:1101:19390:1919_CONS(6)... at 1:85:1:85/+/97.65% +130 84nt, >M01687:476:000000000-LL5F5:1:1101:10534:1958_CONS(107)... at 1:84:2:85/+/98.81% +131 84nt, >M01687:476:000000000-LL5F5:1:1101:16607:2768_CONS(15)... at 1:84:1:85/+/98.81% +132 85nt, >M01687:476:000000000-LL5F5:1:1101:21954:3243_CONS(66)... at 1:85:1:85/+/97.65% +133 85nt, >M01687:476:000000000-LL5F5:1:1101:17545:3386_CONS(56)... at 1:85:1:85/+/97.65% +134 85nt, >M01687:476:000000000-LL5F5:1:1101:19984:3619_CONS(27)... at 1:85:1:85/+/97.65% +135 83nt, >M01687:476:000000000-LL5F5:1:1101:5510:4402_CONS(7)... at 1:83:1:83/+/97.59% +136 85nt, >M01687:476:000000000-LL5F5:1:1101:10973:4785_CONS(13)... at 1:85:1:85/+/97.65% +137 85nt, >M01687:476:000000000-LL5F5:1:1101:17174:4815_CONS(31)... at 1:85:1:85/+/97.65% +138 85nt, >M01687:476:000000000-LL5F5:1:1101:8412:5102_CONS(9)... at 1:85:1:85/+/97.65% +139 85nt, >M01687:476:000000000-LL5F5:1:1101:6030:5557_CONS(12)... at 1:85:1:85/+/97.65% +140 85nt, >M01687:476:000000000-LL5F5:1:1101:27117:6329_CONS(6)... at 1:85:1:85/+/97.65% +141 86nt, >M01687:476:000000000-LL5F5:1:1101:20169:6414_CONS(16)... at 2:86:1:85/+/97.67% +142 85nt, >M01687:476:000000000-LL5F5:1:1101:23972:6429_CONS(25)... at 1:85:1:85/+/97.65% +143 85nt, >M01687:476:000000000-LL5F5:1:1101:24648:6525_CONS(20)... at 1:85:1:85/+/97.65% +144 84nt, >M01687:476:000000000-LL5F5:1:1101:11252:6530_CONS(2)... at 1:84:1:85/+/97.62% +145 85nt, >M01687:476:000000000-LL5F5:1:1101:20812:6558_CONS(40)... at 1:85:1:85/+/97.65% +146 85nt, >M01687:476:000000000-LL5F5:1:1101:15300:6703_CONS(40)... at 1:85:1:85/+/97.65% +147 85nt, >M01687:476:000000000-LL5F5:1:1101:10827:7280_CONS(8)... at 1:85:1:85/+/97.65% +148 85nt, >M01687:476:000000000-LL5F5:1:1101:22455:7682_CONS(18)... at 1:85:1:85/+/97.65% +149 85nt, >M01687:476:000000000-LL5F5:1:1101:23165:7757_CONS(49)... at 1:85:1:85/+/97.65% +150 85nt, >M01687:476:000000000-LL5F5:1:1101:14258:7889_CONS(61)... at 1:85:1:85/+/97.65% +151 85nt, >M01687:476:000000000-LL5F5:1:1101:16959:8108_CONS(62)... at 1:85:1:85/+/97.65% +152 85nt, >M01687:476:000000000-LL5F5:1:1101:27922:8174_CONS(50)... at 1:85:1:85/+/97.65% +153 85nt, >M01687:476:000000000-LL5F5:1:1101:25225:8337_CONS(37)... at 1:85:1:85/+/97.65% +154 84nt, >M01687:476:000000000-LL5F5:1:1101:18091:8424_CONS(21)... at 1:84:1:85/+/98.81% +155 85nt, >M01687:476:000000000-LL5F5:1:1101:24609:8820_CONS(50)... at 1:85:1:85/+/97.65% +156 85nt, >M01687:476:000000000-LL5F5:1:1101:25448:8909_CONS(27)... at 1:85:1:85/+/97.65% +157 85nt, >M01687:476:000000000-LL5F5:1:1101:5580:9765_CONS(3)... at 1:85:1:85/+/97.65% +158 86nt, >M01687:476:000000000-LL5F5:1:1101:27682:10006_CONS(8)... at 1:86:1:85/+/97.67% +159 83nt, >M01687:476:000000000-LL5F5:1:1101:17932:10059_CONS(1)... at 1:83:1:85/+/98.80% +160 85nt, >M01687:476:000000000-LL5F5:1:1101:12125:10882_CONS(23)... at 1:85:1:85/+/97.65% +161 85nt, >M01687:476:000000000-LL5F5:1:1101:14175:11014_CONS(6)... at 1:85:1:85/+/97.65% +162 85nt, >M01687:476:000000000-LL5F5:1:1101:18161:11057_CONS(41)... at 1:85:1:85/+/97.65% +163 85nt, >M01687:476:000000000-LL5F5:1:1101:21963:11432_CONS(12)... at 1:85:1:85/+/97.65% +164 84nt, >M01687:476:000000000-LL5F5:1:1101:13380:11546_CONS(1)... at 1:84:1:85/+/97.62% +165 85nt, >M01687:476:000000000-LL5F5:1:1101:13746:11685_CONS(7)... at 1:85:1:85/+/97.65% +166 85nt, >M01687:476:000000000-LL5F5:1:1101:29220:11825_CONS(1)... at 1:85:1:85/+/97.65% +167 84nt, >M01687:476:000000000-LL5F5:1:1101:4592:11991_CONS(72)... at 1:84:1:85/+/98.81% +168 86nt, >M01687:476:000000000-LL5F5:1:1101:5787:12231_CONS(47)... at 1:86:1:85/+/97.67% +169 85nt, >M01687:476:000000000-LL5F5:1:1101:14046:12334_CONS(12)... at 1:85:1:85/+/97.65% +170 85nt, >M01687:476:000000000-LL5F5:1:1101:15417:12451_CONS(30)... at 1:85:1:85/+/97.65% +171 85nt, >M01687:476:000000000-LL5F5:1:1101:28000:12950_CONS(20)... at 1:85:1:85/+/97.65% +172 85nt, >M01687:476:000000000-LL5F5:1:1101:18869:13173_CONS(19)... at 1:85:1:85/+/97.65% +173 84nt, >M01687:476:000000000-LL5F5:1:1101:27335:13494_CONS(1)... at 1:84:1:85/+/97.62% +174 85nt, >M01687:476:000000000-LL5F5:1:1101:15224:14066_CONS(3)... at 1:85:1:85/+/97.65% +175 85nt, >M01687:476:000000000-LL5F5:1:1101:27613:14269_CONS(5)... at 1:85:1:85/+/97.65% +176 85nt, >M01687:476:000000000-LL5F5:1:1101:3993:15085_CONS(65)... at 1:85:1:85/+/97.65% +177 85nt, >M01687:476:000000000-LL5F5:1:1101:11562:15166_CONS(4)... at 1:85:1:85/+/97.65% +178 84nt, >M01687:476:000000000-LL5F5:1:1101:14507:15292_CONS(1)... at 1:84:1:85/+/97.62% +179 85nt, >M01687:476:000000000-LL5F5:1:1101:28334:15553_CONS(3)... at 1:85:1:85/+/97.65% +180 85nt, >M01687:476:000000000-LL5F5:1:1101:9892:17097_CONS(49)... at 1:85:1:85/+/97.65% +181 86nt, >M01687:476:000000000-LL5F5:1:1101:28493:17466_CONS(1)... at 1:86:1:85/+/97.67% +182 40nt, >M01687:476:000000000-LL5F5:1:1101:18803:17750_CONS(12)... at 1:40:1:40/+/100.00% +183 85nt, >M01687:476:000000000-LL5F5:1:1101:24734:17860_CONS(15)... at 1:85:1:85/+/97.65% +184 85nt, >M01687:476:000000000-LL5F5:1:1101:24497:18083_CONS(5)... at 1:85:1:85/+/97.65% +185 85nt, >M01687:476:000000000-LL5F5:1:1101:7502:18129_CONS(15)... at 1:85:1:85/+/97.65% +186 85nt, >M01687:476:000000000-LL5F5:1:1101:23075:18730_CONS(26)... at 1:85:1:85/+/97.65% +187 85nt, >M01687:476:000000000-LL5F5:1:1101:27171:19522_CONS(28)... at 1:85:1:85/+/97.65% +188 85nt, >M01687:476:000000000-LL5F5:1:1101:7510:20248_CONS(60)... at 1:85:1:85/+/97.65% +189 85nt, >M01687:476:000000000-LL5F5:1:1101:19621:20770_CONS(17)... at 1:85:1:85/+/97.65% +190 85nt, >M01687:476:000000000-LL5F5:1:1101:25926:20939_CONS(16)... at 1:85:1:85/+/97.65% +191 85nt, >M01687:476:000000000-LL5F5:1:1101:24086:22040_CONS(8)... at 1:85:1:85/+/97.65% +192 84nt, >M01687:476:000000000-LL5F5:1:1101:16092:22112_CONS(1)... at 1:84:1:85/+/97.62% +193 85nt, >M01687:476:000000000-LL5F5:1:1101:13895:23357_CONS(26)... at 1:85:1:85/+/97.65% +194 83nt, >M01687:476:000000000-LL5F5:1:1101:19160:24034_CONS(5)... at 1:83:1:83/+/98.80% +195 31nt, >M01687:476:000000000-LL5F5:1:1101:14336:24669_CONS(4)... at 1:31:1:31/+/100.00% +196 85nt, >M01687:476:000000000-LL5F5:1:1101:10699:24692_CONS(7)... at 1:85:1:85/+/97.65% +197 85nt, >M01687:476:000000000-LL5F5:1:2115:11746:1474_CONS(9)... at 1:85:1:85/+/97.65% +198 85nt, >M01687:476:000000000-LL5F5:1:2115:19365:1847_CONS(5)... at 1:85:1:85/+/97.65% +199 85nt, >M01687:476:000000000-LL5F5:1:2115:7888:2344_CONS(18)... at 1:85:1:85/+/97.65% +200 86nt, >M01687:476:000000000-LL5F5:1:2115:14179:3367_CONS(5)... at 1:86:1:85/+/97.67% +201 85nt, >M01687:476:000000000-LL5F5:1:2115:9223:3508_CONS(14)... at 1:85:1:85/+/97.65% +202 48nt, >M01687:476:000000000-LL5F5:1:2115:17811:4528_CONS(2)... at 1:48:1:48/+/97.92% +203 83nt, >M01687:476:000000000-LL5F5:1:2115:11790:4719_CONS(2)... at 1:83:1:84/+/98.80% +204 85nt, >M01687:476:000000000-LL5F5:1:2115:23386:5510_CONS(81)... at 1:85:1:85/+/97.65% +205 85nt, >M01687:476:000000000-LL5F5:1:2115:8709:5591_CONS(13)... at 1:85:1:85/+/97.65% +206 85nt, >M01687:476:000000000-LL5F5:1:2115:20213:6202_CONS(4)... at 1:85:1:85/+/97.65% +207 84nt, >M01687:476:000000000-LL5F5:1:2115:7062:7830_CONS(1)... at 1:84:1:85/+/97.62% +208 52nt, >M01687:476:000000000-LL5F5:1:2115:20722:7983_CONS(1)... at 1:52:1:52/+/100.00% +209 85nt, >M01687:476:000000000-LL5F5:1:2115:25323:8426_CONS(7)... at 1:85:1:85/+/97.65% +210 84nt, >M01687:476:000000000-LL5F5:1:2115:17709:9347_CONS(21)... at 1:84:1:85/+/98.81% +211 85nt, >M01687:476:000000000-LL5F5:1:2115:28148:9501_CONS(42)... at 1:85:1:85/+/97.65% +212 83nt, >M01687:476:000000000-LL5F5:1:2115:21035:9798_CONS(1)... at 1:83:1:85/+/98.80% +213 85nt, >M01687:476:000000000-LL5F5:1:2115:9905:10318_CONS(17)... at 1:85:1:85/+/97.65% +214 85nt, >M01687:476:000000000-LL5F5:1:2115:26389:11144_CONS(8)... at 1:85:1:85/+/97.65% +215 84nt, >M01687:476:000000000-LL5F5:1:2115:8601:11533_CONS(38)... at 1:84:1:85/+/100.00% +216 85nt, >M01687:476:000000000-LL5F5:1:2115:12702:13495_CONS(14)... at 1:85:1:85/+/97.65% +217 85nt, >M01687:476:000000000-LL5F5:1:2115:4968:13645_CONS(43)... at 1:85:1:85/+/97.65% +218 85nt, >M01687:476:000000000-LL5F5:1:2115:13053:13756_CONS(31)... at 1:85:1:85/+/97.65% +219 85nt, >M01687:476:000000000-LL5F5:1:2115:6458:14201_CONS(3)... at 1:85:1:85/+/97.65% +220 84nt, >M01687:476:000000000-LL5F5:1:2115:11983:14208_CONS(47)... at 1:84:1:85/+/98.81% +221 83nt, >M01687:476:000000000-LL5F5:1:2115:21785:14960_CONS(2)... at 1:83:1:85/+/100.00% +222 85nt, >M01687:476:000000000-LL5F5:1:2115:26972:15425_CONS(2)... at 1:85:1:85/+/97.65% +223 85nt, >M01687:476:000000000-LL5F5:1:2115:7791:16256_CONS(28)... at 1:85:1:85/+/97.65% +224 85nt, >M01687:476:000000000-LL5F5:1:2115:7899:17201_CONS(30)... at 1:85:1:85/+/97.65% +225 85nt, >M01687:476:000000000-LL5F5:1:2115:26091:17247_CONS(7)... at 1:85:1:85/+/97.65% +226 85nt, >M01687:476:000000000-LL5F5:1:2115:28097:17761_CONS(8)... at 1:85:1:85/+/97.65% +227 85nt, >M01687:476:000000000-LL5F5:1:2115:13282:18177_CONS(4)... at 1:85:1:85/+/97.65% +228 83nt, >M01687:476:000000000-LL5F5:1:2115:26795:21736_CONS(2)... at 1:83:1:84/+/98.80% +229 85nt, >M01687:476:000000000-LL5F5:1:2115:9986:21980_CONS(18)... at 1:85:1:85/+/97.65% +230 37nt, >M01687:476:000000000-LL5F5:1:2115:16198:22021_CONS(5)... at 1:37:1:37/+/100.00% +231 86nt, >M01687:476:000000000-LL5F5:1:2115:17121:23130_CONS(6)... at 1:86:1:85/+/97.67% +232 85nt, >M01687:476:000000000-LL5F5:1:2114:22781:2852_CONS(7)... at 1:85:1:85/+/97.65% +233 85nt, >M01687:476:000000000-LL5F5:1:2114:17351:3035_CONS(3)... at 1:85:1:85/+/97.65% +234 85nt, >M01687:476:000000000-LL5F5:1:2114:18149:4497_CONS(4)... at 1:85:1:85/+/97.65% +235 85nt, >M01687:476:000000000-LL5F5:1:2114:21985:4539_CONS(10)... at 1:85:1:85/+/97.65% +236 85nt, >M01687:476:000000000-LL5F5:1:2114:24285:4808_CONS(15)... at 1:85:1:85/+/97.65% +237 84nt, >M01687:476:000000000-LL5F5:1:2114:13598:6127_CONS(1)... at 1:84:1:85/+/98.81% +238 84nt, >M01687:476:000000000-LL5F5:1:2114:5986:6562_CONS(5)... at 1:84:1:85/+/98.81% +239 84nt, >M01687:476:000000000-LL5F5:1:2114:28453:7872_CONS(12)... at 1:84:1:85/+/98.81% +240 83nt, >M01687:476:000000000-LL5F5:1:2114:12548:8843_CONS(1)... at 1:83:1:84/+/97.59% +241 85nt, >M01687:476:000000000-LL5F5:1:2114:7120:10095_CONS(1)... at 1:85:1:85/+/97.65% +242 41nt, >M01687:476:000000000-LL5F5:1:2114:7448:11735_CONS(10)... at 1:41:1:41/+/100.00% +243 85nt, >M01687:476:000000000-LL5F5:1:2114:4132:12059_CONS(4)... at 1:85:1:85/+/97.65% +244 85nt, >M01687:476:000000000-LL5F5:1:2114:10017:12144_CONS(7)... at 1:85:1:85/+/97.65% +245 84nt, >M01687:476:000000000-LL5F5:1:2114:11939:16434_CONS(9)... at 1:84:1:85/+/98.81% +246 85nt, >M01687:476:000000000-LL5F5:1:2114:26795:17665_CONS(11)... at 1:85:1:85/+/97.65% +247 85nt, >M01687:476:000000000-LL5F5:1:2114:10622:18410_CONS(25)... at 1:85:1:85/+/97.65% +248 84nt, >M01687:476:000000000-LL5F5:1:2114:7979:19339_CONS(1)... at 1:84:1:85/+/98.81% +249 85nt, >M01687:476:000000000-LL5F5:1:2114:19971:19737_CONS(1)... at 1:85:1:85/+/98.82% +250 86nt, >M01687:476:000000000-LL5F5:1:2114:14214:21011_CONS(5)... at 1:86:1:85/+/97.67% +251 85nt, >M01687:476:000000000-LL5F5:1:2114:22000:22151_CONS(11)... at 1:85:1:85/+/97.65% +252 85nt, >M01687:476:000000000-LL5F5:1:2113:9286:2572_CONS(8)... at 1:85:1:85/+/97.65% +253 84nt, >M01687:476:000000000-LL5F5:1:2113:17691:4435_CONS(3)... at 1:84:1:85/+/97.62% +254 85nt, >M01687:476:000000000-LL5F5:1:2113:25980:5296_CONS(10)... at 1:85:1:85/+/97.65% +255 85nt, >M01687:476:000000000-LL5F5:1:2113:23891:6705_CONS(9)... at 1:85:1:85/+/97.65% +256 89nt, >M01687:476:000000000-LL5F5:1:2113:6423:7888_CONS(1)... at 1:89:1:91/+/97.75% +257 83nt, >M01687:476:000000000-LL5F5:1:2113:8480:8758_CONS(1)... at 1:83:1:84/+/100.00% +258 83nt, >M01687:476:000000000-LL5F5:1:2113:3473:8799_CONS(1)... at 1:83:1:85/+/97.59% +259 85nt, >M01687:476:000000000-LL5F5:1:2113:27178:8852_CONS(39)... at 1:85:1:85/+/97.65% +260 85nt, >M01687:476:000000000-LL5F5:1:2113:3561:10355_CONS(6)... at 1:85:1:85/+/97.65% +261 84nt, >M01687:476:000000000-LL5F5:1:2113:9704:11010_CONS(8)... at 1:84:1:85/+/98.81% +262 86nt, >M01687:476:000000000-LL5F5:1:2113:24378:12213_CONS(6)... at 1:86:1:85/+/97.67% +263 85nt, >M01687:476:000000000-LL5F5:1:2113:26747:13476_CONS(12)... at 1:85:1:85/+/97.65% +264 84nt, >M01687:476:000000000-LL5F5:1:2113:24649:15052_CONS(3)... at 1:84:1:85/+/97.62% +265 85nt, >M01687:476:000000000-LL5F5:1:2113:2231:15697_CONS(5)... at 1:85:1:85/+/97.65% +266 85nt, >M01687:476:000000000-LL5F5:1:2113:20355:18687_CONS(7)... at 1:85:1:85/+/97.65% +267 41nt, >M01687:476:000000000-LL5F5:1:2113:6256:19321_CONS(3)... at 1:41:1:41/+/97.56% +268 84nt, >M01687:476:000000000-LL5F5:1:2113:19105:19502_CONS(13)... at 1:84:1:85/+/98.81% +269 84nt, >M01687:476:000000000-LL5F5:1:2113:7867:20877_CONS(12)... at 1:84:1:85/+/98.81% +270 85nt, >M01687:476:000000000-LL5F5:1:2113:23903:22451_CONS(6)... at 1:85:1:85/+/97.65% +271 84nt, >M01687:476:000000000-LL5F5:1:2113:21334:23932_CONS(1)... at 1:84:1:85/+/97.62% +272 85nt, >M01687:476:000000000-LL5F5:1:2112:16911:4348_CONS(9)... at 1:85:1:85/+/97.65% +273 85nt, >M01687:476:000000000-LL5F5:1:2112:5139:4436_CONS(15)... at 1:85:1:85/+/97.65% +274 51nt, >M01687:476:000000000-LL5F5:1:2112:4199:5489_CONS(1)... at 1:51:1:51/+/98.04% +275 83nt, >M01687:476:000000000-LL5F5:1:2112:15709:5719_CONS(3)... at 1:83:1:85/+/98.80% +276 84nt, >M01687:476:000000000-LL5F5:1:2112:18215:10034_CONS(2)... at 1:84:1:85/+/97.62% +277 84nt, >M01687:476:000000000-LL5F5:1:2112:27522:11700_CONS(2)... at 1:84:1:85/+/97.62% +278 85nt, >M01687:476:000000000-LL5F5:1:2112:20606:11767_CONS(15)... at 1:85:1:85/+/97.65% +279 85nt, >M01687:476:000000000-LL5F5:1:2112:2628:14539_CONS(3)... at 1:85:1:85/+/97.65% +280 85nt, >M01687:476:000000000-LL5F5:1:2112:5255:14982_CONS(25)... at 1:85:1:85/+/97.65% +281 39nt, >M01687:476:000000000-LL5F5:1:2112:12654:16175_CONS(4)... at 1:39:1:39/+/97.44% +282 86nt, >M01687:476:000000000-LL5F5:1:2112:25190:17788_CONS(1)... at 1:86:1:85/+/97.67% +283 85nt, >M01687:476:000000000-LL5F5:1:2112:19131:18337_CONS(9)... at 1:85:1:85/+/98.82% +284 84nt, >M01687:476:000000000-LL5F5:1:2112:20912:18345_CONS(1)... at 1:84:1:85/+/97.62% +285 85nt, >M01687:476:000000000-LL5F5:1:2112:12991:18572_CONS(1)... at 1:85:1:85/+/97.65% +286 85nt, >M01687:476:000000000-LL5F5:1:2112:14002:19673_CONS(5)... at 1:85:1:85/+/97.65% +287 78nt, >M01687:476:000000000-LL5F5:1:2112:11953:21850_CONS(2)... at 1:78:8:85/+/98.72% +288 83nt, >M01687:476:000000000-LL5F5:1:2112:15812:22908_CONS(1)... at 1:83:2:85/+/98.80% +289 47nt, >M01687:476:000000000-LL5F5:1:2112:19846:23674_CONS(2)... at 1:47:1:47/+/100.00% +290 85nt, >M01687:476:000000000-LL5F5:1:2112:24193:24118_CONS(25)... at 1:85:1:85/+/97.65% +291 84nt, >M01687:476:000000000-LL5F5:1:2112:19920:24558_CONS(2)... at 1:84:1:85/+/97.62% +292 83nt, >M01687:476:000000000-LL5F5:1:2111:20110:1877_CONS(2)... at 1:83:1:85/+/98.80% +293 85nt, >M01687:476:000000000-LL5F5:1:2111:17132:1933_CONS(8)... at 1:85:1:85/+/97.65% +294 85nt, >M01687:476:000000000-LL5F5:1:2111:20656:3311_CONS(1)... at 1:85:1:85/+/97.65% +295 85nt, >M01687:476:000000000-LL5F5:1:2111:11501:4272_CONS(10)... at 1:85:1:85/+/97.65% +296 85nt, >M01687:476:000000000-LL5F5:1:2111:26078:5856_CONS(1)... at 1:85:2:85/+/97.65% +297 40nt, >M01687:476:000000000-LL5F5:1:2111:13098:6188_CONS(3)... at 1:40:1:40/+/97.50% +298 85nt, >M01687:476:000000000-LL5F5:1:2111:3692:6189_CONS(7)... at 1:85:1:85/+/97.65% +299 79nt, >M01687:476:000000000-LL5F5:1:2111:9363:6975_CONS(1)... at 1:79:1:79/+/97.47% +300 84nt, >M01687:476:000000000-LL5F5:1:2111:9894:7931_CONS(1)... at 1:84:1:85/+/97.62% +301 84nt, >M01687:476:000000000-LL5F5:1:2111:7529:9372_CONS(1)... at 1:84:1:84/+/97.62% +302 85nt, >M01687:476:000000000-LL5F5:1:2111:2674:9801_CONS(10)... at 1:85:1:85/+/97.65% +303 84nt, >M01687:476:000000000-LL5F5:1:2111:12804:12153_CONS(1)... at 1:84:1:85/+/97.62% +304 83nt, >M01687:476:000000000-LL5F5:1:2111:9820:12571_CONS(2)... at 1:83:1:85/+/98.80% +305 84nt, >M01687:476:000000000-LL5F5:1:2111:23662:12950_CONS(1)... at 1:84:1:84/+/97.62% +306 83nt, >M01687:476:000000000-LL5F5:1:2111:25698:13042_CONS(1)... at 1:83:1:85/+/98.80% +307 85nt, >M01687:476:000000000-LL5F5:1:2111:22215:13291_CONS(8)... at 1:85:1:85/+/97.65% +308 84nt, >M01687:476:000000000-LL5F5:1:2111:10650:13947_CONS(1)... at 1:84:1:84/+/97.62% +309 85nt, >M01687:476:000000000-LL5F5:1:2111:28784:14158_CONS(5)... at 1:85:1:85/+/97.65% +310 85nt, >M01687:476:000000000-LL5F5:1:2111:6246:14300_CONS(1)... at 1:85:1:85/+/97.65% +311 84nt, >M01687:476:000000000-LL5F5:1:2111:23651:14988_CONS(1)... at 1:84:2:85/+/97.62% +312 84nt, >M01687:476:000000000-LL5F5:1:2111:18601:18415_CONS(1)... at 1:84:1:85/+/97.62% +313 86nt, >M01687:476:000000000-LL5F5:1:2111:14521:18961_CONS(1)... at 2:86:1:85/+/97.67% +314 84nt, >M01687:476:000000000-LL5F5:1:2111:16908:21058_CONS(1)... at 1:84:1:85/+/97.62% +315 85nt, >M01687:476:000000000-LL5F5:1:2111:12402:22495_CONS(5)... at 1:85:1:85/+/97.65% +316 85nt, >M01687:476:000000000-LL5F5:1:2111:23495:24201_CONS(10)... at 1:85:1:85/+/97.65% +317 85nt, >M01687:476:000000000-LL5F5:1:2110:14480:2115_CONS(5)... at 1:85:1:85/+/97.65% +318 83nt, >M01687:476:000000000-LL5F5:1:2110:17949:2452_CONS(3)... at 1:83:1:84/+/97.59% +319 85nt, >M01687:476:000000000-LL5F5:1:2110:13425:4896_CONS(2)... at 1:85:1:85/+/97.65% +320 40nt, >M01687:476:000000000-LL5F5:1:2110:14074:6437_CONS(2)... at 1:40:1:40/+/97.50% +321 84nt, >M01687:476:000000000-LL5F5:1:2110:16580:6566_CONS(1)... at 1:84:2:85/+/97.62% +322 85nt, >M01687:476:000000000-LL5F5:1:2110:14242:9893_CONS(1)... at 1:85:1:85/+/97.65% +323 84nt, >M01687:476:000000000-LL5F5:1:2110:12965:14322_CONS(1)... at 1:84:1:85/+/97.62% +324 84nt, >M01687:476:000000000-LL5F5:1:2110:19673:18143_CONS(2)... at 1:84:1:85/+/97.62% +325 84nt, >M01687:476:000000000-LL5F5:1:2110:28182:18506_CONS(1)... at 1:84:1:85/+/97.62% +326 85nt, >M01687:476:000000000-LL5F5:1:2110:27726:19817_CONS(18)... at 1:85:1:85/+/97.65% +327 84nt, >M01687:476:000000000-LL5F5:1:2110:15055:19968_CONS(2)... at 1:84:1:85/+/97.62% +328 38nt, >M01687:476:000000000-LL5F5:1:2110:24798:20233_CONS(3)... at 1:38:1:38/+/97.37% +329 54nt, >M01687:476:000000000-LL5F5:1:2110:23777:22554_CONS(1)... at 1:54:1:54/+/98.15% +330 86nt, >M01687:476:000000000-LL5F5:1:2110:14305:24208_CONS(3)... at 1:86:1:85/+/97.67% +331 85nt, >M01687:476:000000000-LL5F5:1:2109:22080:1196_CONS(12)... at 1:85:1:85/+/97.65% +332 79nt, >M01687:476:000000000-LL5F5:1:2109:19267:3437_CONS(1)... at 1:79:7:85/+/98.73% +333 84nt, >M01687:476:000000000-LL5F5:1:2109:29050:9770_CONS(1)... at 1:84:1:85/+/97.62% +334 83nt, >M01687:476:000000000-LL5F5:1:2109:21202:16707_CONS(1)... at 1:83:1:85/+/98.80% +335 75nt, >M01687:476:000000000-LL5F5:1:2109:4353:17592_CONS(1)... at 1:75:11:85/+/98.67% +336 34nt, >M01687:476:000000000-LL5F5:1:2109:22000:18158_CONS(2)... at 1:34:1:34/+/100.00% +337 86nt, >M01687:476:000000000-LL5F5:1:2109:22883:21768_CONS(5)... at 1:86:1:85/+/97.67% +338 84nt, >M01687:476:000000000-LL5F5:1:2108:8727:2667_CONS(1)... at 1:84:1:85/+/97.62% +339 84nt, >M01687:476:000000000-LL5F5:1:2108:17138:7472_CONS(1)... at 1:84:1:85/+/97.62% +340 84nt, >M01687:476:000000000-LL5F5:1:2108:11360:7797_CONS(1)... at 1:84:2:85/+/97.62% +341 49nt, >M01687:476:000000000-LL5F5:1:2108:4364:11985_CONS(1)... at 1:49:1:49/+/100.00% +342 84nt, >M01687:476:000000000-LL5F5:1:2108:13919:14077_CONS(8)... at 1:84:1:85/+/98.81% +343 83nt, >M01687:476:000000000-LL5F5:1:2108:10114:14810_CONS(2)... at 1:83:1:85/+/98.80% +344 82nt, >M01687:476:000000000-LL5F5:1:2108:19144:16605_CONS(1)... at 1:82:1:82/+/97.56% +345 83nt, >M01687:476:000000000-LL5F5:1:2108:4791:18356_CONS(1)... at 1:83:2:85/+/97.59% +346 86nt, >M01687:476:000000000-LL5F5:1:2108:14645:21821_CONS(1)... at 1:86:1:85/+/97.67% +347 84nt, >M01687:476:000000000-LL5F5:1:2108:13305:23632_CONS(1)... at 1:84:1:85/+/97.62% +348 40nt, >M01687:476:000000000-LL5F5:1:2108:15685:24300_CONS(1)... at 1:40:1:40/+/97.50% +349 85nt, >M01687:476:000000000-LL5F5:1:2106:13636:3718_CONS(6)... at 1:85:1:85/+/97.65% +350 84nt, >M01687:476:000000000-LL5F5:1:2106:11857:5430_CONS(1)... at 1:84:1:85/+/98.81% +351 85nt, >M01687:476:000000000-LL5F5:1:2106:10433:5981_CONS(5)... at 1:85:1:85/+/97.65% +352 85nt, >M01687:476:000000000-LL5F5:1:2106:19836:6685_CONS(4)... at 1:85:1:85/+/97.65% +353 83nt, >M01687:476:000000000-LL5F5:1:2106:21614:7219_CONS(1)... at 1:83:1:84/+/97.59% +354 82nt, >M01687:476:000000000-LL5F5:1:2106:13582:8319_CONS(1)... at 1:82:1:85/+/98.78% +355 84nt, >M01687:476:000000000-LL5F5:1:2106:20421:9820_CONS(1)... at 1:84:2:85/+/97.62% +356 127nt, >M01687:476:000000000-LL5F5:1:2106:24303:11879_CONS(1)... at 1:127:1:127/+/99.21% +357 84nt, >M01687:476:000000000-LL5F5:1:2106:29188:14373_CONS(1)... at 1:84:1:85/+/97.62% +358 85nt, >M01687:476:000000000-LL5F5:1:2106:27983:16819_CONS(2)... at 1:85:1:85/+/97.65% +359 85nt, >M01687:476:000000000-LL5F5:1:2106:2987:17059_CONS(3)... at 1:85:1:85/+/97.65% +360 82nt, >M01687:476:000000000-LL5F5:1:2106:4112:17939_CONS(1)... at 1:82:1:85/+/98.78% +361 83nt, >M01687:476:000000000-LL5F5:1:2106:18738:19183_CONS(1)... at 1:83:1:85/+/98.80% +362 77nt, >M01687:476:000000000-LL5F5:1:2106:13312:22130_CONS(1)... at 1:77:1:77/+/100.00% +363 85nt, >M01687:476:000000000-LL5F5:1:2107:22453:2947_CONS(7)... at 1:85:1:85/+/97.65% +364 40nt, >M01687:476:000000000-LL5F5:1:2107:8277:14014_CONS(1)... at 1:40:1:40/+/97.50% +365 81nt, >M01687:476:000000000-LL5F5:1:2107:15071:14481_CONS(4)... at 1:81:1:85/+/98.77% +366 84nt, >M01687:476:000000000-LL5F5:1:2107:21768:14887_CONS(1)... at 1:84:1:85/+/97.62% +367 86nt, >M01687:476:000000000-LL5F5:1:2107:25116:16565_CONS(3)... at 1:86:1:85/+/97.67% +368 85nt, >M01687:476:000000000-LL5F5:1:2107:17113:16661_CONS(8)... at 1:85:1:85/+/97.65% +369 84nt, >M01687:476:000000000-LL5F5:1:2107:21055:20144_CONS(1)... at 1:84:1:85/+/97.62% +370 84nt, >M01687:476:000000000-LL5F5:1:2107:11566:20581_CONS(2)... at 1:84:1:85/+/97.62% +371 85nt, >M01687:476:000000000-LL5F5:1:2107:5867:21022_CONS(4)... at 1:85:1:85/+/97.65% +372 84nt, >M01687:476:000000000-LL5F5:1:2107:25061:21823_CONS(1)... at 1:84:1:85/+/97.62% +373 85nt, >M01687:476:000000000-LL5F5:1:2104:26540:4842_CONS(4)... at 1:85:1:85/+/97.65% +374 84nt, >M01687:476:000000000-LL5F5:1:2104:3634:9005_CONS(1)... at 1:84:1:85/+/97.62% +375 84nt, >M01687:476:000000000-LL5F5:1:2104:14432:9999_CONS(7)... at 1:84:1:85/+/98.81% +376 84nt, >M01687:476:000000000-LL5F5:1:2104:6561:13656_CONS(1)... at 1:84:1:85/+/97.62% +377 84nt, >M01687:476:000000000-LL5F5:1:2104:13953:15964_CONS(1)... at 1:84:1:85/+/98.81% +378 84nt, >M01687:476:000000000-LL5F5:1:2104:3991:16647_CONS(1)... at 1:84:1:85/+/97.62% +379 84nt, >M01687:476:000000000-LL5F5:1:2104:21999:20854_CONS(1)... at 1:84:1:85/+/97.62% +380 84nt, >M01687:476:000000000-LL5F5:1:2104:14914:24027_CONS(1)... at 1:84:1:85/+/97.62% +381 85nt, >M01687:476:000000000-LL5F5:1:2105:9777:2345_CONS(6)... at 1:85:1:85/+/97.65% +382 84nt, >M01687:476:000000000-LL5F5:1:2105:19579:8089_CONS(2)... at 1:84:1:85/+/97.62% +383 83nt, >M01687:476:000000000-LL5F5:1:2105:22252:8905_CONS(1)... at 1:83:1:84/+/97.59% +384 85nt, >M01687:476:000000000-LL5F5:1:2105:23949:13125_CONS(4)... at 1:85:1:85/+/97.65% +385 85nt, >M01687:476:000000000-LL5F5:1:2105:25759:16053_CONS(1)... at 1:85:1:85/+/97.65% +386 49nt, >M01687:476:000000000-LL5F5:1:2102:22407:2591_CONS(1)... at 1:49:1:49/+/97.96% +387 83nt, >M01687:476:000000000-LL5F5:1:2102:24286:3144_CONS(4)... at 1:83:3:85/+/98.80% +388 86nt, >M01687:476:000000000-LL5F5:1:2102:11017:5241_CONS(1)... at 1:86:1:85/+/97.67% +389 84nt, >M01687:476:000000000-LL5F5:1:2102:28254:8133_CONS(2)... at 1:84:1:85/+/98.81% +390 83nt, >M01687:476:000000000-LL5F5:1:2102:14680:10803_CONS(1)... at 1:83:2:85/+/98.80% +391 84nt, >M01687:476:000000000-LL5F5:1:2102:11371:13720_CONS(1)... at 1:84:1:85/+/97.62% +392 85nt, >M01687:476:000000000-LL5F5:1:2102:13522:14257_CONS(3)... at 1:85:1:85/+/100.00% +393 85nt, >M01687:476:000000000-LL5F5:1:2102:7278:15847_CONS(2)... at 1:85:1:85/+/97.65% +394 84nt, >M01687:476:000000000-LL5F5:1:2102:18102:16375_CONS(1)... at 1:84:1:85/+/97.62% +395 84nt, >M01687:476:000000000-LL5F5:1:2102:23919:17197_CONS(1)... at 1:84:2:85/+/97.62% +396 83nt, >M01687:476:000000000-LL5F5:1:2102:11416:17698_CONS(1)... at 1:83:1:85/+/98.80% +397 84nt, >M01687:476:000000000-LL5F5:1:2102:5049:18850_CONS(1)... at 1:84:1:85/+/97.62% +398 84nt, >M01687:476:000000000-LL5F5:1:2102:5780:20940_CONS(1)... at 1:84:1:85/+/97.62% +399 82nt, >M01687:476:000000000-LL5F5:1:2102:23180:24286_CONS(1)... at 1:82:1:85/+/98.78% +400 87nt, >M01687:476:000000000-LL5F5:1:2102:17729:24335_CONS(1)... at 1:87:1:87/+/97.70% +401 86nt, >M01687:476:000000000-LL5F5:1:2103:23815:4348_CONS(1)... at 1:86:1:86/+/97.67% +402 85nt, >M01687:476:000000000-LL5F5:1:2103:15998:6684_CONS(12)... at 1:85:1:85/+/97.65% +403 84nt, >M01687:476:000000000-LL5F5:1:2103:11146:7334_CONS(1)... at 1:84:1:85/+/97.62% +404 38nt, >M01687:476:000000000-LL5F5:1:2103:8593:11551_CONS(1)... at 1:38:1:38/+/97.37% +405 47nt, >M01687:476:000000000-LL5F5:1:2103:15672:14161_CONS(1)... at 1:47:1:47/+/97.87% +406 84nt, >M01687:476:000000000-LL5F5:1:2103:17651:14261_CONS(1)... at 1:84:1:85/+/97.62% +407 85nt, >M01687:476:000000000-LL5F5:1:2103:20797:14368_CONS(3)... at 1:85:1:85/+/97.65% +408 84nt, >M01687:476:000000000-LL5F5:1:2103:19545:17957_CONS(1)... at 1:84:1:85/+/97.62% +409 85nt, >M01687:476:000000000-LL5F5:1:2103:6976:18819_CONS(3)... at 1:85:1:85/+/97.65% +410 85nt, >M01687:476:000000000-LL5F5:1:2103:21289:20767_CONS(1)... at 1:85:1:85/+/97.65% +411 83nt, >M01687:476:000000000-LL5F5:1:2103:22681:22769_CONS(1)... at 1:83:3:85/+/97.59% +412 83nt, >M01687:476:000000000-LL5F5:1:2116:17275:1910_CONS(1)... at 1:83:1:85/+/100.00% +413 84nt, >M01687:476:000000000-LL5F5:1:2116:11277:3968_CONS(1)... at 1:84:1:85/+/97.62% +414 84nt, >M01687:476:000000000-LL5F5:1:2116:23410:6789_CONS(1)... at 1:84:1:85/+/97.62% +415 84nt, >M01687:476:000000000-LL5F5:1:2116:7558:10806_CONS(1)... at 1:84:1:85/+/97.62% +416 83nt, >M01687:476:000000000-LL5F5:1:2116:13406:22574_CONS(1)... at 1:83:3:85/+/97.59% +417 84nt, >M01687:476:000000000-LL5F5:1:2116:13990:22969_CONS(1)... at 1:84:1:84/+/97.62% +418 38nt, >M01687:476:000000000-LL5F5:1:2117:18661:1163_CONS(1)... at 1:38:1:39/+/100.00% +419 85nt, >M01687:476:000000000-LL5F5:1:2117:17674:14224_CONS(3)... at 1:85:1:85/+/97.65% +420 85nt, >M01687:476:000000000-LL5F5:1:2117:23049:22260_CONS(1)... at 1:85:1:85/+/97.65% +421 85nt, >M01687:476:000000000-LL5F5:1:2117:19368:23438_CONS(1)... at 1:85:1:85/+/97.65% +422 84nt, >M01687:476:000000000-LL5F5:1:1119:9752:5423_CONS(1)... at 1:84:1:84/+/97.62% +423 39nt, >M01687:476:000000000-LL5F5:1:1119:14864:6939_CONS(3)... at 1:39:1:39/+/97.44% +424 84nt, >M01687:476:000000000-LL5F5:1:1119:5876:8035_CONS(1)... at 1:84:1:85/+/97.62% +425 83nt, >M01687:476:000000000-LL5F5:1:1119:3772:14035_CONS(1)... at 1:83:1:85/+/98.80% +426 85nt, >M01687:476:000000000-LL5F5:1:1119:10950:15602_CONS(4)... at 1:85:1:85/+/97.65% +427 83nt, >M01687:476:000000000-LL5F5:1:1119:15314:16626_CONS(1)... at 1:83:2:85/+/98.80% +428 84nt, >M01687:476:000000000-LL5F5:1:1119:27600:18361_CONS(1)... at 1:84:1:85/+/97.62% +429 84nt, >M01687:476:000000000-LL5F5:1:2101:7079:10218_CONS(3)... at 1:84:1:85/+/97.62% +430 84nt, >M01687:476:000000000-LL5F5:1:2101:9872:12821_CONS(1)... at 1:84:1:85/+/97.62% +431 50nt, >M01687:476:000000000-LL5F5:1:2101:4674:19271_CONS(1)... at 1:50:1:50/+/100.00% +432 85nt, >M01687:476:000000000-LL5F5:1:1115:11736:4508_CONS(1)... at 1:85:1:85/+/97.65% +433 50nt, >M01687:476:000000000-LL5F5:1:1115:19831:6823_CONS(1)... at 1:50:1:50/+/98.00% +434 84nt, >M01687:476:000000000-LL5F5:1:1115:11559:8473_CONS(1)... at 1:84:2:85/+/97.62% +435 85nt, >M01687:476:000000000-LL5F5:1:1115:14170:16440_CONS(4)... at 1:85:1:85/+/97.65% +436 84nt, >M01687:476:000000000-LL5F5:1:1115:10049:21042_CONS(1)... at 1:84:1:85/+/97.62% +437 81nt, >M01687:476:000000000-LL5F5:1:1116:9335:3494_CONS(1)... at 1:81:1:85/+/98.77% +438 84nt, >M01687:476:000000000-LL5F5:1:1116:8127:9685_CONS(1)... at 1:84:2:85/+/97.62% +439 84nt, >M01687:476:000000000-LL5F5:1:1116:11758:11422_CONS(1)... at 1:84:1:85/+/97.62% +440 281nt, >M01687:476:000000000-LL5F5:1:1116:16251:12477_CONS(1)... * +441 83nt, >M01687:476:000000000-LL5F5:1:1116:2871:15254_CONS(1)... at 1:83:1:85/+/98.80% +442 44nt, >M01687:476:000000000-LL5F5:1:1116:26883:16131_CONS(2)... at 1:44:1:44/+/100.00% +443 47nt, >M01687:476:000000000-LL5F5:1:1116:27938:17077_CONS(1)... at 1:47:1:47/+/97.87% +444 84nt, >M01687:476:000000000-LL5F5:1:1116:26601:17502_CONS(1)... at 1:84:1:84/+/97.62% +445 84nt, >M01687:476:000000000-LL5F5:1:1116:16130:18784_CONS(1)... at 1:84:1:85/+/97.62% +446 40nt, >M01687:476:000000000-LL5F5:1:1116:26907:20523_CONS(1)... at 1:40:1:40/+/97.50% +447 83nt, >M01687:476:000000000-LL5F5:1:1116:17728:21400_CONS(2)... at 1:83:2:85/+/97.59% +448 40nt, >M01687:476:000000000-LL5F5:1:1116:13154:22558_CONS(1)... at 1:40:1:40/+/97.50% +449 84nt, >M01687:476:000000000-LL5F5:1:1114:22538:2287_CONS(1)... at 1:84:1:85/+/97.62% +450 84nt, >M01687:476:000000000-LL5F5:1:1114:13902:2705_CONS(1)... at 1:84:1:85/+/97.62% +451 83nt, >M01687:476:000000000-LL5F5:1:1114:16272:5325_CONS(4)... at 1:83:1:85/+/100.00% +452 83nt, >M01687:476:000000000-LL5F5:1:1114:12158:7766_CONS(1)... at 1:83:2:85/+/97.59% +453 85nt, >M01687:476:000000000-LL5F5:1:1114:20697:13893_CONS(3)... at 1:85:1:85/+/97.65% +454 84nt, >M01687:476:000000000-LL5F5:1:1113:21734:2635_CONS(1)... at 1:84:1:85/+/97.62% +455 84nt, >M01687:476:000000000-LL5F5:1:1113:21061:6407_CONS(1)... at 1:84:2:85/+/97.62% +456 82nt, >M01687:476:000000000-LL5F5:1:1113:17094:9897_CONS(1)... at 1:82:1:85/+/98.78% +457 84nt, >M01687:476:000000000-LL5F5:1:1113:20080:13335_CONS(1)... at 1:84:1:85/+/97.62% +458 83nt, >M01687:476:000000000-LL5F5:1:1113:21633:15668_CONS(1)... at 1:83:1:85/+/97.59% +459 30nt, >M01687:476:000000000-LL5F5:1:1113:7983:16360_CONS(1)... at 1:30:1:30/+/100.00% +460 44nt, >M01687:476:000000000-LL5F5:1:1113:21331:19438_CONS(1)... at 1:44:1:44/+/97.73% +461 83nt, >M01687:476:000000000-LL5F5:1:1113:23533:21360_CONS(1)... at 1:83:1:84/+/98.80% +462 83nt, >M01687:476:000000000-LL5F5:1:1113:24354:21625_CONS(1)... at 1:83:1:83/+/97.59% +463 39nt, >M01687:476:000000000-LL5F5:1:1113:16548:22430_CONS(1)... at 1:39:1:39/+/97.44% +464 42nt, >M01687:476:000000000-LL5F5:1:1113:20272:22496_CONS(1)... at 1:42:1:42/+/97.62% +465 84nt, >M01687:476:000000000-LL5F5:1:1113:19248:22605_CONS(1)... at 1:84:1:85/+/97.62% +466 82nt, >M01687:476:000000000-LL5F5:1:1113:8301:22960_CONS(1)... at 1:82:1:85/+/98.78% +467 56nt, >M01687:476:000000000-LL5F5:1:1113:17044:24037_CONS(1)... at 1:56:1:56/+/98.21% +468 84nt, >M01687:476:000000000-LL5F5:1:1112:10921:1323_CONS(1)... at 1:84:1:85/+/98.81% +469 86nt, >M01687:476:000000000-LL5F5:1:1112:24992:4211_CONS(2)... at 1:86:1:85/+/97.67% +470 55nt, >M01687:476:000000000-LL5F5:1:1112:24079:4353_CONS(1)... at 1:55:1:55/+/98.18% +471 83nt, >M01687:476:000000000-LL5F5:1:1112:10648:10839_CONS(1)... at 1:83:1:85/+/98.80% +472 84nt, >M01687:476:000000000-LL5F5:1:1112:21356:18111_CONS(1)... at 1:84:2:85/+/97.62% +473 83nt, >M01687:476:000000000-LL5F5:1:1112:15198:19860_CONS(1)... at 1:83:1:85/+/98.80% +474 84nt, >M01687:476:000000000-LL5F5:1:1112:8596:20404_CONS(1)... at 1:84:1:85/+/97.62% +475 84nt, >M01687:476:000000000-LL5F5:1:1112:6874:20571_CONS(1)... at 1:84:1:85/+/97.62% +476 84nt, >M01687:476:000000000-LL5F5:1:1112:10868:20869_CONS(1)... at 1:84:1:85/+/97.62% +477 84nt, >M01687:476:000000000-LL5F5:1:1111:8768:1414_CONS(1)... at 1:84:1:85/+/97.62% +478 84nt, >M01687:476:000000000-LL5F5:1:1111:13699:2258_CONS(1)... at 1:84:1:85/+/97.62% +479 82nt, >M01687:476:000000000-LL5F5:1:1111:9733:3953_CONS(1)... at 1:82:1:85/+/98.78% +480 84nt, >M01687:476:000000000-LL5F5:1:1111:19035:8578_CONS(1)... at 1:84:1:84/+/97.62% +481 84nt, >M01687:476:000000000-LL5F5:1:1111:13715:9598_CONS(1)... at 1:84:1:85/+/97.62% +482 85nt, >M01687:476:000000000-LL5F5:1:1111:22201:11814_CONS(2)... at 1:85:1:85/+/97.65% +483 46nt, >M01687:476:000000000-LL5F5:1:1111:22759:12143_CONS(1)... at 1:46:1:46/+/97.83% +484 84nt, >M01687:476:000000000-LL5F5:1:1111:10194:12526_CONS(1)... at 1:84:1:85/+/97.62% +485 128nt, >M01687:476:000000000-LL5F5:1:1111:22912:14346_CONS(2)... at 1:128:1:128/+/99.22% +486 48nt, >M01687:476:000000000-LL5F5:1:1111:11914:16864_CONS(1)... at 1:48:1:48/+/97.92% +487 83nt, >M01687:476:000000000-LL5F5:1:1111:24405:17217_CONS(1)... at 1:83:2:85/+/98.80% +488 84nt, >M01687:476:000000000-LL5F5:1:1111:9263:20232_CONS(2)... at 1:84:1:85/+/97.62% +489 84nt, >M01687:476:000000000-LL5F5:1:1111:23996:20446_CONS(1)... at 1:84:1:85/+/97.62% +490 39nt, >M01687:476:000000000-LL5F5:1:1111:12470:24870_CONS(1)... at 1:39:1:39/+/97.44% +491 84nt, >M01687:476:000000000-LL5F5:1:1110:15487:4632_CONS(1)... at 1:84:1:85/+/97.62% +492 84nt, >M01687:476:000000000-LL5F5:1:1110:7460:6571_CONS(1)... at 1:84:1:85/+/97.62% +493 47nt, >M01687:476:000000000-LL5F5:1:1110:25566:11662_CONS(1)... at 1:47:1:47/+/97.87% +494 82nt, >M01687:476:000000000-LL5F5:1:1110:3009:12730_CONS(1)... at 1:82:1:85/+/97.56% +495 83nt, >M01687:476:000000000-LL5F5:1:1110:6188:13102_CONS(1)... at 1:83:2:85/+/97.59% +496 85nt, >M01687:476:000000000-LL5F5:1:1110:14421:14055_CONS(1)... at 1:85:1:85/+/97.65% +497 84nt, >M01687:476:000000000-LL5F5:1:1110:28786:14343_CONS(1)... at 1:84:1:85/+/97.62% +498 84nt, >M01687:476:000000000-LL5F5:1:1110:5784:14594_CONS(1)... at 1:84:1:85/+/97.62% +499 85nt, >M01687:476:000000000-LL5F5:1:1110:2389:14704_CONS(2)... at 1:85:1:85/+/97.65% +500 80nt, >M01687:476:000000000-LL5F5:1:1110:2614:15769_CONS(1)... at 1:80:1:85/+/98.75% +501 84nt, >M01687:476:000000000-LL5F5:1:1110:4800:16170_CONS(1)... at 1:84:1:85/+/97.62% +502 84nt, >M01687:476:000000000-LL5F5:1:1110:6254:17404_CONS(1)... at 1:84:1:85/+/97.62% +503 49nt, >M01687:476:000000000-LL5F5:1:1110:8962:17497_CONS(1)... at 1:49:1:49/+/97.96% +504 139nt, >M01687:476:000000000-LL5F5:1:1109:21289:4750_CONS(1)... at 1:139:1:139/+/98.56% +505 84nt, >M01687:476:000000000-LL5F5:1:1109:4653:5095_CONS(1)... at 1:84:1:85/+/97.62% +506 84nt, >M01687:476:000000000-LL5F5:1:1109:29151:11506_CONS(1)... at 1:84:1:85/+/97.62% +507 37nt, >M01687:476:000000000-LL5F5:1:1109:25854:12750_CONS(1)... at 1:37:1:38/+/100.00% +508 85nt, >M01687:476:000000000-LL5F5:1:1109:20185:17804_CONS(3)... at 1:85:1:85/+/97.65% +509 83nt, >M01687:476:000000000-LL5F5:1:1109:23372:22316_CONS(1)... at 1:83:1:85/+/98.80% +510 82nt, >M01687:476:000000000-LL5F5:1:1109:13060:23443_CONS(1)... at 1:82:1:85/+/100.00% +511 38nt, >M01687:476:000000000-LL5F5:1:1108:5820:4618_CONS(1)... at 1:38:1:38/+/97.37% +512 40nt, >M01687:476:000000000-LL5F5:1:1108:27137:8213_CONS(1)... at 1:40:1:40/+/97.50% +513 82nt, >M01687:476:000000000-LL5F5:1:1108:13472:8453_CONS(1)... at 1:82:1:85/+/98.78% +514 84nt, >M01687:476:000000000-LL5F5:1:1108:11436:8525_CONS(1)... at 1:84:1:85/+/97.62% +515 85nt, >M01687:476:000000000-LL5F5:1:1108:19902:14855_CONS(1)... at 1:85:1:85/+/97.65% +516 141nt, >M01687:476:000000000-LL5F5:1:1108:10456:19757_PairEnd(1)... at 1:141:1:140/+/97.87% +517 86nt, >M01687:476:000000000-LL5F5:1:1108:24717:22379_CONS(1)... at 1:86:1:85/+/97.67% +518 84nt, >M01687:476:000000000-LL5F5:1:1108:23448:22541_CONS(1)... at 1:84:1:84/+/97.62% +519 84nt, >M01687:476:000000000-LL5F5:1:1108:10002:23468_CONS(1)... at 1:84:1:85/+/97.62% +520 40nt, >M01687:476:000000000-LL5F5:1:1107:7877:4134_CONS(1)... at 1:40:1:40/+/97.50% +521 27nt, >M01687:476:000000000-LL5F5:1:1107:14493:5424_CONS(1)... at 1:27:1:27/+/100.00% +522 83nt, >M01687:476:000000000-LL5F5:1:1107:24216:11865_CONS(1)... at 1:83:1:84/+/97.59% +523 86nt, >M01687:476:000000000-LL5F5:1:1107:25557:19556_CONS(1)... at 1:86:1:86/+/97.67% +524 84nt, >M01687:476:000000000-LL5F5:1:1107:26273:19743_CONS(1)... at 1:84:1:85/+/97.62% +525 84nt, >M01687:476:000000000-LL5F5:1:1107:9493:21398_CONS(1)... at 1:84:1:85/+/97.62% +526 86nt, >M01687:476:000000000-LL5F5:1:1107:9853:22032_CONS(2)... at 1:86:1:85/+/97.67% +527 46nt, >M01687:476:000000000-LL5F5:1:1106:24126:4590_CONS(1)... at 1:46:1:46/+/100.00% +528 84nt, >M01687:476:000000000-LL5F5:1:1106:25709:5058_CONS(1)... at 1:84:1:85/+/97.62% +529 84nt, >M01687:476:000000000-LL5F5:1:1106:26977:8960_CONS(2)... at 1:84:1:84/+/97.62% +530 83nt, >M01687:476:000000000-LL5F5:1:1106:28030:13550_CONS(1)... at 1:83:1:84/+/98.80% +531 51nt, >M01687:476:000000000-LL5F5:1:1106:27703:20299_CONS(1)... at 1:51:1:51/+/100.00% +532 85nt, >M01687:476:000000000-LL5F5:1:1106:18796:23759_CONS(1)... at 1:85:1:85/+/97.65% +533 84nt, >M01687:476:000000000-LL5F5:1:1105:10371:1561_CONS(1)... at 1:84:1:85/+/97.62% +534 42nt, >M01687:476:000000000-LL5F5:1:1105:23472:5173_CONS(1)... at 1:42:1:42/+/97.62% +535 84nt, >M01687:476:000000000-LL5F5:1:1105:21815:9014_CONS(1)... at 1:84:1:85/+/97.62% +536 84nt, >M01687:476:000000000-LL5F5:1:1105:9889:14070_CONS(1)... at 1:84:1:85/+/97.62% +537 86nt, >M01687:476:000000000-LL5F5:1:1105:19372:15159_CONS(1)... at 1:86:1:85/+/97.67% +538 84nt, >M01687:476:000000000-LL5F5:1:1105:25518:15904_CONS(1)... at 1:84:1:85/+/97.62% +539 43nt, >M01687:476:000000000-LL5F5:1:1105:22609:18255_CONS(1)... at 1:43:1:43/+/97.67% +540 84nt, >M01687:476:000000000-LL5F5:1:1105:25720:19512_CONS(1)... at 1:84:1:85/+/97.62% +541 39nt, >M01687:476:000000000-LL5F5:1:1105:21320:19525_CONS(1)... at 1:39:1:39/+/97.44% +542 84nt, >M01687:476:000000000-LL5F5:1:1105:19699:22435_CONS(1)... at 1:84:1:84/+/97.62% +543 84nt, >M01687:476:000000000-LL5F5:1:1104:8361:4038_CONS(1)... at 1:84:1:84/+/97.62% +544 84nt, >M01687:476:000000000-LL5F5:1:1104:3996:13393_CONS(1)... at 1:84:1:84/+/97.62% +545 86nt, >M01687:476:000000000-LL5F5:1:1104:18971:13550_CONS(2)... at 1:86:1:85/+/97.67% +546 84nt, >M01687:476:000000000-LL5F5:1:1104:13577:13770_CONS(1)... at 1:84:1:85/+/97.62% +547 84nt, >M01687:476:000000000-LL5F5:1:1104:9862:14164_CONS(1)... at 1:84:1:85/+/98.81% +548 85nt, >M01687:476:000000000-LL5F5:1:1104:24430:16143_CONS(2)... at 1:85:1:85/+/97.65% +549 83nt, >M01687:476:000000000-LL5F5:1:1104:7626:16821_CONS(1)... at 1:83:1:84/+/98.80% +550 84nt, >M01687:476:000000000-LL5F5:1:1103:20232:1718_CONS(1)... at 1:84:1:85/+/97.62% +551 107nt, >M01687:476:000000000-LL5F5:1:1103:9345:4069_CONS(1)... at 1:107:1:107/+/98.13% +552 83nt, >M01687:476:000000000-LL5F5:1:1103:24035:20370_CONS(1)... at 1:83:1:85/+/98.80% +553 83nt, >M01687:476:000000000-LL5F5:1:1118:24850:6483_CONS(1)... at 1:83:1:85/+/98.80% +554 84nt, >M01687:476:000000000-LL5F5:1:1118:21434:7482_CONS(1)... at 1:84:1:84/+/97.62% +555 72nt, >M01687:476:000000000-LL5F5:1:1118:19614:7596_CONS(1)... at 1:72:1:72/+/100.00% +556 84nt, >M01687:476:000000000-LL5F5:1:1118:7826:10159_CONS(1)... at 1:84:1:85/+/97.62% +557 83nt, >M01687:476:000000000-LL5F5:1:1118:27300:11219_CONS(1)... at 1:83:1:85/+/98.80% +558 84nt, >M01687:476:000000000-LL5F5:1:1118:10696:14334_CONS(1)... at 1:84:1:85/+/97.62% +559 84nt, >M01687:476:000000000-LL5F5:1:1118:23319:14885_CONS(1)... at 1:84:1:85/+/97.62% +560 85nt, >M01687:476:000000000-LL5F5:1:1118:7224:18741_CONS(1)... at 1:85:1:85/+/97.65% +561 84nt, >M01687:476:000000000-LL5F5:1:1118:4340:19556_CONS(1)... at 1:84:1:85/+/97.62% +562 84nt, >M01687:476:000000000-LL5F5:1:1117:20386:2473_CONS(1)... at 1:84:1:85/+/97.62% +563 84nt, >M01687:476:000000000-LL5F5:1:1117:14476:4345_CONS(1)... at 1:84:1:85/+/97.62% +564 42nt, >M01687:476:000000000-LL5F5:1:1117:28418:14640_CONS(1)... at 1:42:1:42/+/100.00% +565 83nt, >M01687:476:000000000-LL5F5:1:1117:19649:15452_CONS(1)... at 1:83:1:85/+/97.59% +566 83nt, >M01687:476:000000000-LL5F5:1:1117:20086:16419_CONS(1)... at 1:83:1:85/+/98.80% +567 84nt, >M01687:476:000000000-LL5F5:1:2118:6603:2988_CONS(1)... at 1:84:1:85/+/97.62% +568 82nt, >M01687:476:000000000-LL5F5:1:2118:23327:5181_CONS(1)... at 1:82:4:85/+/97.56% +569 83nt, >M01687:476:000000000-LL5F5:1:2118:5646:9455_CONS(2)... at 1:83:1:85/+/98.80% +570 84nt, >M01687:476:000000000-LL5F5:1:2118:4097:20760_CONS(1)... at 1:84:1:85/+/97.62% +571 54nt, >M01687:476:000000000-LL5F5:1:2118:9143:21957_CONS(1)... at 1:54:1:54/+/100.00% +572 49nt, >M01687:476:000000000-LL5F5:1:2119:18188:6640_CONS(1)... at 1:49:1:49/+/97.96% +573 83nt, >M01687:476:000000000-LL5F5:1:2119:24705:7441_CONS(1)... at 1:83:1:85/+/98.80% +574 49nt, >M01687:476:000000000-LL5F5:1:2119:4937:9889_CONS(1)... at 1:49:1:50/+/100.00% +575 84nt, >M01687:476:000000000-LL5F5:1:2119:9671:14548_CONS(1)... at 1:84:1:85/+/97.62% +576 85nt, >M01687:476:000000000-LL5F5:1:2119:5594:21728_CONS(1)... at 1:85:1:85/+/97.65% +577 84nt, >M01687:476:000000000-LL5F5:1:2119:23645:24466_CONS(1)... at 1:84:1:84/+/97.62% +>Cluster 2 +0 107nt, >M01687:476:000000000-LL5F5:1:1102:14619:1181_CONS(6595)... at 1:107:1:106/+/99.07% +1 107nt, >M01687:476:000000000-LL5F5:1:1102:24224:2364_CONS(54)... at 1:107:1:106/+/98.13% +2 107nt, >M01687:476:000000000-LL5F5:1:1102:11088:2418_CONS(5)... at 1:107:1:106/+/98.13% +3 107nt, >M01687:476:000000000-LL5F5:1:1102:20988:3771_CONS(10)... at 1:107:1:106/+/98.13% +4 107nt, >M01687:476:000000000-LL5F5:1:1102:13143:3913_CONS(6)... at 1:107:1:106/+/98.13% +5 107nt, >M01687:476:000000000-LL5F5:1:1102:20367:5969_CONS(4)... at 1:107:1:106/+/98.13% +6 107nt, >M01687:476:000000000-LL5F5:1:1102:13466:6520_CONS(6)... at 1:107:1:106/+/98.13% +7 107nt, >M01687:476:000000000-LL5F5:1:1102:5544:6879_CONS(11)... at 1:107:1:106/+/98.13% +8 107nt, >M01687:476:000000000-LL5F5:1:1102:27929:7852_CONS(11)... at 1:107:1:106/+/98.13% +9 107nt, >M01687:476:000000000-LL5F5:1:1102:19363:8466_CONS(4)... at 1:107:1:106/+/98.13% +10 107nt, >M01687:476:000000000-LL5F5:1:1102:16921:8933_CONS(4)... at 1:107:1:106/+/98.13% +11 107nt, >M01687:476:000000000-LL5F5:1:1102:10807:9766_CONS(2)... at 1:107:1:106/+/98.13% +12 107nt, >M01687:476:000000000-LL5F5:1:1102:15329:10959_CONS(4)... at 1:107:1:106/+/98.13% +13 107nt, >M01687:476:000000000-LL5F5:1:1102:14788:11350_CONS(4)... at 1:107:1:106/+/98.13% +14 107nt, >M01687:476:000000000-LL5F5:1:1102:11271:11534_CONS(9)... at 1:107:1:106/+/98.13% +15 82nt, >M01687:476:000000000-LL5F5:1:1102:18001:12208_CONS(1)... at 1:82:1:82/+/98.78% +16 108nt, >M01687:476:000000000-LL5F5:1:1102:26554:13134_CONS(16)... at 1:108:1:106/+/98.15% +17 107nt, >M01687:476:000000000-LL5F5:1:1102:11018:13967_CONS(6)... at 1:107:1:106/+/98.13% +18 107nt, >M01687:476:000000000-LL5F5:1:1102:24788:14509_CONS(38)... at 1:107:1:106/+/98.13% +19 106nt, >M01687:476:000000000-LL5F5:1:1102:8669:14789_CONS(7)... at 1:106:1:105/+/99.06% +20 107nt, >M01687:476:000000000-LL5F5:1:1102:11964:15681_CONS(22)... at 1:107:1:106/+/98.13% +21 107nt, >M01687:476:000000000-LL5F5:1:1102:20486:17193_CONS(6)... at 1:107:1:106/+/98.13% +22 107nt, >M01687:476:000000000-LL5F5:1:1102:25365:18024_CONS(3)... at 1:107:1:106/+/98.13% +23 106nt, >M01687:476:000000000-LL5F5:1:1102:11005:18089_CONS(7)... at 1:106:1:106/+/99.06% +24 107nt, >M01687:476:000000000-LL5F5:1:1102:11567:18244_CONS(3)... at 1:107:1:106/+/98.13% +25 107nt, >M01687:476:000000000-LL5F5:1:1102:19984:19495_CONS(5)... at 1:107:1:106/+/98.13% +26 107nt, >M01687:476:000000000-LL5F5:1:1102:11610:19713_CONS(6)... at 1:107:1:106/+/98.13% +27 107nt, >M01687:476:000000000-LL5F5:1:1102:14972:20121_CONS(2)... at 1:107:1:106/+/98.13% +28 106nt, >M01687:476:000000000-LL5F5:1:1102:21137:20215_CONS(30)... at 1:106:1:106/+/99.06% +29 106nt, >M01687:476:000000000-LL5F5:1:1102:6391:22824_CONS(24)... at 1:106:1:106/+/99.06% +30 107nt, >M01687:476:000000000-LL5F5:1:1101:8527:3396_CONS(5)... at 1:107:1:106/+/98.13% +31 107nt, >M01687:476:000000000-LL5F5:1:1101:23505:3497_CONS(4)... at 1:107:1:106/+/98.13% +32 37nt, >M01687:476:000000000-LL5F5:1:1101:18336:8188_CONS(1)... at 1:37:1:37/+/97.30% +33 107nt, >M01687:476:000000000-LL5F5:1:1101:4068:8545_CONS(3)... at 1:107:1:106/+/98.13% +34 107nt, >M01687:476:000000000-LL5F5:1:1101:28469:8932_CONS(1)... at 1:107:1:106/+/98.13% +35 107nt, >M01687:476:000000000-LL5F5:1:1101:2421:10348_CONS(6)... at 1:107:1:106/+/98.13% +36 107nt, >M01687:476:000000000-LL5F5:1:1101:28700:10923_CONS(3)... at 1:107:1:106/+/98.13% +37 107nt, >M01687:476:000000000-LL5F5:1:1101:13170:11322_CONS(7)... at 1:107:1:106/+/98.13% +38 107nt, >M01687:476:000000000-LL5F5:1:1101:19583:11472_CONS(16)... at 1:107:1:106/+/98.13% +39 107nt, >M01687:476:000000000-LL5F5:1:1101:7725:11801_CONS(2)... at 1:107:1:106/+/98.13% +40 107nt, >M01687:476:000000000-LL5F5:1:1101:16454:14922_CONS(1)... at 1:107:1:106/+/97.20% +41 107nt, >M01687:476:000000000-LL5F5:1:1101:26131:17043_CONS(32)... at 1:107:1:106/+/98.13% +42 107nt, >M01687:476:000000000-LL5F5:1:1101:9482:17330_CONS(8)... at 1:107:1:106/+/98.13% +43 108nt, >M01687:476:000000000-LL5F5:1:1101:18515:18744_CONS(1)... at 1:108:1:106/+/98.15% +44 107nt, >M01687:476:000000000-LL5F5:1:1101:19239:19305_CONS(3)... at 1:107:1:106/+/98.13% +45 108nt, >M01687:476:000000000-LL5F5:1:1101:6612:20519_CONS(2)... at 2:108:1:106/+/98.15% +46 107nt, >M01687:476:000000000-LL5F5:1:1101:18505:20825_CONS(2)... at 1:107:1:106/+/98.13% +47 64nt, >M01687:476:000000000-LL5F5:1:1101:16520:20957_CONS(1)... at 1:64:1:64/+/100.00% +48 107nt, >M01687:476:000000000-LL5F5:1:1101:18552:23231_CONS(1)... at 1:107:1:106/+/98.13% +49 107nt, >M01687:476:000000000-LL5F5:1:2115:16466:1892_CONS(27)... at 1:107:1:106/+/98.13% +50 107nt, >M01687:476:000000000-LL5F5:1:2115:8556:2855_CONS(7)... at 1:107:1:106/+/98.13% +51 107nt, >M01687:476:000000000-LL5F5:1:2115:16326:2911_CONS(4)... at 1:107:1:106/+/98.13% +52 107nt, >M01687:476:000000000-LL5F5:1:2115:21713:4787_CONS(2)... at 1:107:1:106/+/98.13% +53 106nt, >M01687:476:000000000-LL5F5:1:2115:12264:5086_CONS(1)... at 1:106:1:106/+/98.11% +54 107nt, >M01687:476:000000000-LL5F5:1:2115:18205:5261_CONS(14)... at 1:107:1:106/+/98.13% +55 107nt, >M01687:476:000000000-LL5F5:1:2115:22843:8288_CONS(1)... at 1:107:1:106/+/97.20% +56 107nt, >M01687:476:000000000-LL5F5:1:2115:17549:9695_CONS(4)... at 1:107:1:106/+/98.13% +57 107nt, >M01687:476:000000000-LL5F5:1:2115:11917:10191_CONS(3)... at 1:107:1:106/+/98.13% +58 107nt, >M01687:476:000000000-LL5F5:1:2115:19857:16135_CONS(18)... at 1:107:1:111/+/98.13% +59 107nt, >M01687:476:000000000-LL5F5:1:2115:5917:16861_CONS(14)... at 1:107:1:106/+/98.13% +60 107nt, >M01687:476:000000000-LL5F5:1:2115:28317:17127_CONS(9)... at 1:107:1:106/+/98.13% +61 107nt, >M01687:476:000000000-LL5F5:1:2115:24596:18325_CONS(5)... at 1:107:1:106/+/98.13% +62 107nt, >M01687:476:000000000-LL5F5:1:2115:26170:18388_CONS(1)... at 1:107:1:106/+/98.13% +63 107nt, >M01687:476:000000000-LL5F5:1:2115:22881:19096_CONS(5)... at 1:107:1:106/+/98.13% +64 107nt, >M01687:476:000000000-LL5F5:1:2115:8296:22656_CONS(2)... at 1:107:1:106/+/98.13% +65 107nt, >M01687:476:000000000-LL5F5:1:2115:10623:23511_CONS(4)... at 1:107:1:106/+/98.13% +66 106nt, >M01687:476:000000000-LL5F5:1:2114:21871:4030_CONS(11)... at 1:106:1:106/+/99.06% +67 106nt, >M01687:476:000000000-LL5F5:1:2114:21053:4140_CONS(5)... at 1:106:1:106/+/99.06% +68 107nt, >M01687:476:000000000-LL5F5:1:2114:7039:4405_CONS(1)... at 1:107:1:106/+/98.13% +69 107nt, >M01687:476:000000000-LL5F5:1:2114:10377:5222_CONS(8)... at 1:107:1:106/+/98.13% +70 107nt, >M01687:476:000000000-LL5F5:1:2114:4454:5948_CONS(1)... at 1:107:1:106/+/97.20% +71 107nt, >M01687:476:000000000-LL5F5:1:2114:6947:8435_CONS(2)... at 1:107:1:106/+/98.13% +72 106nt, >M01687:476:000000000-LL5F5:1:2114:9639:9091_CONS(1)... at 1:106:1:106/+/98.11% +73 107nt, >M01687:476:000000000-LL5F5:1:2114:28319:9974_CONS(7)... at 1:107:1:106/+/98.13% +74 107nt, >M01687:476:000000000-LL5F5:1:2114:23889:11366_CONS(2)... at 1:107:1:106/+/98.13% +75 106nt, >M01687:476:000000000-LL5F5:1:2114:15775:13060_CONS(2)... at 1:106:1:106/+/100.00% +76 106nt, >M01687:476:000000000-LL5F5:1:2114:20157:14270_CONS(2)... at 1:106:1:106/+/99.06% +77 106nt, >M01687:476:000000000-LL5F5:1:2114:6686:15919_CONS(32)... at 1:106:1:106/+/99.06% +78 107nt, >M01687:476:000000000-LL5F5:1:2114:10905:16961_CONS(2)... at 1:107:1:106/+/98.13% +79 107nt, >M01687:476:000000000-LL5F5:1:2114:19765:19609_CONS(1)... at 1:107:1:106/+/97.20% +80 107nt, >M01687:476:000000000-LL5F5:1:2114:12727:19780_CONS(1)... at 1:107:1:106/+/98.13% +81 107nt, >M01687:476:000000000-LL5F5:1:2114:22579:19812_CONS(5)... at 1:107:1:106/+/98.13% +82 106nt, >M01687:476:000000000-LL5F5:1:2114:4419:21312_CONS(11)... at 1:106:2:106/+/99.06% +83 107nt, >M01687:476:000000000-LL5F5:1:2114:23299:22053_CONS(1)... at 1:107:1:106/+/98.13% +84 107nt, >M01687:476:000000000-LL5F5:1:2113:8927:1506_CONS(6)... at 1:107:1:106/+/98.13% +85 107nt, >M01687:476:000000000-LL5F5:1:2113:19906:4842_CONS(5)... at 1:107:1:106/+/98.13% +86 107nt, >M01687:476:000000000-LL5F5:1:2113:18827:6609_CONS(3)... at 1:107:1:106/+/98.13% +87 107nt, >M01687:476:000000000-LL5F5:1:2113:7275:6827_CONS(1)... at 1:107:1:106/+/98.13% +88 107nt, >M01687:476:000000000-LL5F5:1:2113:17778:7795_CONS(1)... at 1:107:1:106/+/98.13% +89 107nt, >M01687:476:000000000-LL5F5:1:2113:19467:8995_CONS(2)... at 1:107:1:106/+/98.13% +90 107nt, >M01687:476:000000000-LL5F5:1:2113:17250:11658_CONS(1)... at 1:107:1:106/+/97.20% +91 107nt, >M01687:476:000000000-LL5F5:1:2113:11985:12156_CONS(2)... at 1:107:1:106/+/98.13% +92 106nt, >M01687:476:000000000-LL5F5:1:2113:9816:15017_CONS(1)... at 1:106:1:106/+/98.11% +93 107nt, >M01687:476:000000000-LL5F5:1:2113:13202:15160_CONS(2)... at 1:107:1:111/+/99.07% +94 107nt, >M01687:476:000000000-LL5F5:1:2113:6296:17842_CONS(4)... at 1:107:1:106/+/98.13% +95 107nt, >M01687:476:000000000-LL5F5:1:2113:11866:20595_CONS(7)... at 1:107:1:106/+/98.13% +96 107nt, >M01687:476:000000000-LL5F5:1:2113:23706:20841_CONS(4)... at 1:107:1:106/+/98.13% +97 107nt, >M01687:476:000000000-LL5F5:1:2112:9601:1205_CONS(11)... at 1:107:1:106/+/98.13% +98 107nt, >M01687:476:000000000-LL5F5:1:2112:14130:3207_CONS(6)... at 1:107:1:106/+/98.13% +99 107nt, >M01687:476:000000000-LL5F5:1:2112:6378:3366_CONS(7)... at 1:107:1:106/+/98.13% +100 38nt, >M01687:476:000000000-LL5F5:1:2112:13022:4307_CONS(1)... at 1:38:1:38/+/97.37% +101 106nt, >M01687:476:000000000-LL5F5:1:2112:7677:5096_CONS(7)... at 1:106:1:106/+/98.11% +102 107nt, >M01687:476:000000000-LL5F5:1:2112:10093:5318_CONS(3)... at 1:107:1:106/+/98.13% +103 107nt, >M01687:476:000000000-LL5F5:1:2112:24002:5615_CONS(1)... at 1:107:1:106/+/97.20% +104 106nt, >M01687:476:000000000-LL5F5:1:2112:9901:6311_CONS(1)... at 1:106:1:106/+/99.06% +105 107nt, >M01687:476:000000000-LL5F5:1:2112:25646:10642_CONS(6)... at 1:107:1:106/+/98.13% +106 107nt, >M01687:476:000000000-LL5F5:1:2112:5267:12007_CONS(6)... at 1:107:1:106/+/98.13% +107 107nt, >M01687:476:000000000-LL5F5:1:2112:16217:13864_CONS(1)... at 1:107:1:106/+/98.13% +108 107nt, >M01687:476:000000000-LL5F5:1:2112:10653:16540_CONS(6)... at 1:107:1:106/+/98.13% +109 107nt, >M01687:476:000000000-LL5F5:1:2112:13623:17536_CONS(6)... at 1:107:1:106/+/98.13% +110 42nt, >M01687:476:000000000-LL5F5:1:2112:26536:18084_CONS(1)... at 1:42:1:42/+/97.62% +111 107nt, >M01687:476:000000000-LL5F5:1:2112:10058:18937_CONS(9)... at 1:107:1:106/+/98.13% +112 107nt, >M01687:476:000000000-LL5F5:1:2112:28221:19311_CONS(7)... at 1:107:1:106/+/98.13% +113 106nt, >M01687:476:000000000-LL5F5:1:2112:20199:21849_CONS(1)... at 1:106:1:106/+/98.11% +114 63nt, >M01687:476:000000000-LL5F5:1:2112:21235:23240_CONS(1)... at 1:63:1:63/+/98.41% +115 106nt, >M01687:476:000000000-LL5F5:1:2112:16083:24116_CONS(3)... at 1:106:1:106/+/99.06% +116 107nt, >M01687:476:000000000-LL5F5:1:2111:20102:1454_CONS(3)... at 1:107:1:106/+/98.13% +117 107nt, >M01687:476:000000000-LL5F5:1:2111:13819:2178_CONS(1)... at 1:107:1:106/+/98.13% +118 107nt, >M01687:476:000000000-LL5F5:1:2111:16615:2711_CONS(1)... at 1:107:1:106/+/99.07% +119 107nt, >M01687:476:000000000-LL5F5:1:2111:20759:3089_CONS(2)... at 1:107:1:106/+/98.13% +120 103nt, >M01687:476:000000000-LL5F5:1:2111:20669:5371_CONS(1)... at 1:103:1:106/+/100.00% +121 107nt, >M01687:476:000000000-LL5F5:1:2111:7626:7338_CONS(1)... at 1:107:1:106/+/97.20% +122 107nt, >M01687:476:000000000-LL5F5:1:2111:9813:8008_CONS(2)... at 1:107:1:106/+/98.13% +123 107nt, >M01687:476:000000000-LL5F5:1:2111:24399:8966_CONS(3)... at 1:107:1:106/+/98.13% +124 107nt, >M01687:476:000000000-LL5F5:1:2111:5267:12290_CONS(3)... at 1:107:1:106/+/98.13% +125 107nt, >M01687:476:000000000-LL5F5:1:2111:21534:14092_CONS(2)... at 1:107:1:106/+/98.13% +126 107nt, >M01687:476:000000000-LL5F5:1:2111:14444:17441_CONS(1)... at 1:107:1:106/+/98.13% +127 107nt, >M01687:476:000000000-LL5F5:1:2111:22308:19011_CONS(2)... at 1:107:1:106/+/98.13% +128 107nt, >M01687:476:000000000-LL5F5:1:2111:15956:20500_CONS(11)... at 1:107:1:106/+/98.13% +129 107nt, >M01687:476:000000000-LL5F5:1:2111:15315:21394_CONS(5)... at 1:107:1:106/+/98.13% +130 107nt, >M01687:476:000000000-LL5F5:1:2111:11550:21710_CONS(3)... at 1:107:1:106/+/98.13% +131 106nt, >M01687:476:000000000-LL5F5:1:2111:14755:21963_CONS(5)... at 1:106:1:106/+/99.06% +132 107nt, >M01687:476:000000000-LL5F5:1:2111:11211:23376_CONS(3)... at 1:107:1:106/+/98.13% +133 107nt, >M01687:476:000000000-LL5F5:1:2110:10455:3975_CONS(3)... at 1:107:1:106/+/98.13% +134 107nt, >M01687:476:000000000-LL5F5:1:2110:12499:4230_CONS(2)... at 1:107:1:106/+/98.13% +135 107nt, >M01687:476:000000000-LL5F5:1:2110:12229:5823_CONS(1)... at 1:107:1:106/+/98.13% +136 107nt, >M01687:476:000000000-LL5F5:1:2110:9760:6246_CONS(2)... at 1:107:1:106/+/98.13% +137 107nt, >M01687:476:000000000-LL5F5:1:2110:5947:6919_CONS(1)... at 1:107:1:106/+/98.13% +138 106nt, >M01687:476:000000000-LL5F5:1:2110:26458:9988_CONS(1)... at 1:106:1:106/+/99.06% +139 107nt, >M01687:476:000000000-LL5F5:1:2110:18589:13047_CONS(1)... at 1:107:1:106/+/97.20% +140 107nt, >M01687:476:000000000-LL5F5:1:2110:12883:15996_CONS(6)... at 1:107:1:106/+/98.13% +141 107nt, >M01687:476:000000000-LL5F5:1:2110:23069:17557_CONS(5)... at 1:107:1:106/+/98.13% +142 107nt, >M01687:476:000000000-LL5F5:1:2110:24966:19097_CONS(1)... at 1:107:1:106/+/97.20% +143 103nt, >M01687:476:000000000-LL5F5:1:2110:20427:21553_CONS(1)... at 1:103:1:106/+/99.03% +144 107nt, >M01687:476:000000000-LL5F5:1:2110:14086:24530_CONS(1)... at 1:107:1:106/+/98.13% +145 104nt, >M01687:476:000000000-LL5F5:1:2109:13325:1245_CONS(1)... at 1:104:1:104/+/98.08% +146 106nt, >M01687:476:000000000-LL5F5:1:2109:12733:1327_CONS(5)... at 1:106:1:106/+/99.06% +147 107nt, >M01687:476:000000000-LL5F5:1:2109:13679:5308_CONS(5)... at 1:107:1:106/+/98.13% +148 107nt, >M01687:476:000000000-LL5F5:1:2109:26069:7018_CONS(3)... at 1:107:1:106/+/98.13% +149 107nt, >M01687:476:000000000-LL5F5:1:2109:10479:8162_CONS(11)... at 1:107:1:107/+/97.20% +150 107nt, >M01687:476:000000000-LL5F5:1:2109:27750:10338_CONS(2)... at 1:107:1:106/+/98.13% +151 107nt, >M01687:476:000000000-LL5F5:1:2109:18457:13063_CONS(2)... at 1:107:1:106/+/98.13% +152 107nt, >M01687:476:000000000-LL5F5:1:2109:16091:14044_CONS(4)... at 1:107:1:106/+/98.13% +153 107nt, >M01687:476:000000000-LL5F5:1:2109:16766:14398_CONS(1)... at 1:107:1:106/+/98.13% +154 107nt, >M01687:476:000000000-LL5F5:1:2109:20174:15009_CONS(1)... at 1:107:1:106/+/98.13% +155 107nt, >M01687:476:000000000-LL5F5:1:2109:21596:16486_CONS(7)... at 1:107:1:106/+/98.13% +156 107nt, >M01687:476:000000000-LL5F5:1:2109:3638:18057_CONS(2)... at 1:107:1:106/+/98.13% +157 107nt, >M01687:476:000000000-LL5F5:1:2109:8172:18215_CONS(12)... at 1:107:1:106/+/98.13% +158 107nt, >M01687:476:000000000-LL5F5:1:2109:10430:22067_CONS(2)... at 1:107:1:106/+/97.20% +159 107nt, >M01687:476:000000000-LL5F5:1:2109:20216:24723_CONS(2)... at 1:107:1:106/+/98.13% +160 107nt, >M01687:476:000000000-LL5F5:1:2109:19931:24881_CONS(2)... at 1:107:1:106/+/98.13% +161 107nt, >M01687:476:000000000-LL5F5:1:2108:15727:3998_CONS(1)... at 1:107:1:106/+/98.13% +162 107nt, >M01687:476:000000000-LL5F5:1:2108:12857:8430_CONS(7)... at 1:107:1:106/+/98.13% +163 106nt, >M01687:476:000000000-LL5F5:1:2108:2999:9818_CONS(1)... at 1:106:1:106/+/98.11% +164 107nt, >M01687:476:000000000-LL5F5:1:2108:5782:11159_CONS(4)... at 1:107:1:106/+/98.13% +165 107nt, >M01687:476:000000000-LL5F5:1:2108:26310:14890_CONS(2)... at 1:107:1:106/+/98.13% +166 107nt, >M01687:476:000000000-LL5F5:1:2108:21982:18177_CONS(1)... at 1:107:1:106/+/97.20% +167 107nt, >M01687:476:000000000-LL5F5:1:2108:15803:20074_CONS(1)... at 1:107:1:106/+/98.13% +168 107nt, >M01687:476:000000000-LL5F5:1:2108:23624:21849_CONS(1)... at 1:107:1:106/+/98.13% +169 106nt, >M01687:476:000000000-LL5F5:1:2108:8717:23166_CONS(1)... at 1:106:1:106/+/98.11% +170 107nt, >M01687:476:000000000-LL5F5:1:2108:17629:23245_CONS(1)... at 1:107:1:106/+/98.13% +171 107nt, >M01687:476:000000000-LL5F5:1:2106:23679:5149_CONS(2)... at 1:107:1:106/+/98.13% +172 107nt, >M01687:476:000000000-LL5F5:1:2106:8276:5388_CONS(1)... at 1:107:1:106/+/98.13% +173 107nt, >M01687:476:000000000-LL5F5:1:2106:27332:6629_CONS(3)... at 1:107:1:106/+/98.13% +174 107nt, >M01687:476:000000000-LL5F5:1:2106:12297:13752_CONS(1)... at 1:107:1:106/+/97.20% +175 107nt, >M01687:476:000000000-LL5F5:1:2106:28927:15154_CONS(4)... at 1:107:1:106/+/98.13% +176 107nt, >M01687:476:000000000-LL5F5:1:2106:25745:15987_CONS(3)... at 1:107:1:106/+/98.13% +177 106nt, >M01687:476:000000000-LL5F5:1:2106:3086:17876_CONS(5)... at 1:106:1:106/+/99.06% +178 107nt, >M01687:476:000000000-LL5F5:1:2106:21631:24319_CONS(3)... at 1:107:1:106/+/98.13% +179 107nt, >M01687:476:000000000-LL5F5:1:2107:11880:2107_CONS(2)... at 1:107:1:106/+/98.13% +180 106nt, >M01687:476:000000000-LL5F5:1:2107:7413:2869_CONS(1)... at 1:106:1:106/+/98.11% +181 106nt, >M01687:476:000000000-LL5F5:1:2107:20115:5570_CONS(3)... at 1:106:2:106/+/98.11% +182 106nt, >M01687:476:000000000-LL5F5:1:2107:17209:7999_CONS(1)... at 1:106:1:105/+/98.11% +183 106nt, >M01687:476:000000000-LL5F5:1:2107:20177:8810_CONS(2)... at 1:106:1:106/+/98.11% +184 107nt, >M01687:476:000000000-LL5F5:1:2107:6871:9199_CONS(1)... at 1:107:1:106/+/98.13% +185 106nt, >M01687:476:000000000-LL5F5:1:2107:27554:10000_CONS(4)... at 1:106:1:106/+/98.11% +186 107nt, >M01687:476:000000000-LL5F5:1:2107:6971:10086_CONS(2)... at 1:107:1:106/+/98.13% +187 107nt, >M01687:476:000000000-LL5F5:1:2107:7797:10215_CONS(1)... at 1:107:1:106/+/98.13% +188 107nt, >M01687:476:000000000-LL5F5:1:2107:19379:12845_CONS(6)... at 1:107:1:106/+/98.13% +189 107nt, >M01687:476:000000000-LL5F5:1:2107:25181:13011_CONS(2)... at 1:107:1:106/+/98.13% +190 107nt, >M01687:476:000000000-LL5F5:1:2107:9367:21037_CONS(1)... at 1:107:1:106/+/98.13% +191 107nt, >M01687:476:000000000-LL5F5:1:2107:10681:21887_CONS(1)... at 1:107:1:106/+/98.13% +192 107nt, >M01687:476:000000000-LL5F5:1:2104:23402:1523_CONS(3)... at 1:107:1:106/+/98.13% +193 107nt, >M01687:476:000000000-LL5F5:1:2104:23519:2792_CONS(1)... at 1:107:1:106/+/98.13% +194 107nt, >M01687:476:000000000-LL5F5:1:2104:19056:3968_CONS(3)... at 1:107:1:106/+/98.13% +195 107nt, >M01687:476:000000000-LL5F5:1:2104:18924:12085_CONS(2)... at 1:107:1:106/+/98.13% +196 106nt, >M01687:476:000000000-LL5F5:1:2104:24455:14224_CONS(1)... at 1:106:1:105/+/98.11% +197 107nt, >M01687:476:000000000-LL5F5:1:2104:13544:17246_CONS(1)... at 1:107:1:106/+/98.13% +198 107nt, >M01687:476:000000000-LL5F5:1:2104:5837:21133_CONS(1)... at 1:107:1:106/+/98.13% +199 107nt, >M01687:476:000000000-LL5F5:1:2104:17333:22274_CONS(4)... at 1:107:1:106/+/98.13% +200 107nt, >M01687:476:000000000-LL5F5:1:2104:24177:23584_CONS(3)... at 1:107:1:106/+/98.13% +201 107nt, >M01687:476:000000000-LL5F5:1:2105:10475:4415_CONS(1)... at 1:107:1:106/+/98.13% +202 107nt, >M01687:476:000000000-LL5F5:1:2105:26400:5558_CONS(1)... at 1:107:1:106/+/98.13% +203 107nt, >M01687:476:000000000-LL5F5:1:2105:28609:11036_CONS(1)... at 1:107:1:106/+/97.20% +204 108nt, >M01687:476:000000000-LL5F5:1:2105:16392:11653_CONS(1)... at 1:108:1:106/+/97.22% +205 105nt, >M01687:476:000000000-LL5F5:1:2105:21651:12023_CONS(1)... at 1:105:3:106/+/99.05% +206 107nt, >M01687:476:000000000-LL5F5:1:2105:4763:13375_CONS(1)... at 1:107:1:106/+/98.13% +207 107nt, >M01687:476:000000000-LL5F5:1:2105:21201:14979_CONS(1)... at 1:107:1:106/+/98.13% +208 107nt, >M01687:476:000000000-LL5F5:1:2105:17211:23346_CONS(1)... at 1:107:1:106/+/98.13% +209 107nt, >M01687:476:000000000-LL5F5:1:2105:14011:24718_CONS(3)... at 1:107:1:106/+/98.13% +210 107nt, >M01687:476:000000000-LL5F5:1:2102:16535:3109_CONS(1)... at 1:107:1:106/+/98.13% +211 107nt, >M01687:476:000000000-LL5F5:1:2102:7338:5375_CONS(1)... at 1:107:1:106/+/97.20% +212 107nt, >M01687:476:000000000-LL5F5:1:2102:13865:6086_CONS(1)... at 1:107:1:106/+/97.20% +213 107nt, >M01687:476:000000000-LL5F5:1:2102:27190:7023_CONS(5)... at 1:107:1:106/+/98.13% +214 106nt, >M01687:476:000000000-LL5F5:1:2102:7980:8391_CONS(1)... at 1:106:1:106/+/98.11% +215 105nt, >M01687:476:000000000-LL5F5:1:2102:28882:11920_CONS(1)... at 1:105:1:106/+/99.05% +216 107nt, >M01687:476:000000000-LL5F5:1:2102:20605:13467_CONS(1)... at 1:107:1:106/+/98.13% +217 107nt, >M01687:476:000000000-LL5F5:1:2102:13301:14835_CONS(1)... at 1:107:1:106/+/97.20% +218 107nt, >M01687:476:000000000-LL5F5:1:2102:28887:16447_CONS(3)... at 1:107:1:106/+/98.13% +219 107nt, >M01687:476:000000000-LL5F5:1:2102:22607:21112_CONS(1)... at 1:107:1:106/+/97.20% +220 105nt, >M01687:476:000000000-LL5F5:1:2102:22901:21613_CONS(1)... at 1:105:1:106/+/97.14% +221 107nt, >M01687:476:000000000-LL5F5:1:2102:8220:22327_CONS(1)... at 1:107:1:106/+/97.20% +222 106nt, >M01687:476:000000000-LL5F5:1:2102:11773:23476_CONS(1)... at 1:106:1:106/+/98.11% +223 107nt, >M01687:476:000000000-LL5F5:1:2103:26443:4488_CONS(1)... at 1:107:1:106/+/97.20% +224 106nt, >M01687:476:000000000-LL5F5:1:2103:21003:6858_CONS(1)... at 1:106:1:106/+/98.11% +225 106nt, >M01687:476:000000000-LL5F5:1:2103:25675:7558_CONS(1)... at 1:106:1:106/+/99.06% +226 107nt, >M01687:476:000000000-LL5F5:1:2103:9298:10200_CONS(3)... at 1:107:1:106/+/98.13% +227 106nt, >M01687:476:000000000-LL5F5:1:2103:20398:11673_CONS(1)... at 1:106:1:106/+/98.11% +228 108nt, >M01687:476:000000000-LL5F5:1:2103:29093:12809_CONS(2)... at 1:108:1:106/+/97.22% +229 102nt, >M01687:476:000000000-LL5F5:1:2103:6037:18554_CONS(1)... at 1:102:6:106/+/99.02% +230 106nt, >M01687:476:000000000-LL5F5:1:2103:8463:18836_CONS(1)... at 1:106:1:106/+/99.06% +231 107nt, >M01687:476:000000000-LL5F5:1:2103:11110:19923_CONS(1)... at 1:107:1:106/+/98.13% +232 106nt, >M01687:476:000000000-LL5F5:1:2103:11864:20741_CONS(1)... at 1:106:1:106/+/98.11% +233 107nt, >M01687:476:000000000-LL5F5:1:2116:21141:3724_CONS(4)... at 1:107:1:106/+/98.13% +234 107nt, >M01687:476:000000000-LL5F5:1:2116:24768:7426_CONS(1)... at 1:107:1:106/+/97.20% +235 106nt, >M01687:476:000000000-LL5F5:1:2116:12289:9789_CONS(1)... at 1:106:1:106/+/98.11% +236 107nt, >M01687:476:000000000-LL5F5:1:2116:4343:14951_CONS(2)... at 1:107:1:106/+/98.13% +237 54nt, >M01687:476:000000000-LL5F5:1:2116:26013:15301_CONS(1)... at 1:54:1:54/+/100.00% +238 106nt, >M01687:476:000000000-LL5F5:1:2116:7260:15495_CONS(5)... at 1:106:1:106/+/99.06% +239 107nt, >M01687:476:000000000-LL5F5:1:2116:25807:21411_CONS(2)... at 1:107:1:106/+/98.13% +240 107nt, >M01687:476:000000000-LL5F5:1:2116:16260:22595_CONS(1)... at 1:107:1:106/+/97.20% +241 106nt, >M01687:476:000000000-LL5F5:1:2116:15389:24301_CONS(3)... at 1:106:1:106/+/99.06% +242 107nt, >M01687:476:000000000-LL5F5:1:2117:10047:3984_CONS(1)... at 1:107:1:106/+/97.20% +243 57nt, >M01687:476:000000000-LL5F5:1:2117:13878:5894_CONS(2)... at 1:57:1:57/+/100.00% +244 107nt, >M01687:476:000000000-LL5F5:1:2117:23013:8523_CONS(2)... at 1:107:1:106/+/97.20% +245 42nt, >M01687:476:000000000-LL5F5:1:2117:28661:9670_CONS(1)... at 1:42:1:42/+/100.00% +246 106nt, >M01687:476:000000000-LL5F5:1:2117:24170:14027_CONS(1)... at 1:106:1:106/+/99.06% +247 106nt, >M01687:476:000000000-LL5F5:1:2117:12568:22075_CONS(3)... at 1:106:1:106/+/99.06% +248 107nt, >M01687:476:000000000-LL5F5:1:1119:20303:4264_CONS(1)... at 1:107:1:106/+/98.13% +249 107nt, >M01687:476:000000000-LL5F5:1:1119:23581:8244_CONS(1)... at 1:107:1:106/+/98.13% +250 99nt, >M01687:476:000000000-LL5F5:1:1119:21125:9218_CONS(1)... at 1:99:1:99/+/100.00% +251 107nt, >M01687:476:000000000-LL5F5:1:1119:8350:11632_CONS(3)... at 1:107:1:106/+/98.13% +252 104nt, >M01687:476:000000000-LL5F5:1:1119:11412:14004_CONS(1)... at 1:104:1:106/+/98.08% +253 107nt, >M01687:476:000000000-LL5F5:1:1119:6320:15296_CONS(2)... at 1:107:1:106/+/98.13% +254 107nt, >M01687:476:000000000-LL5F5:1:1119:25211:15330_CONS(1)... at 1:107:1:106/+/97.20% +255 107nt, >M01687:476:000000000-LL5F5:1:1119:29156:17012_CONS(1)... at 1:107:1:106/+/97.20% +256 107nt, >M01687:476:000000000-LL5F5:1:1119:10332:17754_CONS(1)... at 1:107:1:106/+/98.13% +257 107nt, >M01687:476:000000000-LL5F5:1:1119:28189:19385_CONS(4)... at 1:107:1:106/+/98.13% +258 107nt, >M01687:476:000000000-LL5F5:1:1119:19546:24619_CONS(2)... at 1:107:1:106/+/98.13% +259 107nt, >M01687:476:000000000-LL5F5:1:2101:14200:1318_CONS(1)... at 1:107:1:106/+/98.13% +260 106nt, >M01687:476:000000000-LL5F5:1:2101:24465:6054_CONS(1)... at 1:106:1:106/+/98.11% +261 107nt, >M01687:476:000000000-LL5F5:1:2101:4129:7954_CONS(4)... at 1:107:1:106/+/98.13% +262 107nt, >M01687:476:000000000-LL5F5:1:2101:12860:11060_CONS(1)... at 1:107:1:106/+/98.13% +263 107nt, >M01687:476:000000000-LL5F5:1:2101:14152:17463_CONS(2)... at 1:107:1:106/+/98.13% +264 107nt, >M01687:476:000000000-LL5F5:1:2101:19225:17844_CONS(1)... at 1:107:1:106/+/98.13% +265 190nt, >M01687:476:000000000-LL5F5:1:2101:16397:17914_PairEnd(1)... at 1:190:1:189/+/99.47% +266 107nt, >M01687:476:000000000-LL5F5:1:2101:14319:18242_CONS(2)... at 1:107:1:106/+/98.13% +267 107nt, >M01687:476:000000000-LL5F5:1:2101:24238:19363_CONS(1)... at 1:107:1:106/+/98.13% +268 107nt, >M01687:476:000000000-LL5F5:1:2101:27607:19947_CONS(2)... at 1:107:1:106/+/98.13% +269 49nt, >M01687:476:000000000-LL5F5:1:2101:23757:22254_CONS(1)... at 1:49:1:49/+/97.96% +270 107nt, >M01687:476:000000000-LL5F5:1:1115:21481:2772_CONS(1)... at 1:107:1:106/+/97.20% +271 106nt, >M01687:476:000000000-LL5F5:1:1115:13669:9916_CONS(1)... at 1:106:1:106/+/99.06% +272 107nt, >M01687:476:000000000-LL5F5:1:1115:21005:10248_CONS(1)... at 1:107:1:106/+/97.20% +273 107nt, >M01687:476:000000000-LL5F5:1:1115:17950:10833_CONS(1)... at 1:107:1:106/+/98.13% +274 106nt, >M01687:476:000000000-LL5F5:1:1115:17918:14777_CONS(1)... at 1:106:1:106/+/99.06% +275 107nt, >M01687:476:000000000-LL5F5:1:1115:5082:15761_CONS(1)... at 1:107:1:106/+/98.13% +276 27nt, >M01687:476:000000000-LL5F5:1:1115:19495:15905_CONS(3)... at 1:27:1:27/+/100.00% +277 107nt, >M01687:476:000000000-LL5F5:1:1115:12266:16201_CONS(3)... at 1:107:1:106/+/98.13% +278 107nt, >M01687:476:000000000-LL5F5:1:1115:25592:17573_CONS(1)... at 1:107:1:106/+/97.20% +279 107nt, >M01687:476:000000000-LL5F5:1:1115:5540:18143_CONS(1)... at 1:107:1:106/+/97.20% +280 107nt, >M01687:476:000000000-LL5F5:1:1116:21565:1233_CONS(1)... at 1:107:1:106/+/97.20% +281 107nt, >M01687:476:000000000-LL5F5:1:1116:15442:2761_CONS(2)... at 1:107:1:106/+/97.20% +282 107nt, >M01687:476:000000000-LL5F5:1:1116:29169:11235_CONS(3)... at 1:107:1:106/+/98.13% +283 107nt, >M01687:476:000000000-LL5F5:1:1116:24672:15005_CONS(1)... at 1:107:1:106/+/97.20% +284 108nt, >M01687:476:000000000-LL5F5:1:1116:4391:15511_CONS(1)... at 1:108:1:106/+/97.22% +285 107nt, >M01687:476:000000000-LL5F5:1:1116:28414:17842_CONS(1)... at 1:107:1:106/+/97.20% +286 108nt, >M01687:476:000000000-LL5F5:1:1116:7796:23286_CONS(1)... at 1:108:1:106/+/98.15% +287 107nt, >M01687:476:000000000-LL5F5:1:1116:24189:23791_CONS(1)... at 1:107:1:106/+/97.20% +288 106nt, >M01687:476:000000000-LL5F5:1:1114:21753:1678_CONS(1)... at 1:106:1:106/+/98.11% +289 108nt, >M01687:476:000000000-LL5F5:1:1114:14892:2300_CONS(1)... at 1:108:1:107/+/99.07% +290 107nt, >M01687:476:000000000-LL5F5:1:1114:17772:6505_CONS(1)... at 1:107:1:106/+/98.13% +291 107nt, >M01687:476:000000000-LL5F5:1:1114:2289:9988_CONS(1)... at 1:107:1:106/+/97.20% +292 108nt, >M01687:476:000000000-LL5F5:1:1114:27959:13365_CONS(1)... at 1:108:1:106/+/97.22% +293 58nt, >M01687:476:000000000-LL5F5:1:1114:10548:19003_CONS(1)... at 1:58:1:58/+/100.00% +294 106nt, >M01687:476:000000000-LL5F5:1:1114:20355:19644_CONS(1)... at 1:106:1:106/+/98.11% +295 107nt, >M01687:476:000000000-LL5F5:1:1114:23574:22719_CONS(2)... at 1:107:1:106/+/98.13% +296 107nt, >M01687:476:000000000-LL5F5:1:1113:17418:1185_CONS(1)... at 1:107:1:106/+/98.13% +297 106nt, >M01687:476:000000000-LL5F5:1:1113:15527:1936_CONS(1)... at 1:106:1:106/+/97.17% +298 107nt, >M01687:476:000000000-LL5F5:1:1113:24093:5569_CONS(1)... at 1:107:1:106/+/97.20% +299 106nt, >M01687:476:000000000-LL5F5:1:1113:11838:6859_CONS(1)... at 1:106:1:106/+/98.11% +300 107nt, >M01687:476:000000000-LL5F5:1:1113:13580:8591_CONS(1)... at 1:107:1:106/+/97.20% +301 107nt, >M01687:476:000000000-LL5F5:1:1113:20729:12552_CONS(2)... at 1:107:1:106/+/98.13% +302 107nt, >M01687:476:000000000-LL5F5:1:1113:20365:12686_CONS(2)... at 1:107:1:106/+/98.13% +303 107nt, >M01687:476:000000000-LL5F5:1:1113:2094:12966_CONS(1)... at 1:107:1:106/+/97.20% +304 107nt, >M01687:476:000000000-LL5F5:1:1113:5263:13215_CONS(1)... at 1:107:1:106/+/97.20% +305 31nt, >M01687:476:000000000-LL5F5:1:1113:20264:17334_CONS(1)... at 1:31:1:31/+/100.00% +306 107nt, >M01687:476:000000000-LL5F5:1:1113:25268:17466_CONS(1)... at 1:107:1:106/+/98.13% +307 56nt, >M01687:476:000000000-LL5F5:1:1112:25971:4510_CONS(1)... at 1:56:1:56/+/98.21% +308 107nt, >M01687:476:000000000-LL5F5:1:1112:5905:10335_CONS(2)... at 1:107:1:106/+/98.13% +309 107nt, >M01687:476:000000000-LL5F5:1:1112:27604:12536_CONS(1)... at 1:107:1:106/+/97.20% +310 107nt, >M01687:476:000000000-LL5F5:1:1112:15527:13451_CONS(1)... at 1:107:1:106/+/97.20% +311 107nt, >M01687:476:000000000-LL5F5:1:1112:21159:15338_CONS(2)... at 1:107:1:106/+/98.13% +312 107nt, >M01687:476:000000000-LL5F5:1:1112:3956:15707_CONS(3)... at 1:107:1:106/+/98.13% +313 106nt, >M01687:476:000000000-LL5F5:1:1112:10336:21028_CONS(1)... at 1:106:1:106/+/98.11% +314 107nt, >M01687:476:000000000-LL5F5:1:1112:7941:24252_CONS(1)... at 1:107:1:106/+/97.20% +315 107nt, >M01687:476:000000000-LL5F5:1:1111:17285:5633_CONS(1)... at 1:107:1:106/+/98.13% +316 107nt, >M01687:476:000000000-LL5F5:1:1111:3094:7153_CONS(1)... at 1:107:1:106/+/97.20% +317 107nt, >M01687:476:000000000-LL5F5:1:1111:18128:8014_CONS(2)... at 1:107:1:106/+/98.13% +318 107nt, >M01687:476:000000000-LL5F5:1:1110:25516:9197_CONS(1)... at 1:107:1:106/+/98.13% +319 107nt, >M01687:476:000000000-LL5F5:1:1110:4331:10041_CONS(1)... at 1:107:1:106/+/98.13% +320 107nt, >M01687:476:000000000-LL5F5:1:1110:19661:12662_CONS(2)... at 1:107:1:106/+/98.13% +321 108nt, >M01687:476:000000000-LL5F5:1:1110:13230:13203_CONS(1)... at 1:108:1:106/+/98.15% +322 98nt, >M01687:476:000000000-LL5F5:1:1110:27416:13440_CONS(1)... at 1:98:10:106/+/98.98% +323 74nt, >M01687:476:000000000-LL5F5:1:1110:10928:14376_CONS(1)... at 1:74:1:74/+/100.00% +324 107nt, >M01687:476:000000000-LL5F5:1:1110:27939:19807_CONS(1)... at 1:107:1:106/+/98.13% +325 105nt, >M01687:476:000000000-LL5F5:1:1110:13741:23439_CONS(2)... at 1:105:1:106/+/100.00% +326 108nt, >M01687:476:000000000-LL5F5:1:1109:11594:2642_CONS(1)... at 1:108:1:106/+/98.15% +327 106nt, >M01687:476:000000000-LL5F5:1:1109:24995:2786_CONS(2)... at 1:106:1:106/+/99.06% +328 107nt, >M01687:476:000000000-LL5F5:1:1109:16983:7028_CONS(1)... at 1:107:1:106/+/97.20% +329 107nt, >M01687:476:000000000-LL5F5:1:1109:12512:9233_CONS(1)... at 1:107:1:106/+/97.20% +330 107nt, >M01687:476:000000000-LL5F5:1:1109:4220:14479_CONS(1)... at 1:107:1:106/+/97.20% +331 107nt, >M01687:476:000000000-LL5F5:1:1109:23113:18505_CONS(2)... at 1:107:1:106/+/98.13% +332 107nt, >M01687:476:000000000-LL5F5:1:1109:6296:23001_CONS(1)... at 1:107:1:106/+/98.13% +333 107nt, >M01687:476:000000000-LL5F5:1:1109:24312:23373_CONS(1)... at 1:107:1:106/+/98.13% +334 107nt, >M01687:476:000000000-LL5F5:1:1108:21541:2152_CONS(1)... at 1:107:1:106/+/97.20% +335 106nt, >M01687:476:000000000-LL5F5:1:1108:4963:8941_CONS(1)... at 1:106:1:106/+/98.11% +336 107nt, >M01687:476:000000000-LL5F5:1:1108:17090:12359_CONS(1)... at 1:107:1:106/+/98.13% +337 107nt, >M01687:476:000000000-LL5F5:1:1108:12444:17330_CONS(1)... at 1:107:1:106/+/98.13% +338 107nt, >M01687:476:000000000-LL5F5:1:1108:6477:19391_CONS(1)... at 1:107:1:106/+/98.13% +339 107nt, >M01687:476:000000000-LL5F5:1:1107:15280:5309_CONS(1)... at 1:107:1:106/+/98.13% +340 105nt, >M01687:476:000000000-LL5F5:1:1107:15349:17058_CONS(1)... at 1:105:2:106/+/99.05% +341 107nt, >M01687:476:000000000-LL5F5:1:1106:19141:1400_CONS(1)... at 1:107:1:106/+/98.13% +342 106nt, >M01687:476:000000000-LL5F5:1:1106:15964:12673_CONS(1)... at 1:106:1:106/+/98.11% +343 107nt, >M01687:476:000000000-LL5F5:1:1106:12442:19732_CONS(1)... at 1:107:1:111/+/99.07% +344 106nt, >M01687:476:000000000-LL5F5:1:1106:14017:23665_CONS(1)... at 1:106:1:106/+/98.11% +345 107nt, >M01687:476:000000000-LL5F5:1:1105:9596:3035_CONS(1)... at 1:107:1:106/+/98.13% +346 107nt, >M01687:476:000000000-LL5F5:1:1105:8101:4321_CONS(1)... at 1:107:1:106/+/97.20% +347 107nt, >M01687:476:000000000-LL5F5:1:1105:28276:7093_CONS(1)... at 1:107:1:106/+/97.20% +348 107nt, >M01687:476:000000000-LL5F5:1:1105:14636:13108_CONS(1)... at 1:107:1:106/+/97.20% +349 106nt, >M01687:476:000000000-LL5F5:1:1105:10875:13353_CONS(1)... at 1:106:1:106/+/98.11% +350 107nt, >M01687:476:000000000-LL5F5:1:1105:19982:13759_CONS(1)... at 1:107:1:106/+/97.20% +351 107nt, >M01687:476:000000000-LL5F5:1:1105:16423:18916_CONS(1)... at 1:107:1:106/+/98.13% +352 107nt, >M01687:476:000000000-LL5F5:1:1104:9914:7552_CONS(1)... at 1:107:1:106/+/97.20% +353 267nt, >M01687:476:000000000-LL5F5:1:1104:7208:11650_CONS(1)... * +354 107nt, >M01687:476:000000000-LL5F5:1:1104:20074:17339_CONS(1)... at 1:107:1:106/+/97.20% +355 107nt, >M01687:476:000000000-LL5F5:1:1104:15919:18902_CONS(1)... at 1:107:1:106/+/98.13% +356 106nt, >M01687:476:000000000-LL5F5:1:1104:17862:19526_CONS(1)... at 1:106:1:106/+/98.11% +357 107nt, >M01687:476:000000000-LL5F5:1:1103:13650:9298_CONS(1)... at 1:107:1:106/+/98.13% +358 108nt, >M01687:476:000000000-LL5F5:1:1103:17121:20940_CONS(1)... at 1:108:1:106/+/97.22% +359 107nt, >M01687:476:000000000-LL5F5:1:1118:20770:4712_CONS(1)... at 1:107:1:106/+/97.20% +360 107nt, >M01687:476:000000000-LL5F5:1:1118:12191:6582_CONS(2)... at 1:107:1:106/+/98.13% +361 107nt, >M01687:476:000000000-LL5F5:1:1118:12909:7970_CONS(1)... at 1:107:1:106/+/97.20% +362 107nt, >M01687:476:000000000-LL5F5:1:1118:6075:8142_CONS(1)... at 1:107:1:106/+/98.13% +363 108nt, >M01687:476:000000000-LL5F5:1:1118:1982:11101_CONS(1)... at 1:108:1:106/+/98.15% +364 107nt, >M01687:476:000000000-LL5F5:1:1118:23996:15239_CONS(1)... at 1:107:1:106/+/97.20% +365 107nt, >M01687:476:000000000-LL5F5:1:1118:13482:15785_CONS(1)... at 1:107:1:106/+/98.13% +366 107nt, >M01687:476:000000000-LL5F5:1:1118:25655:16921_CONS(1)... at 1:107:1:106/+/98.13% +367 257nt, >M01687:476:000000000-LL5F5:1:1118:9130:21645_CONS(1)... at 1:257:1:256/+/98.83% +368 105nt, >M01687:476:000000000-LL5F5:1:1117:12543:12155_CONS(1)... at 1:105:1:106/+/98.10% +369 42nt, >M01687:476:000000000-LL5F5:1:1117:24246:12750_CONS(1)... at 1:42:1:42/+/97.62% +370 107nt, >M01687:476:000000000-LL5F5:1:1117:5230:15643_CONS(1)... at 1:107:1:106/+/97.20% +371 107nt, >M01687:476:000000000-LL5F5:1:1117:17242:16334_CONS(1)... at 1:107:1:106/+/97.20% +372 107nt, >M01687:476:000000000-LL5F5:1:1117:8373:20193_CONS(1)... at 1:107:1:106/+/97.20% +373 107nt, >M01687:476:000000000-LL5F5:1:1117:14845:22733_CONS(1)... at 1:107:1:106/+/97.20% +374 39nt, >M01687:476:000000000-LL5F5:1:2118:26632:7384_CONS(1)... at 1:39:1:39/+/100.00% +375 107nt, >M01687:476:000000000-LL5F5:1:2118:22973:12452_CONS(1)... at 1:107:1:106/+/97.20% +376 107nt, >M01687:476:000000000-LL5F5:1:2118:8507:15145_CONS(1)... at 1:107:1:106/+/98.13% +377 107nt, >M01687:476:000000000-LL5F5:1:2118:4920:20850_CONS(1)... at 1:107:1:106/+/97.20% +378 107nt, >M01687:476:000000000-LL5F5:1:2119:15602:4473_CONS(1)... at 1:107:1:106/+/98.13% +379 107nt, >M01687:476:000000000-LL5F5:1:2119:11805:13816_CONS(1)... at 1:107:1:106/+/98.13% +>Cluster 3 +0 95nt, >M01687:476:000000000-LL5F5:1:1102:18644:2160_CONS(6405)... at 1:95:1:95/+/100.00% +1 94nt, >M01687:476:000000000-LL5F5:1:1102:13806:3615_CONS(10)... at 1:94:1:95/+/100.00% +2 95nt, >M01687:476:000000000-LL5F5:1:1102:9734:5837_CONS(4)... at 1:95:1:95/+/98.95% +3 94nt, >M01687:476:000000000-LL5F5:1:1102:9945:6317_CONS(14)... at 1:94:2:95/+/100.00% +4 95nt, >M01687:476:000000000-LL5F5:1:1102:16441:7356_CONS(4)... at 1:95:1:95/+/98.95% +5 95nt, >M01687:476:000000000-LL5F5:1:1102:13378:7457_CONS(5)... at 1:95:1:95/+/98.95% +6 95nt, >M01687:476:000000000-LL5F5:1:1102:11350:7766_CONS(3)... at 1:95:1:95/+/98.95% +7 95nt, >M01687:476:000000000-LL5F5:1:1102:20905:8009_CONS(1)... at 1:95:1:95/+/98.95% +8 94nt, >M01687:476:000000000-LL5F5:1:1102:6638:8760_CONS(4)... at 1:94:1:95/+/100.00% +9 95nt, >M01687:476:000000000-LL5F5:1:1102:14381:9323_CONS(2)... at 1:95:1:95/+/98.95% +10 94nt, >M01687:476:000000000-LL5F5:1:1102:6098:9520_CONS(6)... at 1:94:1:95/+/100.00% +11 95nt, >M01687:476:000000000-LL5F5:1:1102:10553:10288_CONS(1)... at 1:95:1:95/+/97.89% +12 95nt, >M01687:476:000000000-LL5F5:1:1102:8648:10460_CONS(21)... at 1:95:1:95/+/98.95% +13 95nt, >M01687:476:000000000-LL5F5:1:1102:10117:10476_CONS(4)... at 1:95:1:95/+/98.95% +14 95nt, >M01687:476:000000000-LL5F5:1:1102:11289:12013_CONS(3)... at 1:95:1:95/+/98.95% +15 95nt, >M01687:476:000000000-LL5F5:1:1102:20029:13987_CONS(17)... at 1:95:1:95/+/98.95% +16 95nt, >M01687:476:000000000-LL5F5:1:1102:26347:14055_CONS(8)... at 1:95:1:95/+/98.95% +17 95nt, >M01687:476:000000000-LL5F5:1:1102:22491:14266_CONS(6)... at 1:95:1:95/+/98.95% +18 94nt, >M01687:476:000000000-LL5F5:1:1102:19632:14294_CONS(9)... at 1:94:1:95/+/100.00% +19 95nt, >M01687:476:000000000-LL5F5:1:1102:19056:14812_CONS(3)... at 1:95:1:95/+/98.95% +20 95nt, >M01687:476:000000000-LL5F5:1:1102:5821:16781_CONS(14)... at 1:95:1:95/+/98.95% +21 95nt, >M01687:476:000000000-LL5F5:1:1102:15030:17357_CONS(3)... at 1:95:1:95/+/98.95% +22 95nt, >M01687:476:000000000-LL5F5:1:1102:28081:18794_CONS(8)... at 1:95:1:95/+/98.95% +23 94nt, >M01687:476:000000000-LL5F5:1:1102:27057:19957_CONS(3)... at 1:94:1:95/+/100.00% +24 95nt, >M01687:476:000000000-LL5F5:1:1102:23989:20371_CONS(5)... at 1:95:1:95/+/98.95% +25 95nt, >M01687:476:000000000-LL5F5:1:1102:8660:20594_CONS(7)... at 1:95:1:95/+/98.95% +26 95nt, >M01687:476:000000000-LL5F5:1:1101:7692:2849_CONS(5)... at 1:95:1:95/+/98.95% +27 95nt, >M01687:476:000000000-LL5F5:1:1101:12182:4828_CONS(12)... at 1:95:1:95/+/98.95% +28 94nt, >M01687:476:000000000-LL5F5:1:1101:12908:5267_CONS(19)... at 1:94:1:95/+/100.00% +29 95nt, >M01687:476:000000000-LL5F5:1:1101:12288:5706_CONS(3)... at 1:95:1:95/+/98.95% +30 95nt, >M01687:476:000000000-LL5F5:1:1101:23629:5752_CONS(13)... at 1:95:1:95/+/98.95% +31 93nt, >M01687:476:000000000-LL5F5:1:1101:4242:7979_CONS(1)... at 1:93:1:95/+/100.00% +32 95nt, >M01687:476:000000000-LL5F5:1:1101:23839:8354_CONS(3)... at 1:95:1:95/+/98.95% +33 95nt, >M01687:476:000000000-LL5F5:1:1101:3150:8729_CONS(4)... at 1:95:1:95/+/98.95% +34 95nt, >M01687:476:000000000-LL5F5:1:1101:7073:8742_CONS(9)... at 1:95:1:95/+/98.95% +35 95nt, >M01687:476:000000000-LL5F5:1:1101:5637:11569_CONS(2)... at 1:95:1:95/+/98.95% +36 95nt, >M01687:476:000000000-LL5F5:1:1101:28316:11952_CONS(4)... at 1:95:1:95/+/98.95% +37 95nt, >M01687:476:000000000-LL5F5:1:1101:5680:12198_CONS(7)... at 1:95:1:95/+/98.95% +38 95nt, >M01687:476:000000000-LL5F5:1:1101:17055:12780_CONS(5)... at 1:95:1:95/+/98.95% +39 92nt, >M01687:476:000000000-LL5F5:1:1101:22344:14218_CONS(1)... at 1:92:1:95/+/98.91% +40 95nt, >M01687:476:000000000-LL5F5:1:1101:10977:14831_CONS(3)... at 1:95:1:95/+/98.95% +41 95nt, >M01687:476:000000000-LL5F5:1:1101:26742:15804_CONS(18)... at 1:95:1:95/+/98.95% +42 95nt, >M01687:476:000000000-LL5F5:1:1101:14944:16355_CONS(16)... at 1:95:1:95/+/98.95% +43 95nt, >M01687:476:000000000-LL5F5:1:1101:28566:17114_CONS(1)... at 1:95:1:95/+/98.95% +44 95nt, >M01687:476:000000000-LL5F5:1:1101:5879:18335_CONS(4)... at 1:95:1:95/+/98.95% +45 95nt, >M01687:476:000000000-LL5F5:1:1101:8672:18828_CONS(11)... at 1:95:1:95/+/98.95% +46 95nt, >M01687:476:000000000-LL5F5:1:1101:4147:18937_CONS(1)... at 1:95:1:95/+/97.89% +47 95nt, >M01687:476:000000000-LL5F5:1:1101:6196:21679_CONS(2)... at 1:95:1:95/+/98.95% +48 95nt, >M01687:476:000000000-LL5F5:1:1101:10194:23258_CONS(5)... at 1:95:1:95/+/98.95% +49 95nt, >M01687:476:000000000-LL5F5:1:1101:20162:24686_CONS(3)... at 1:95:1:95/+/98.95% +50 95nt, >M01687:476:000000000-LL5F5:1:2115:15605:1349_CONS(1)... at 1:95:1:95/+/98.95% +51 95nt, >M01687:476:000000000-LL5F5:1:2115:24458:3614_CONS(3)... at 1:95:1:95/+/98.95% +52 88nt, >M01687:476:000000000-LL5F5:1:2115:14045:7264_CONS(1)... at 1:88:8:95/+/100.00% +53 95nt, >M01687:476:000000000-LL5F5:1:2115:4457:9890_CONS(3)... at 1:95:1:95/+/98.95% +54 94nt, >M01687:476:000000000-LL5F5:1:2115:28527:10765_CONS(5)... at 1:94:1:94/+/100.00% +55 94nt, >M01687:476:000000000-LL5F5:1:2115:28199:11405_CONS(38)... at 1:94:1:95/+/100.00% +56 95nt, >M01687:476:000000000-LL5F5:1:2115:8086:11630_CONS(8)... at 1:95:1:95/+/98.95% +57 95nt, >M01687:476:000000000-LL5F5:1:2115:6544:12035_CONS(1)... at 1:95:1:95/+/97.89% +58 94nt, >M01687:476:000000000-LL5F5:1:2115:22836:12710_CONS(12)... at 1:94:1:95/+/100.00% +59 95nt, >M01687:476:000000000-LL5F5:1:2115:28697:13873_CONS(10)... at 1:95:1:95/+/98.95% +60 95nt, >M01687:476:000000000-LL5F5:1:2115:3968:15197_CONS(2)... at 1:95:1:95/+/97.89% +61 96nt, >M01687:476:000000000-LL5F5:1:2115:9442:17353_CONS(2)... at 1:96:1:95/+/98.96% +62 95nt, >M01687:476:000000000-LL5F5:1:2115:25099:17387_CONS(4)... at 1:95:1:95/+/98.95% +63 95nt, >M01687:476:000000000-LL5F5:1:2115:21725:18467_CONS(1)... at 1:95:1:95/+/98.95% +64 95nt, >M01687:476:000000000-LL5F5:1:2115:15679:18937_CONS(1)... at 1:95:1:95/+/98.95% +65 94nt, >M01687:476:000000000-LL5F5:1:2115:15113:19143_CONS(1)... at 1:94:1:95/+/98.94% +66 95nt, >M01687:476:000000000-LL5F5:1:2115:26510:19953_CONS(2)... at 1:95:1:95/+/98.95% +67 95nt, >M01687:476:000000000-LL5F5:1:2115:22779:24219_CONS(11)... at 1:95:1:95/+/98.95% +68 95nt, >M01687:476:000000000-LL5F5:1:2114:10172:2283_CONS(5)... at 1:95:1:95/+/98.95% +69 95nt, >M01687:476:000000000-LL5F5:1:2114:19207:4045_CONS(5)... at 1:95:1:95/+/98.95% +70 95nt, >M01687:476:000000000-LL5F5:1:2114:25547:6560_CONS(3)... at 1:95:1:95/+/98.95% +71 95nt, >M01687:476:000000000-LL5F5:1:2114:28301:7223_CONS(1)... at 1:95:1:95/+/98.95% +72 95nt, >M01687:476:000000000-LL5F5:1:2114:3773:7791_CONS(10)... at 1:95:1:95/+/98.95% +73 95nt, >M01687:476:000000000-LL5F5:1:2114:24904:8379_CONS(3)... at 1:95:1:95/+/98.95% +74 94nt, >M01687:476:000000000-LL5F5:1:2114:22172:8747_CONS(1)... at 1:94:1:95/+/98.94% +75 95nt, >M01687:476:000000000-LL5F5:1:2114:24264:10197_CONS(5)... at 1:95:1:95/+/98.95% +76 95nt, >M01687:476:000000000-LL5F5:1:2114:9785:10538_CONS(2)... at 1:95:1:95/+/98.95% +77 95nt, >M01687:476:000000000-LL5F5:1:2114:25040:11334_CONS(1)... at 1:95:1:95/+/98.95% +78 95nt, >M01687:476:000000000-LL5F5:1:2114:19721:11376_CONS(5)... at 1:95:1:95/+/98.95% +79 94nt, >M01687:476:000000000-LL5F5:1:2114:25405:12906_CONS(4)... at 1:94:2:95/+/98.94% +80 95nt, >M01687:476:000000000-LL5F5:1:2114:5351:15536_CONS(8)... at 1:95:1:95/+/98.95% +81 95nt, >M01687:476:000000000-LL5F5:1:2114:24527:15788_CONS(1)... at 1:95:1:95/+/97.89% +82 95nt, >M01687:476:000000000-LL5F5:1:2114:16010:16496_CONS(4)... at 1:95:1:95/+/98.95% +83 95nt, >M01687:476:000000000-LL5F5:1:2114:12516:17854_CONS(4)... at 1:95:1:95/+/98.95% +84 95nt, >M01687:476:000000000-LL5F5:1:2114:6940:23722_CONS(4)... at 1:95:1:95/+/98.95% +85 95nt, >M01687:476:000000000-LL5F5:1:2114:14085:24912_CONS(5)... at 1:95:1:95/+/98.95% +86 95nt, >M01687:476:000000000-LL5F5:1:2113:17830:2571_CONS(8)... at 1:95:1:95/+/98.95% +87 95nt, >M01687:476:000000000-LL5F5:1:2113:22799:3423_CONS(10)... at 1:95:1:95/+/98.95% +88 95nt, >M01687:476:000000000-LL5F5:1:2113:24451:4094_CONS(1)... at 1:95:1:95/+/97.89% +89 95nt, >M01687:476:000000000-LL5F5:1:2113:10704:4491_CONS(2)... at 1:95:1:95/+/98.95% +90 95nt, >M01687:476:000000000-LL5F5:1:2113:14982:4505_CONS(5)... at 1:95:1:95/+/98.95% +91 94nt, >M01687:476:000000000-LL5F5:1:2113:13990:6353_CONS(1)... at 1:94:1:95/+/98.94% +92 95nt, >M01687:476:000000000-LL5F5:1:2113:24201:8467_CONS(1)... at 1:95:1:95/+/97.89% +93 92nt, >M01687:476:000000000-LL5F5:1:2113:14707:9599_CONS(1)... at 1:92:1:95/+/100.00% +94 95nt, >M01687:476:000000000-LL5F5:1:2113:27206:12174_CONS(8)... at 1:95:1:95/+/98.95% +95 95nt, >M01687:476:000000000-LL5F5:1:2113:25665:12359_CONS(2)... at 1:95:1:95/+/98.95% +96 95nt, >M01687:476:000000000-LL5F5:1:2113:4954:12565_CONS(1)... at 1:95:1:95/+/97.89% +97 94nt, >M01687:476:000000000-LL5F5:1:2113:28689:16684_CONS(1)... at 1:94:1:95/+/100.00% +98 94nt, >M01687:476:000000000-LL5F5:1:2113:15884:16860_CONS(8)... at 1:94:1:95/+/100.00% +99 94nt, >M01687:476:000000000-LL5F5:1:2113:18519:19755_CONS(2)... at 1:94:1:95/+/100.00% +100 96nt, >M01687:476:000000000-LL5F5:1:2113:19328:21481_CONS(1)... at 1:96:1:95/+/98.96% +101 95nt, >M01687:476:000000000-LL5F5:1:2113:24619:21865_CONS(1)... at 1:95:1:95/+/97.89% +102 95nt, >M01687:476:000000000-LL5F5:1:2112:21870:6314_CONS(5)... at 1:95:1:95/+/98.95% +103 95nt, >M01687:476:000000000-LL5F5:1:2112:25762:8134_CONS(6)... at 1:95:1:95/+/98.95% +104 95nt, >M01687:476:000000000-LL5F5:1:2112:23360:14051_CONS(1)... at 1:95:1:95/+/97.89% +105 95nt, >M01687:476:000000000-LL5F5:1:2112:16992:15057_CONS(4)... at 1:95:1:95/+/98.95% +106 95nt, >M01687:476:000000000-LL5F5:1:2112:28372:18800_CONS(1)... at 1:95:1:95/+/98.95% +107 95nt, >M01687:476:000000000-LL5F5:1:2112:19320:19436_CONS(3)... at 1:95:1:95/+/98.95% +108 95nt, >M01687:476:000000000-LL5F5:1:2112:13328:19944_CONS(1)... at 1:95:1:95/+/97.89% +109 95nt, >M01687:476:000000000-LL5F5:1:2112:17800:20901_CONS(3)... at 1:95:1:95/+/98.95% +110 95nt, >M01687:476:000000000-LL5F5:1:2112:19293:20923_CONS(5)... at 1:95:1:95/+/98.95% +111 184nt, >M01687:476:000000000-LL5F5:1:2111:14968:2000_PairEnd(1)... at 1:184:1:184/+/99.46% +112 95nt, >M01687:476:000000000-LL5F5:1:2111:15304:6295_CONS(3)... at 1:95:1:95/+/98.95% +113 95nt, >M01687:476:000000000-LL5F5:1:2111:17522:8441_CONS(10)... at 1:95:1:95/+/98.95% +114 95nt, >M01687:476:000000000-LL5F5:1:2111:10755:8544_CONS(4)... at 1:95:1:95/+/98.95% +115 96nt, >M01687:476:000000000-LL5F5:1:2111:4431:9806_CONS(1)... at 1:96:1:95/+/98.96% +116 94nt, >M01687:476:000000000-LL5F5:1:2111:25927:11093_CONS(1)... at 1:94:2:95/+/98.94% +117 95nt, >M01687:476:000000000-LL5F5:1:2111:4845:12149_CONS(2)... at 1:95:1:95/+/98.95% +118 95nt, >M01687:476:000000000-LL5F5:1:2111:23048:12785_CONS(1)... at 1:95:1:95/+/98.95% +119 94nt, >M01687:476:000000000-LL5F5:1:2111:18558:12918_CONS(3)... at 1:94:1:95/+/100.00% +120 95nt, >M01687:476:000000000-LL5F5:1:2111:17204:14867_CONS(3)... at 1:95:1:95/+/98.95% +121 95nt, >M01687:476:000000000-LL5F5:1:2111:25574:16916_CONS(5)... at 1:95:1:95/+/98.95% +122 95nt, >M01687:476:000000000-LL5F5:1:2111:6498:17219_CONS(2)... at 1:95:1:95/+/98.95% +123 95nt, >M01687:476:000000000-LL5F5:1:2111:11155:21569_CONS(3)... at 1:95:1:95/+/98.95% +124 94nt, >M01687:476:000000000-LL5F5:1:2111:10310:24598_CONS(5)... at 1:94:1:94/+/98.94% +125 95nt, >M01687:476:000000000-LL5F5:1:2110:7616:4014_CONS(2)... at 1:95:1:95/+/97.89% +126 95nt, >M01687:476:000000000-LL5F5:1:2110:25677:8792_CONS(13)... at 1:95:1:95/+/98.95% +127 94nt, >M01687:476:000000000-LL5F5:1:2110:19307:9282_CONS(6)... at 1:94:1:95/+/100.00% +128 95nt, >M01687:476:000000000-LL5F5:1:2110:9424:15489_CONS(3)... at 1:95:1:95/+/98.95% +129 95nt, >M01687:476:000000000-LL5F5:1:2110:14515:15651_CONS(1)... at 1:95:1:95/+/97.89% +130 95nt, >M01687:476:000000000-LL5F5:1:2110:22619:16539_CONS(1)... at 1:95:1:95/+/98.95% +131 95nt, >M01687:476:000000000-LL5F5:1:2110:9059:19779_CONS(4)... at 1:95:1:95/+/98.95% +132 95nt, >M01687:476:000000000-LL5F5:1:2110:25815:21017_CONS(4)... at 1:95:1:95/+/98.95% +133 95nt, >M01687:476:000000000-LL5F5:1:2110:11505:21706_CONS(3)... at 1:95:1:95/+/98.95% +134 94nt, >M01687:476:000000000-LL5F5:1:2109:18738:2651_CONS(1)... at 1:94:1:94/+/98.94% +135 95nt, >M01687:476:000000000-LL5F5:1:2109:7109:2799_CONS(1)... at 1:95:1:95/+/97.89% +136 95nt, >M01687:476:000000000-LL5F5:1:2109:4508:5127_CONS(1)... at 1:95:1:95/+/97.89% +137 95nt, >M01687:476:000000000-LL5F5:1:2109:10064:7663_CONS(9)... at 1:95:1:95/+/98.95% +138 95nt, >M01687:476:000000000-LL5F5:1:2109:14058:7667_CONS(1)... at 1:95:1:95/+/98.95% +139 94nt, >M01687:476:000000000-LL5F5:1:2109:24940:9982_CONS(1)... at 1:94:1:95/+/100.00% +140 95nt, >M01687:476:000000000-LL5F5:1:2109:14070:12708_CONS(1)... at 1:95:1:95/+/98.95% +141 95nt, >M01687:476:000000000-LL5F5:1:2109:8461:20870_CONS(2)... at 1:95:1:95/+/98.95% +142 95nt, >M01687:476:000000000-LL5F5:1:2109:16456:20996_CONS(2)... at 1:95:1:95/+/98.95% +143 95nt, >M01687:476:000000000-LL5F5:1:2109:14372:24619_CONS(1)... at 1:95:1:95/+/98.95% +144 95nt, >M01687:476:000000000-LL5F5:1:2108:21032:2945_CONS(1)... at 1:95:1:95/+/98.95% +145 95nt, >M01687:476:000000000-LL5F5:1:2108:9783:3878_CONS(2)... at 1:95:1:95/+/98.95% +146 95nt, >M01687:476:000000000-LL5F5:1:2108:16909:6369_CONS(1)... at 1:95:1:95/+/98.95% +147 95nt, >M01687:476:000000000-LL5F5:1:2108:9818:9398_CONS(2)... at 1:95:1:95/+/98.95% +148 95nt, >M01687:476:000000000-LL5F5:1:2108:28303:10596_CONS(2)... at 1:95:1:95/+/98.95% +149 94nt, >M01687:476:000000000-LL5F5:1:2108:9708:11425_CONS(1)... at 1:94:1:95/+/98.94% +150 95nt, >M01687:476:000000000-LL5F5:1:2108:15427:19394_CONS(6)... at 1:95:1:95/+/98.95% +151 95nt, >M01687:476:000000000-LL5F5:1:2108:10242:20756_CONS(3)... at 1:95:1:95/+/98.95% +152 95nt, >M01687:476:000000000-LL5F5:1:2108:20563:20952_CONS(1)... at 1:95:1:95/+/98.95% +153 95nt, >M01687:476:000000000-LL5F5:1:2108:8061:22320_CONS(2)... at 1:95:1:95/+/98.95% +154 95nt, >M01687:476:000000000-LL5F5:1:2108:7753:23664_CONS(2)... at 1:95:1:95/+/98.95% +155 95nt, >M01687:476:000000000-LL5F5:1:2106:7363:6152_CONS(9)... at 1:95:1:95/+/98.95% +156 69nt, >M01687:476:000000000-LL5F5:1:2106:9946:6620_CONS(1)... at 1:69:1:69/+/97.10% +157 94nt, >M01687:476:000000000-LL5F5:1:2106:22741:7951_CONS(1)... at 1:94:2:95/+/98.94% +158 95nt, >M01687:476:000000000-LL5F5:1:2106:14459:8390_CONS(3)... at 1:95:1:95/+/98.95% +159 95nt, >M01687:476:000000000-LL5F5:1:2106:15723:8857_CONS(2)... at 1:95:1:95/+/98.95% +160 94nt, >M01687:476:000000000-LL5F5:1:2106:14807:11763_CONS(1)... at 1:94:1:95/+/98.94% +161 73nt, >M01687:476:000000000-LL5F5:1:2106:1904:12690_CONS(1)... at 1:73:1:73/+/98.63% +162 94nt, >M01687:476:000000000-LL5F5:1:2106:8945:17857_CONS(1)... at 1:94:1:95/+/100.00% +163 95nt, >M01687:476:000000000-LL5F5:1:2106:5597:18056_CONS(2)... at 1:95:1:95/+/98.95% +164 95nt, >M01687:476:000000000-LL5F5:1:2106:12248:22673_CONS(4)... at 1:95:1:95/+/98.95% +165 95nt, >M01687:476:000000000-LL5F5:1:2107:18640:3575_CONS(2)... at 1:95:1:95/+/97.89% +166 95nt, >M01687:476:000000000-LL5F5:1:2107:18948:5771_CONS(3)... at 1:95:1:95/+/98.95% +167 95nt, >M01687:476:000000000-LL5F5:1:2107:20620:9068_CONS(1)... at 1:95:1:95/+/97.89% +168 95nt, >M01687:476:000000000-LL5F5:1:2107:9874:11779_CONS(8)... at 1:95:1:95/+/98.95% +169 94nt, >M01687:476:000000000-LL5F5:1:2107:12313:14771_CONS(1)... at 1:94:1:95/+/98.94% +170 95nt, >M01687:476:000000000-LL5F5:1:2107:25533:15058_CONS(2)... at 1:95:1:95/+/98.95% +171 95nt, >M01687:476:000000000-LL5F5:1:2107:26910:16220_CONS(1)... at 1:95:1:95/+/97.89% +172 95nt, >M01687:476:000000000-LL5F5:1:2107:11956:22535_CONS(1)... at 1:95:1:95/+/98.95% +173 95nt, >M01687:476:000000000-LL5F5:1:2107:20701:23285_CONS(3)... at 1:95:1:95/+/98.95% +174 95nt, >M01687:476:000000000-LL5F5:1:2107:9386:23603_CONS(2)... at 1:95:1:95/+/98.95% +175 95nt, >M01687:476:000000000-LL5F5:1:2104:13898:4680_CONS(4)... at 1:95:1:95/+/98.95% +176 95nt, >M01687:476:000000000-LL5F5:1:2104:20718:4911_CONS(4)... at 1:95:1:95/+/98.95% +177 95nt, >M01687:476:000000000-LL5F5:1:2104:25937:5462_CONS(2)... at 1:95:1:95/+/98.95% +178 95nt, >M01687:476:000000000-LL5F5:1:2104:25819:8315_CONS(1)... at 1:95:1:95/+/97.89% +179 170nt, >M01687:476:000000000-LL5F5:1:2104:25356:9360_PairEnd(1)... at 1:170:1:173/+/100.00% +180 93nt, >M01687:476:000000000-LL5F5:1:2104:16345:12292_CONS(1)... at 1:93:1:95/+/98.92% +181 95nt, >M01687:476:000000000-LL5F5:1:2104:8131:16737_CONS(1)... at 1:95:1:95/+/98.95% +182 94nt, >M01687:476:000000000-LL5F5:1:2104:14114:20506_CONS(2)... at 1:94:1:95/+/100.00% +183 95nt, >M01687:476:000000000-LL5F5:1:2104:18523:22246_CONS(5)... at 1:95:1:95/+/98.95% +184 95nt, >M01687:476:000000000-LL5F5:1:2104:8542:23241_CONS(3)... at 1:95:1:95/+/98.95% +185 95nt, >M01687:476:000000000-LL5F5:1:2104:19848:24110_CONS(1)... at 1:95:1:95/+/97.89% +186 95nt, >M01687:476:000000000-LL5F5:1:2104:15128:24645_CONS(11)... at 1:95:1:95/+/98.95% +187 94nt, >M01687:476:000000000-LL5F5:1:2105:3267:7186_CONS(1)... at 1:94:1:95/+/98.94% +188 95nt, >M01687:476:000000000-LL5F5:1:2105:18530:7668_CONS(4)... at 1:95:1:95/+/98.95% +189 95nt, >M01687:476:000000000-LL5F5:1:2105:10604:8226_CONS(4)... at 1:95:1:95/+/98.95% +190 94nt, >M01687:476:000000000-LL5F5:1:2105:27764:12237_CONS(1)... at 1:94:1:95/+/97.87% +191 95nt, >M01687:476:000000000-LL5F5:1:2105:23685:15472_CONS(1)... at 1:95:1:95/+/98.95% +192 95nt, >M01687:476:000000000-LL5F5:1:2105:3474:19881_CONS(2)... at 1:95:1:95/+/98.95% +193 95nt, >M01687:476:000000000-LL5F5:1:2105:16241:20229_CONS(1)... at 1:95:1:95/+/97.89% +194 95nt, >M01687:476:000000000-LL5F5:1:2105:19674:23547_CONS(2)... at 1:95:1:95/+/98.95% +195 95nt, >M01687:476:000000000-LL5F5:1:2105:17810:23728_CONS(2)... at 1:95:1:95/+/98.95% +196 95nt, >M01687:476:000000000-LL5F5:1:2102:12433:9443_CONS(4)... at 1:95:1:95/+/98.95% +197 95nt, >M01687:476:000000000-LL5F5:1:2102:5769:17540_CONS(4)... at 1:95:1:95/+/98.95% +198 94nt, >M01687:476:000000000-LL5F5:1:2102:7814:18704_CONS(1)... at 1:94:1:95/+/100.00% +199 95nt, >M01687:476:000000000-LL5F5:1:2102:8397:22251_CONS(1)... at 1:95:1:95/+/98.95% +200 95nt, >M01687:476:000000000-LL5F5:1:2102:10759:22554_CONS(5)... at 1:95:1:95/+/98.95% +201 95nt, >M01687:476:000000000-LL5F5:1:2103:14499:2009_CONS(2)... at 1:95:1:95/+/98.95% +202 95nt, >M01687:476:000000000-LL5F5:1:2103:22094:3908_CONS(1)... at 1:95:1:95/+/98.95% +203 95nt, >M01687:476:000000000-LL5F5:1:2103:11945:6198_CONS(1)... at 1:95:1:95/+/98.95% +204 95nt, >M01687:476:000000000-LL5F5:1:2103:14764:10057_CONS(3)... at 1:95:1:95/+/98.95% +205 95nt, >M01687:476:000000000-LL5F5:1:2103:22499:14331_CONS(3)... at 1:95:1:95/+/98.95% +206 95nt, >M01687:476:000000000-LL5F5:1:2103:18303:20721_CONS(1)... at 1:95:1:95/+/98.95% +207 95nt, >M01687:476:000000000-LL5F5:1:2103:8161:24184_CONS(1)... at 1:95:1:95/+/97.89% +208 95nt, >M01687:476:000000000-LL5F5:1:2116:24717:3769_CONS(1)... at 1:95:1:95/+/98.95% +209 94nt, >M01687:476:000000000-LL5F5:1:2116:14139:5603_CONS(1)... at 1:94:1:95/+/98.94% +210 95nt, >M01687:476:000000000-LL5F5:1:2116:3956:8910_CONS(1)... at 1:95:1:95/+/97.89% +211 97nt, >M01687:476:000000000-LL5F5:1:2116:18147:9200_CONS(1)... at 1:97:1:95/+/97.94% +212 95nt, >M01687:476:000000000-LL5F5:1:2116:6689:15809_CONS(1)... at 1:95:1:95/+/97.89% +213 96nt, >M01687:476:000000000-LL5F5:1:2116:9001:16298_CONS(1)... at 1:96:1:95/+/98.96% +214 95nt, >M01687:476:000000000-LL5F5:1:2116:9169:18708_CONS(3)... at 1:95:1:95/+/98.95% +215 95nt, >M01687:476:000000000-LL5F5:1:2116:7698:22704_CONS(4)... at 1:95:1:95/+/98.95% +216 95nt, >M01687:476:000000000-LL5F5:1:2116:14282:23857_CONS(4)... at 1:95:1:95/+/98.95% +217 95nt, >M01687:476:000000000-LL5F5:1:2117:21690:3804_CONS(3)... at 1:95:1:95/+/98.95% +218 96nt, >M01687:476:000000000-LL5F5:1:2117:3823:6270_CONS(2)... at 2:96:1:95/+/98.96% +219 190nt, >M01687:476:000000000-LL5F5:1:2117:5663:13592_PairEnd(1)... * +220 95nt, >M01687:476:000000000-LL5F5:1:2117:14248:21800_CONS(2)... at 1:95:1:95/+/98.95% +221 96nt, >M01687:476:000000000-LL5F5:1:2117:20791:22366_CONS(1)... at 1:96:1:96/+/100.00% +222 95nt, >M01687:476:000000000-LL5F5:1:1119:5620:4152_CONS(1)... at 1:95:1:95/+/97.89% +223 96nt, >M01687:476:000000000-LL5F5:1:1119:25337:7328_CONS(2)... at 1:96:1:95/+/98.96% +224 95nt, >M01687:476:000000000-LL5F5:1:1119:15235:7447_CONS(1)... at 1:95:1:95/+/98.95% +225 95nt, >M01687:476:000000000-LL5F5:1:1119:10881:8722_CONS(1)... at 1:95:1:95/+/98.95% +226 95nt, >M01687:476:000000000-LL5F5:1:1119:13147:11434_CONS(1)... at 1:95:1:95/+/97.89% +227 95nt, >M01687:476:000000000-LL5F5:1:1119:24855:14266_CONS(2)... at 1:95:1:95/+/98.95% +228 95nt, >M01687:476:000000000-LL5F5:1:1119:11377:19365_CONS(4)... at 1:95:1:95/+/98.95% +229 95nt, >M01687:476:000000000-LL5F5:1:2101:19440:5729_CONS(1)... at 1:95:1:95/+/97.89% +230 95nt, >M01687:476:000000000-LL5F5:1:2101:9687:5734_CONS(2)... at 1:95:1:95/+/97.89% +231 92nt, >M01687:476:000000000-LL5F5:1:2101:10527:8728_CONS(1)... at 1:92:4:95/+/97.83% +232 97nt, >M01687:476:000000000-LL5F5:1:2101:4261:15346_CONS(1)... at 1:97:1:95/+/97.94% +233 95nt, >M01687:476:000000000-LL5F5:1:2101:18063:15379_CONS(1)... at 1:95:1:95/+/98.95% +234 95nt, >M01687:476:000000000-LL5F5:1:1115:10222:1877_CONS(1)... at 1:95:1:95/+/98.95% +235 95nt, >M01687:476:000000000-LL5F5:1:1115:15646:5834_CONS(1)... at 1:95:1:95/+/97.89% +236 95nt, >M01687:476:000000000-LL5F5:1:1115:19606:17862_CONS(2)... at 1:95:1:95/+/98.95% +237 94nt, >M01687:476:000000000-LL5F5:1:1115:22850:18401_CONS(3)... at 1:94:1:95/+/100.00% +238 95nt, >M01687:476:000000000-LL5F5:1:1115:10609:23076_CONS(1)... at 1:95:1:95/+/97.89% +239 47nt, >M01687:476:000000000-LL5F5:1:1116:13238:5170_CONS(1)... at 1:47:1:47/+/100.00% +240 94nt, >M01687:476:000000000-LL5F5:1:1116:15889:6431_CONS(1)... at 1:94:1:95/+/97.87% +241 94nt, >M01687:476:000000000-LL5F5:1:1116:23911:6500_CONS(1)... at 1:94:1:95/+/98.94% +242 95nt, >M01687:476:000000000-LL5F5:1:1116:10780:13075_CONS(1)... at 1:95:1:95/+/97.89% +243 94nt, >M01687:476:000000000-LL5F5:1:1116:3113:13815_CONS(1)... at 1:94:1:95/+/100.00% +244 94nt, >M01687:476:000000000-LL5F5:1:1116:23971:17915_CONS(1)... at 1:94:1:94/+/97.87% +245 95nt, >M01687:476:000000000-LL5F5:1:1116:27565:20603_CONS(1)... at 1:95:1:95/+/98.95% +246 94nt, >M01687:476:000000000-LL5F5:1:1116:9071:23794_CONS(1)... at 1:94:1:95/+/98.94% +247 95nt, >M01687:476:000000000-LL5F5:1:1114:17763:2097_CONS(2)... at 1:95:1:95/+/98.95% +248 95nt, >M01687:476:000000000-LL5F5:1:1114:5476:7707_CONS(1)... at 1:95:1:95/+/97.89% +249 95nt, >M01687:476:000000000-LL5F5:1:1114:20507:10713_CONS(1)... at 1:95:1:95/+/98.95% +250 95nt, >M01687:476:000000000-LL5F5:1:1114:28273:13002_CONS(2)... at 1:95:1:95/+/98.95% +251 95nt, >M01687:476:000000000-LL5F5:1:1114:7586:13812_CONS(3)... at 1:95:1:95/+/98.95% +252 93nt, >M01687:476:000000000-LL5F5:1:1114:4652:17543_CONS(1)... at 1:93:1:95/+/100.00% +253 95nt, >M01687:476:000000000-LL5F5:1:1114:20881:21233_CONS(1)... at 1:95:1:95/+/98.95% +254 96nt, >M01687:476:000000000-LL5F5:1:1114:10001:21315_CONS(2)... at 1:96:1:95/+/98.96% +255 94nt, >M01687:476:000000000-LL5F5:1:1113:12179:2063_CONS(1)... at 1:94:1:95/+/100.00% +256 95nt, >M01687:476:000000000-LL5F5:1:1113:22052:9198_CONS(3)... at 1:95:1:95/+/98.95% +257 95nt, >M01687:476:000000000-LL5F5:1:1113:11314:15790_CONS(1)... at 1:95:1:95/+/97.89% +258 46nt, >M01687:476:000000000-LL5F5:1:1113:17515:17504_CONS(1)... at 1:46:1:46/+/97.83% +259 94nt, >M01687:476:000000000-LL5F5:1:1113:6337:21061_CONS(1)... at 1:94:1:95/+/98.94% +260 95nt, >M01687:476:000000000-LL5F5:1:1112:12247:3298_CONS(1)... at 1:95:1:95/+/98.95% +261 95nt, >M01687:476:000000000-LL5F5:1:1112:3147:7597_CONS(1)... at 1:95:1:95/+/97.89% +262 94nt, >M01687:476:000000000-LL5F5:1:1112:26122:13199_CONS(1)... at 1:94:1:95/+/97.87% +263 94nt, >M01687:476:000000000-LL5F5:1:1112:27358:14400_CONS(1)... at 1:94:1:95/+/98.94% +264 95nt, >M01687:476:000000000-LL5F5:1:1112:13055:24273_CONS(1)... at 1:95:1:95/+/98.95% +265 45nt, >M01687:476:000000000-LL5F5:1:1111:20362:6117_CONS(1)... at 1:45:1:46/+/100.00% +266 95nt, >M01687:476:000000000-LL5F5:1:1111:7854:8607_CONS(1)... at 1:95:1:95/+/98.95% +267 95nt, >M01687:476:000000000-LL5F5:1:1111:15207:10029_CONS(1)... at 1:95:1:95/+/98.95% +268 95nt, >M01687:476:000000000-LL5F5:1:1110:19881:2079_CONS(1)... at 1:95:1:95/+/97.89% +269 95nt, >M01687:476:000000000-LL5F5:1:1110:15208:4806_CONS(2)... at 1:95:1:95/+/98.95% +270 96nt, >M01687:476:000000000-LL5F5:1:1110:10999:5150_CONS(1)... at 1:96:1:95/+/98.96% +271 95nt, >M01687:476:000000000-LL5F5:1:1110:27914:7988_CONS(1)... at 1:95:1:95/+/98.95% +272 95nt, >M01687:476:000000000-LL5F5:1:1110:22667:8746_CONS(1)... at 1:95:1:95/+/97.89% +273 95nt, >M01687:476:000000000-LL5F5:1:1110:9227:13283_CONS(1)... at 1:95:1:95/+/98.95% +274 94nt, >M01687:476:000000000-LL5F5:1:1110:5611:14003_CONS(1)... at 1:94:1:95/+/100.00% +275 95nt, >M01687:476:000000000-LL5F5:1:1109:9939:4730_CONS(1)... at 1:95:1:95/+/98.95% +276 95nt, >M01687:476:000000000-LL5F5:1:1109:3577:8115_CONS(1)... at 1:95:1:95/+/98.95% +277 95nt, >M01687:476:000000000-LL5F5:1:1109:23643:10096_CONS(2)... at 1:95:1:95/+/98.95% +278 95nt, >M01687:476:000000000-LL5F5:1:1108:25317:7616_CONS(2)... at 1:95:1:95/+/98.95% +279 95nt, >M01687:476:000000000-LL5F5:1:1108:9495:16830_CONS(1)... at 1:95:1:95/+/97.89% +280 95nt, >M01687:476:000000000-LL5F5:1:1107:6855:12634_CONS(2)... at 1:95:1:95/+/98.95% +281 95nt, >M01687:476:000000000-LL5F5:1:1107:20908:21568_CONS(1)... at 1:95:1:95/+/98.95% +282 95nt, >M01687:476:000000000-LL5F5:1:1107:23965:22353_CONS(1)... at 1:95:1:95/+/98.95% +283 95nt, >M01687:476:000000000-LL5F5:1:1106:17460:11341_CONS(1)... at 1:95:1:95/+/98.95% +284 95nt, >M01687:476:000000000-LL5F5:1:1106:25583:12385_CONS(1)... at 1:95:1:95/+/98.95% +285 95nt, >M01687:476:000000000-LL5F5:1:1106:10512:20592_CONS(1)... at 1:95:1:95/+/98.95% +286 92nt, >M01687:476:000000000-LL5F5:1:1104:14702:1919_CONS(1)... at 1:92:1:95/+/98.91% +287 95nt, >M01687:476:000000000-LL5F5:1:1104:12839:8581_CONS(1)... at 1:95:1:95/+/98.95% +288 95nt, >M01687:476:000000000-LL5F5:1:1104:22880:24564_CONS(1)... at 1:95:1:95/+/97.89% +289 95nt, >M01687:476:000000000-LL5F5:1:1103:12361:3530_CONS(1)... at 1:95:1:95/+/97.89% +290 95nt, >M01687:476:000000000-LL5F5:1:1118:9725:8058_CONS(1)... at 1:95:1:95/+/98.95% +291 95nt, >M01687:476:000000000-LL5F5:1:1118:11823:15446_CONS(1)... at 1:95:1:95/+/97.89% +292 94nt, >M01687:476:000000000-LL5F5:1:1118:28560:16539_CONS(1)... at 1:94:1:95/+/98.94% +293 95nt, >M01687:476:000000000-LL5F5:1:1117:20150:7043_CONS(1)... at 1:95:1:95/+/97.89% +294 95nt, >M01687:476:000000000-LL5F5:1:1117:26967:16715_CONS(1)... at 1:95:1:95/+/98.95% +295 95nt, >M01687:476:000000000-LL5F5:1:1117:15195:18259_CONS(1)... at 1:95:1:95/+/97.89% +296 95nt, >M01687:476:000000000-LL5F5:1:1117:27203:18695_CONS(1)... at 1:95:1:95/+/98.95% +297 95nt, >M01687:476:000000000-LL5F5:1:2118:12803:2059_CONS(1)... at 1:95:1:95/+/97.89% +298 95nt, >M01687:476:000000000-LL5F5:1:2118:12974:6696_CONS(1)... at 1:95:1:95/+/97.89% +299 94nt, >M01687:476:000000000-LL5F5:1:2118:26058:12034_CONS(1)... at 1:94:1:95/+/98.94% +300 48nt, >M01687:476:000000000-LL5F5:1:2118:19783:13167_CONS(1)... at 1:48:1:48/+/100.00% +301 95nt, >M01687:476:000000000-LL5F5:1:2119:17360:6081_CONS(1)... at 1:95:1:95/+/97.89% +302 94nt, >M01687:476:000000000-LL5F5:1:2119:22992:7054_CONS(1)... at 1:94:1:95/+/97.87% +303 94nt, >M01687:476:000000000-LL5F5:1:2119:28267:9317_CONS(1)... at 1:94:1:95/+/97.87% +304 95nt, >M01687:476:000000000-LL5F5:1:2119:5693:10368_CONS(1)... at 1:95:1:95/+/97.89% +305 93nt, >M01687:476:000000000-LL5F5:1:2119:25549:12783_CONS(1)... at 1:93:1:95/+/100.00% +306 182nt, >M01687:476:000000000-LL5F5:1:2119:7258:17159_PairEnd(1)... at 1:182:1:183/+/98.35% +307 95nt, >M01687:476:000000000-LL5F5:1:2119:25456:22758_CONS(1)... at 1:95:1:95/+/97.89% +>Cluster 4 +0 85nt, >M01687:476:000000000-LL5F5:1:1102:15748:4711_CONS(1)... at 1:85:1:85/+/97.65% +1 176nt, >M01687:476:000000000-LL5F5:1:1102:15379:5278_PairEnd(2)... at 1:176:1:176/+/99.43% +2 85nt, >M01687:476:000000000-LL5F5:1:1102:20551:5720_CONS(2)... at 1:85:1:85/+/97.65% +3 85nt, >M01687:476:000000000-LL5F5:1:1102:5711:5798_CONS(1)... at 1:85:1:85/+/97.65% +4 85nt, >M01687:476:000000000-LL5F5:1:1102:4967:6539_CONS(1)... at 1:85:1:85/+/97.65% +5 85nt, >M01687:476:000000000-LL5F5:1:1102:27889:6609_CONS(1)... at 1:85:1:85/+/97.65% +6 85nt, >M01687:476:000000000-LL5F5:1:1102:4060:6680_CONS(1)... at 1:85:1:85/+/97.65% +7 85nt, >M01687:476:000000000-LL5F5:1:1102:24206:8285_CONS(1)... at 1:85:1:85/+/97.65% +8 85nt, >M01687:476:000000000-LL5F5:1:1102:21286:9326_CONS(1)... at 1:85:1:85/+/97.65% +9 85nt, >M01687:476:000000000-LL5F5:1:1102:14593:12028_CONS(2)... at 1:85:1:85/+/97.65% +10 85nt, >M01687:476:000000000-LL5F5:1:1102:19777:13877_CONS(1)... at 1:85:1:85/+/97.65% +11 85nt, >M01687:476:000000000-LL5F5:1:1102:5063:15844_CONS(1)... at 1:85:1:85/+/97.65% +12 85nt, >M01687:476:000000000-LL5F5:1:1102:14909:17124_CONS(1)... at 1:85:1:85/+/97.65% +13 167nt, >M01687:476:000000000-LL5F5:1:1102:7124:18315_PairEnd(1)... at 1:167:1:167/+/100.00% +14 85nt, >M01687:476:000000000-LL5F5:1:1102:12846:24660_CONS(1)... at 1:85:1:85/+/97.65% +15 85nt, >M01687:476:000000000-LL5F5:1:1101:6966:2412_CONS(1)... at 1:85:1:85/+/97.65% +16 167nt, >M01687:476:000000000-LL5F5:1:1101:21398:3295_PairEnd(1)... at 1:167:1:168/+/100.00% +17 85nt, >M01687:476:000000000-LL5F5:1:1101:18268:9956_CONS(1)... at 1:85:1:85/+/97.65% +18 85nt, >M01687:476:000000000-LL5F5:1:1101:12696:11062_CONS(1)... at 1:85:1:85/+/97.65% +19 85nt, >M01687:476:000000000-LL5F5:1:1101:4945:11153_CONS(1)... at 1:85:1:85/+/97.65% +20 85nt, >M01687:476:000000000-LL5F5:1:1101:8075:12378_CONS(2)... at 1:85:1:85/+/97.65% +21 86nt, >M01687:476:000000000-LL5F5:1:1101:14176:12625_CONS(1)... at 1:86:1:85/+/97.67% +22 85nt, >M01687:476:000000000-LL5F5:1:1101:27174:12889_CONS(1)... at 1:85:1:85/+/97.65% +23 85nt, >M01687:476:000000000-LL5F5:1:1101:7080:15345_CONS(1)... at 1:85:1:85/+/97.65% +24 85nt, >M01687:476:000000000-LL5F5:1:1101:22949:15926_CONS(1)... at 1:85:1:85/+/97.65% +25 85nt, >M01687:476:000000000-LL5F5:1:1101:11422:21495_CONS(1)... at 1:85:1:85/+/97.65% +26 85nt, >M01687:476:000000000-LL5F5:1:2115:20416:2328_CONS(1)... at 1:85:1:85/+/97.65% +27 85nt, >M01687:476:000000000-LL5F5:1:2115:12140:2985_CONS(1)... at 1:85:1:85/+/97.65% +28 85nt, >M01687:476:000000000-LL5F5:1:2115:18774:3744_CONS(1)... at 1:85:1:85/+/97.65% +29 86nt, >M01687:476:000000000-LL5F5:1:2115:6373:4035_CONS(1)... at 1:86:1:85/+/97.67% +30 85nt, >M01687:476:000000000-LL5F5:1:2115:7903:4117_CONS(1)... at 1:85:1:85/+/97.65% +31 163nt, >M01687:476:000000000-LL5F5:1:2115:8939:6325_PairEnd(4)... at 1:163:1:163/+/100.00% +32 85nt, >M01687:476:000000000-LL5F5:1:2115:8121:15745_CONS(1)... at 1:85:1:85/+/97.65% +33 164nt, >M01687:476:000000000-LL5F5:1:2115:25977:16018_PairEnd(5)... at 1:164:1:164/+/100.00% +34 85nt, >M01687:476:000000000-LL5F5:1:2115:17289:16311_CONS(1)... at 1:85:1:85/+/97.65% +35 86nt, >M01687:476:000000000-LL5F5:1:2115:27060:16516_CONS(1)... at 1:86:1:85/+/97.67% +36 85nt, >M01687:476:000000000-LL5F5:1:2115:22212:19074_CONS(1)... at 1:85:1:85/+/97.65% +37 178nt, >M01687:476:000000000-LL5F5:1:2115:20596:20439_PairEnd(2)... at 1:178:1:178/+/99.44% +38 85nt, >M01687:476:000000000-LL5F5:1:2115:7578:22577_CONS(1)... at 1:85:1:85/+/97.65% +39 85nt, >M01687:476:000000000-LL5F5:1:2115:6023:23042_CONS(1)... at 1:85:1:85/+/97.65% +40 85nt, >M01687:476:000000000-LL5F5:1:2115:23478:24306_CONS(1)... at 1:85:1:85/+/97.65% +41 85nt, >M01687:476:000000000-LL5F5:1:2114:12250:5393_CONS(1)... at 1:85:1:85/+/97.65% +42 85nt, >M01687:476:000000000-LL5F5:1:2114:7457:7752_CONS(1)... at 1:85:1:85/+/97.65% +43 85nt, >M01687:476:000000000-LL5F5:1:2114:25021:11979_CONS(2)... at 1:85:1:85/+/97.65% +44 85nt, >M01687:476:000000000-LL5F5:1:2114:11222:12321_CONS(1)... at 1:85:1:85/+/97.65% +45 85nt, >M01687:476:000000000-LL5F5:1:2114:2554:12393_CONS(2)... at 1:85:1:85/+/97.65% +46 85nt, >M01687:476:000000000-LL5F5:1:2114:26517:13978_CONS(1)... at 1:85:1:85/+/97.65% +47 85nt, >M01687:476:000000000-LL5F5:1:2114:28106:14219_CONS(1)... at 1:85:1:85/+/97.65% +48 85nt, >M01687:476:000000000-LL5F5:1:2114:4106:14728_CONS(1)... at 1:85:1:85/+/97.65% +49 85nt, >M01687:476:000000000-LL5F5:1:2114:18480:16275_CONS(1)... at 1:85:1:85/+/97.65% +50 84nt, >M01687:476:000000000-LL5F5:1:2114:22833:16804_CONS(1)... at 1:84:1:85/+/98.81% +51 88nt, >M01687:476:000000000-LL5F5:1:2114:24711:18776_CONS(3)... at 1:88:1:88/+/97.73% +52 84nt, >M01687:476:000000000-LL5F5:1:2114:27243:18990_CONS(1)... at 1:84:1:85/+/98.81% +53 85nt, >M01687:476:000000000-LL5F5:1:2114:11109:20848_CONS(1)... at 1:85:1:85/+/97.65% +54 85nt, >M01687:476:000000000-LL5F5:1:2114:14904:24131_CONS(1)... at 1:85:1:85/+/97.65% +55 85nt, >M01687:476:000000000-LL5F5:1:2114:8971:24317_CONS(1)... at 1:85:1:85/+/97.65% +56 85nt, >M01687:476:000000000-LL5F5:1:2113:16141:2654_CONS(29)... at 1:85:1:85/+/97.65% +57 85nt, >M01687:476:000000000-LL5F5:1:2113:13215:2916_CONS(1)... at 1:85:1:85/+/97.65% +58 85nt, >M01687:476:000000000-LL5F5:1:2113:7202:3676_CONS(1)... at 1:85:1:85/+/97.65% +59 85nt, >M01687:476:000000000-LL5F5:1:2113:10387:5217_CONS(1)... at 1:85:1:85/+/97.65% +60 85nt, >M01687:476:000000000-LL5F5:1:2113:22002:5944_CONS(1)... at 1:85:1:85/+/97.65% +61 85nt, >M01687:476:000000000-LL5F5:1:2113:12134:6337_CONS(1)... at 1:85:1:85/+/97.65% +62 85nt, >M01687:476:000000000-LL5F5:1:2113:14428:7425_CONS(1)... at 1:85:1:85/+/97.65% +63 85nt, >M01687:476:000000000-LL5F5:1:2113:25366:8449_CONS(1)... at 1:85:1:85/+/97.65% +64 83nt, >M01687:476:000000000-LL5F5:1:2113:7455:10073_CONS(1)... at 1:83:2:84/+/97.59% +65 85nt, >M01687:476:000000000-LL5F5:1:2113:6575:10303_CONS(1)... at 1:85:1:85/+/97.65% +66 85nt, >M01687:476:000000000-LL5F5:1:2113:20502:11495_CONS(1)... at 1:85:1:85/+/97.65% +67 85nt, >M01687:476:000000000-LL5F5:1:2113:27506:13259_CONS(1)... at 1:85:1:85/+/97.65% +68 85nt, >M01687:476:000000000-LL5F5:1:2113:28201:14926_CONS(3)... at 1:85:1:85/+/97.65% +69 85nt, >M01687:476:000000000-LL5F5:1:2113:12008:16530_CONS(1)... at 1:85:1:85/+/97.65% +70 166nt, >M01687:476:000000000-LL5F5:1:2113:28884:17195_PairEnd(3)... at 1:166:1:166/+/100.00% +71 85nt, >M01687:476:000000000-LL5F5:1:2113:15135:17207_CONS(1)... at 1:85:1:85/+/97.65% +72 85nt, >M01687:476:000000000-LL5F5:1:2113:11618:17787_CONS(1)... at 1:85:1:85/+/97.65% +73 85nt, >M01687:476:000000000-LL5F5:1:2113:22076:18059_CONS(1)... at 1:85:1:85/+/97.65% +74 170nt, >M01687:476:000000000-LL5F5:1:2113:3888:18129_PairEnd(1)... at 1:170:1:170/+/100.00% +75 85nt, >M01687:476:000000000-LL5F5:1:2113:16000:20871_CONS(1)... at 1:85:1:85/+/97.65% +76 85nt, >M01687:476:000000000-LL5F5:1:2112:13150:5542_CONS(1)... at 1:85:1:85/+/97.65% +77 84nt, >M01687:476:000000000-LL5F5:1:2112:11185:6138_CONS(1)... at 1:84:1:85/+/97.62% +78 85nt, >M01687:476:000000000-LL5F5:1:2112:4583:6148_CONS(1)... at 1:85:1:85/+/97.65% +79 86nt, >M01687:476:000000000-LL5F5:1:2112:10578:6700_CONS(3)... at 1:86:1:86/+/97.67% +80 85nt, >M01687:476:000000000-LL5F5:1:2112:24375:7063_CONS(1)... at 1:85:1:85/+/97.65% +81 85nt, >M01687:476:000000000-LL5F5:1:2112:27670:7201_CONS(2)... at 1:85:1:85/+/97.65% +82 85nt, >M01687:476:000000000-LL5F5:1:2112:21556:10598_CONS(1)... at 1:85:1:85/+/97.65% +83 85nt, >M01687:476:000000000-LL5F5:1:2112:22308:12408_CONS(1)... at 1:85:1:85/+/97.65% +84 165nt, >M01687:476:000000000-LL5F5:1:2112:25238:12922_PairEnd(1)... at 1:165:1:165/+/99.39% +85 85nt, >M01687:476:000000000-LL5F5:1:2112:13523:13100_CONS(1)... at 1:85:1:85/+/97.65% +86 85nt, >M01687:476:000000000-LL5F5:1:2112:5843:13763_CONS(1)... at 1:85:1:85/+/97.65% +87 85nt, >M01687:476:000000000-LL5F5:1:2112:10532:15350_CONS(1)... at 1:85:1:85/+/97.65% +88 84nt, >M01687:476:000000000-LL5F5:1:2112:4269:18637_CONS(1)... at 1:84:1:85/+/98.81% +89 85nt, >M01687:476:000000000-LL5F5:1:2112:16596:18994_CONS(1)... at 1:85:1:85/+/97.65% +90 84nt, >M01687:476:000000000-LL5F5:1:2112:13369:20343_CONS(1)... at 1:84:1:85/+/97.62% +91 85nt, >M01687:476:000000000-LL5F5:1:2112:21206:20756_CONS(1)... at 1:85:1:85/+/97.65% +92 83nt, >M01687:476:000000000-LL5F5:1:2112:19685:20759_CONS(1)... at 1:83:1:85/+/97.59% +93 85nt, >M01687:476:000000000-LL5F5:1:2112:19008:20999_CONS(1)... at 1:85:1:85/+/97.65% +94 85nt, >M01687:476:000000000-LL5F5:1:2112:18126:22959_CONS(1)... at 1:85:1:85/+/97.65% +95 85nt, >M01687:476:000000000-LL5F5:1:2111:9180:1883_CONS(1)... at 1:85:1:85/+/97.65% +96 85nt, >M01687:476:000000000-LL5F5:1:2111:26315:4859_CONS(1)... at 1:85:1:85/+/97.65% +97 85nt, >M01687:476:000000000-LL5F5:1:2111:15542:5123_CONS(1)... at 1:85:1:85/+/97.65% +98 182nt, >M01687:476:000000000-LL5F5:1:2111:14621:5783_PairEnd(1)... at 1:182:1:182/+/98.90% +99 85nt, >M01687:476:000000000-LL5F5:1:2111:11249:5868_CONS(1)... at 1:85:1:85/+/97.65% +100 85nt, >M01687:476:000000000-LL5F5:1:2111:15692:7210_CONS(1)... at 1:85:1:85/+/97.65% +101 85nt, >M01687:476:000000000-LL5F5:1:2111:8604:9362_CONS(1)... at 1:85:1:85/+/97.65% +102 85nt, >M01687:476:000000000-LL5F5:1:2111:5608:9656_CONS(1)... at 1:85:1:85/+/97.65% +103 85nt, >M01687:476:000000000-LL5F5:1:2111:13098:11845_CONS(1)... at 1:85:1:85/+/97.65% +104 85nt, >M01687:476:000000000-LL5F5:1:2111:26689:14970_CONS(1)... at 1:85:1:85/+/97.65% +105 86nt, >M01687:476:000000000-LL5F5:1:2111:9846:16683_CONS(1)... at 1:86:1:85/+/97.67% +106 85nt, >M01687:476:000000000-LL5F5:1:2111:8397:21661_CONS(1)... at 1:85:1:85/+/97.65% +107 85nt, >M01687:476:000000000-LL5F5:1:2111:11473:24605_CONS(1)... at 1:85:1:85/+/97.65% +108 85nt, >M01687:476:000000000-LL5F5:1:2110:20346:5060_CONS(1)... at 1:85:1:85/+/97.65% +109 85nt, >M01687:476:000000000-LL5F5:1:2110:18531:5310_CONS(1)... at 1:85:1:85/+/97.65% +110 85nt, >M01687:476:000000000-LL5F5:1:2110:6107:11559_CONS(1)... at 1:85:1:85/+/97.65% +111 85nt, >M01687:476:000000000-LL5F5:1:2110:4640:12671_CONS(1)... at 1:85:1:85/+/97.65% +112 85nt, >M01687:476:000000000-LL5F5:1:2110:13108:13820_CONS(1)... at 1:85:1:85/+/97.65% +113 85nt, >M01687:476:000000000-LL5F5:1:2110:18990:13835_CONS(2)... at 1:85:1:85/+/97.65% +114 85nt, >M01687:476:000000000-LL5F5:1:2110:10954:16868_CONS(1)... at 1:85:1:85/+/97.65% +115 85nt, >M01687:476:000000000-LL5F5:1:2110:13406:20267_CONS(1)... at 1:85:1:85/+/97.65% +116 85nt, >M01687:476:000000000-LL5F5:1:2110:7632:21382_CONS(1)... at 1:85:1:85/+/97.65% +117 85nt, >M01687:476:000000000-LL5F5:1:2110:12273:22165_CONS(1)... at 1:85:1:85/+/97.65% +118 84nt, >M01687:476:000000000-LL5F5:1:2110:18696:23485_CONS(1)... at 1:84:1:85/+/97.62% +119 85nt, >M01687:476:000000000-LL5F5:1:2110:20914:24884_CONS(2)... at 1:85:1:85/+/97.65% +120 85nt, >M01687:476:000000000-LL5F5:1:2109:20894:1239_CONS(1)... at 1:85:1:85/+/97.65% +121 85nt, >M01687:476:000000000-LL5F5:1:2109:20822:4006_CONS(1)... at 1:85:1:85/+/97.65% +122 85nt, >M01687:476:000000000-LL5F5:1:2109:26541:4334_CONS(1)... at 1:85:1:85/+/97.65% +123 85nt, >M01687:476:000000000-LL5F5:1:2109:7732:6885_CONS(1)... at 1:85:1:85/+/97.65% +124 85nt, >M01687:476:000000000-LL5F5:1:2109:15626:8178_CONS(1)... at 1:85:1:85/+/97.65% +125 85nt, >M01687:476:000000000-LL5F5:1:2109:16880:10126_CONS(1)... at 1:85:1:85/+/97.65% +126 85nt, >M01687:476:000000000-LL5F5:1:2109:29199:10193_CONS(1)... at 1:85:1:85/+/97.65% +127 85nt, >M01687:476:000000000-LL5F5:1:2109:28402:11086_CONS(1)... at 1:85:1:85/+/97.65% +128 85nt, >M01687:476:000000000-LL5F5:1:2109:16195:11691_CONS(1)... at 1:85:1:85/+/97.65% +129 171nt, >M01687:476:000000000-LL5F5:1:2109:18709:13738_PairEnd(1)... at 1:171:1:170/+/99.42% +130 85nt, >M01687:476:000000000-LL5F5:1:2109:19465:13803_CONS(1)... at 1:85:1:85/+/97.65% +131 85nt, >M01687:476:000000000-LL5F5:1:2109:2637:16117_CONS(1)... at 1:85:1:85/+/97.65% +132 85nt, >M01687:476:000000000-LL5F5:1:2109:23528:18536_CONS(1)... at 1:85:1:85/+/97.65% +133 85nt, >M01687:476:000000000-LL5F5:1:2109:20199:19021_CONS(1)... at 1:85:1:85/+/97.65% +134 85nt, >M01687:476:000000000-LL5F5:1:2109:16195:19594_CONS(1)... at 1:85:1:85/+/97.65% +135 85nt, >M01687:476:000000000-LL5F5:1:2109:18272:21086_CONS(1)... at 1:85:1:85/+/97.65% +136 85nt, >M01687:476:000000000-LL5F5:1:2108:18951:2608_CONS(1)... at 1:85:1:85/+/97.65% +137 85nt, >M01687:476:000000000-LL5F5:1:2108:24142:4379_CONS(1)... at 1:85:1:85/+/97.65% +138 85nt, >M01687:476:000000000-LL5F5:1:2108:24965:6609_CONS(1)... at 1:85:1:85/+/97.65% +139 85nt, >M01687:476:000000000-LL5F5:1:2108:9381:10406_CONS(1)... at 1:85:1:85/+/97.65% +140 85nt, >M01687:476:000000000-LL5F5:1:2108:6441:18192_CONS(1)... at 1:85:1:85/+/97.65% +141 85nt, >M01687:476:000000000-LL5F5:1:2108:19599:19467_CONS(1)... at 1:85:1:85/+/97.65% +142 162nt, >M01687:476:000000000-LL5F5:1:2108:5426:21785_PairEnd(1)... at 1:162:1:164/+/99.38% +143 165nt, >M01687:476:000000000-LL5F5:1:2106:22724:3469_PairEnd(1)... at 1:165:1:165/+/99.39% +144 85nt, >M01687:476:000000000-LL5F5:1:2106:25995:4006_CONS(1)... at 1:85:1:85/+/97.65% +145 85nt, >M01687:476:000000000-LL5F5:1:2106:3864:9033_CONS(1)... at 1:85:1:85/+/97.65% +146 85nt, >M01687:476:000000000-LL5F5:1:2106:18153:11663_CONS(1)... at 1:85:1:85/+/97.65% +147 85nt, >M01687:476:000000000-LL5F5:1:2106:28579:14350_CONS(1)... at 1:85:1:85/+/97.65% +148 85nt, >M01687:476:000000000-LL5F5:1:2106:21915:14988_CONS(1)... at 1:85:1:85/+/97.65% +149 85nt, >M01687:476:000000000-LL5F5:1:2106:8570:16296_CONS(1)... at 1:85:1:85/+/97.65% +150 179nt, >M01687:476:000000000-LL5F5:1:2106:19042:16631_PairEnd(1)... at 1:179:1:179/+/98.88% +151 85nt, >M01687:476:000000000-LL5F5:1:2106:26577:17074_CONS(1)... at 1:85:1:85/+/97.65% +152 85nt, >M01687:476:000000000-LL5F5:1:2106:17881:18344_CONS(1)... at 1:85:1:85/+/97.65% +153 85nt, >M01687:476:000000000-LL5F5:1:2106:14403:21727_CONS(1)... at 1:85:1:85/+/97.65% +154 85nt, >M01687:476:000000000-LL5F5:1:2106:12379:22144_CONS(1)... at 1:85:1:85/+/97.65% +155 84nt, >M01687:476:000000000-LL5F5:1:2106:23379:24678_CONS(1)... at 1:84:1:84/+/97.62% +156 85nt, >M01687:476:000000000-LL5F5:1:2107:9034:1138_CONS(1)... at 1:85:1:85/+/97.65% +157 85nt, >M01687:476:000000000-LL5F5:1:2107:15360:1368_CONS(1)... at 1:85:1:85/+/97.65% +158 85nt, >M01687:476:000000000-LL5F5:1:2107:9092:1759_CONS(1)... at 1:85:1:85/+/97.65% +159 87nt, >M01687:476:000000000-LL5F5:1:2107:14395:4875_CONS(1)... at 1:87:1:85/+/97.70% +160 84nt, >M01687:476:000000000-LL5F5:1:2107:20452:5063_CONS(1)... at 1:84:1:84/+/97.62% +161 85nt, >M01687:476:000000000-LL5F5:1:2107:2607:9410_CONS(1)... at 1:85:1:85/+/97.65% +162 85nt, >M01687:476:000000000-LL5F5:1:2107:20205:9860_CONS(1)... at 1:85:1:85/+/97.65% +163 85nt, >M01687:476:000000000-LL5F5:1:2107:8791:13055_CONS(1)... at 1:85:1:85/+/97.65% +164 85nt, >M01687:476:000000000-LL5F5:1:2107:28683:15181_CONS(1)... at 1:85:1:85/+/97.65% +165 85nt, >M01687:476:000000000-LL5F5:1:2107:10187:16481_CONS(1)... at 1:85:1:85/+/97.65% +166 85nt, >M01687:476:000000000-LL5F5:1:2107:11415:16532_CONS(1)... at 1:85:1:85/+/97.65% +167 85nt, >M01687:476:000000000-LL5F5:1:2107:3815:17252_CONS(1)... at 1:85:1:85/+/97.65% +168 85nt, >M01687:476:000000000-LL5F5:1:2104:11965:2085_CONS(1)... at 1:85:1:85/+/97.65% +169 85nt, >M01687:476:000000000-LL5F5:1:2104:25599:3463_CONS(1)... at 1:85:1:85/+/97.65% +170 86nt, >M01687:476:000000000-LL5F5:1:2104:11977:4040_CONS(1)... at 1:86:1:85/+/97.67% +171 85nt, >M01687:476:000000000-LL5F5:1:2104:17656:5646_CONS(1)... at 1:85:1:85/+/97.65% +172 85nt, >M01687:476:000000000-LL5F5:1:2104:26168:5761_CONS(1)... at 1:85:1:85/+/97.65% +173 85nt, >M01687:476:000000000-LL5F5:1:2104:6296:5935_CONS(1)... at 1:85:1:85/+/97.65% +174 84nt, >M01687:476:000000000-LL5F5:1:2104:7482:8472_CONS(1)... at 1:84:1:85/+/97.62% +175 85nt, >M01687:476:000000000-LL5F5:1:2104:7640:12475_CONS(1)... at 1:85:1:85/+/97.65% +176 85nt, >M01687:476:000000000-LL5F5:1:2104:27080:12969_CONS(1)... at 1:85:1:85/+/97.65% +177 82nt, >M01687:476:000000000-LL5F5:1:2104:22494:16140_CONS(1)... at 1:82:4:85/+/97.56% +178 168nt, >M01687:476:000000000-LL5F5:1:2104:14988:20018_PairEnd(1)... at 1:168:1:169/+/100.00% +179 85nt, >M01687:476:000000000-LL5F5:1:2104:8938:21698_CONS(1)... at 1:85:1:85/+/97.65% +180 85nt, >M01687:476:000000000-LL5F5:1:2104:20400:22947_CONS(1)... at 1:85:1:85/+/97.65% +181 85nt, >M01687:476:000000000-LL5F5:1:2105:27084:5198_CONS(1)... at 1:85:1:85/+/97.65% +182 84nt, >M01687:476:000000000-LL5F5:1:2105:15010:10126_CONS(1)... at 1:84:1:85/+/98.81% +183 84nt, >M01687:476:000000000-LL5F5:1:2105:27171:12967_CONS(1)... at 1:84:2:85/+/97.62% +184 85nt, >M01687:476:000000000-LL5F5:1:2105:7525:13672_CONS(1)... at 1:85:1:85/+/97.65% +185 85nt, >M01687:476:000000000-LL5F5:1:2105:2036:16155_CONS(1)... at 1:85:1:85/+/97.65% +186 85nt, >M01687:476:000000000-LL5F5:1:2105:19078:19091_CONS(1)... at 1:85:1:85/+/97.65% +187 85nt, >M01687:476:000000000-LL5F5:1:2105:22681:20396_CONS(1)... at 1:85:1:85/+/97.65% +188 85nt, >M01687:476:000000000-LL5F5:1:2105:26072:22282_CONS(1)... at 1:85:1:85/+/97.65% +189 85nt, >M01687:476:000000000-LL5F5:1:2105:22877:23794_CONS(1)... at 1:85:1:85/+/97.65% +190 85nt, >M01687:476:000000000-LL5F5:1:2102:11303:1356_CONS(1)... at 1:85:1:85/+/97.65% +191 85nt, >M01687:476:000000000-LL5F5:1:2102:21126:3562_CONS(1)... at 1:85:1:85/+/97.65% +192 85nt, >M01687:476:000000000-LL5F5:1:2102:23524:6710_CONS(2)... at 1:85:1:85/+/97.65% +193 85nt, >M01687:476:000000000-LL5F5:1:2102:12505:7203_CONS(1)... at 1:85:1:85/+/97.65% +194 85nt, >M01687:476:000000000-LL5F5:1:2102:2521:8851_CONS(1)... at 1:85:1:85/+/97.65% +195 83nt, >M01687:476:000000000-LL5F5:1:2102:24212:16722_CONS(1)... at 1:83:1:85/+/97.59% +196 86nt, >M01687:476:000000000-LL5F5:1:2102:6508:17079_CONS(1)... at 1:86:1:85/+/97.67% +197 85nt, >M01687:476:000000000-LL5F5:1:2102:17067:18112_CONS(1)... at 1:85:1:85/+/97.65% +198 81nt, >M01687:476:000000000-LL5F5:1:2102:4745:18313_CONS(1)... at 1:81:1:81/+/97.53% +199 85nt, >M01687:476:000000000-LL5F5:1:2102:11364:19317_CONS(1)... at 1:85:1:85/+/97.65% +200 85nt, >M01687:476:000000000-LL5F5:1:2102:26796:19946_CONS(1)... at 1:85:1:85/+/97.65% +201 85nt, >M01687:476:000000000-LL5F5:1:2102:8032:20354_CONS(1)... at 1:85:1:85/+/97.65% +202 85nt, >M01687:476:000000000-LL5F5:1:2102:20494:21366_CONS(1)... at 1:85:1:85/+/97.65% +203 86nt, >M01687:476:000000000-LL5F5:1:2102:24085:21470_CONS(1)... at 1:86:1:85/+/97.67% +204 85nt, >M01687:476:000000000-LL5F5:1:2103:21838:1061_CONS(1)... at 1:85:1:85/+/97.65% +205 85nt, >M01687:476:000000000-LL5F5:1:2103:7770:7181_CONS(1)... at 1:85:1:85/+/97.65% +206 85nt, >M01687:476:000000000-LL5F5:1:2103:18008:8640_CONS(1)... at 1:85:1:85/+/97.65% +207 85nt, >M01687:476:000000000-LL5F5:1:2103:1961:10643_CONS(1)... at 1:85:1:85/+/97.65% +208 85nt, >M01687:476:000000000-LL5F5:1:2103:28783:11369_CONS(1)... at 1:85:1:85/+/97.65% +209 85nt, >M01687:476:000000000-LL5F5:1:2103:2036:12285_CONS(1)... at 1:85:1:85/+/97.65% +210 85nt, >M01687:476:000000000-LL5F5:1:2103:14758:12846_CONS(1)... at 1:85:1:85/+/97.65% +211 86nt, >M01687:476:000000000-LL5F5:1:2103:18086:13266_CONS(1)... at 1:86:1:85/+/97.67% +212 85nt, >M01687:476:000000000-LL5F5:1:2103:4406:13516_CONS(1)... at 1:85:1:85/+/97.65% +213 85nt, >M01687:476:000000000-LL5F5:1:2103:3459:14713_CONS(1)... at 1:85:1:85/+/97.65% +214 85nt, >M01687:476:000000000-LL5F5:1:2103:23476:17386_CONS(1)... at 1:85:1:85/+/97.65% +215 85nt, >M01687:476:000000000-LL5F5:1:2103:7983:17423_CONS(1)... at 1:85:1:85/+/97.65% +216 85nt, >M01687:476:000000000-LL5F5:1:2103:13521:18334_CONS(1)... at 1:85:1:85/+/97.65% +217 85nt, >M01687:476:000000000-LL5F5:1:2103:14724:19043_CONS(1)... at 1:85:1:85/+/97.65% +218 85nt, >M01687:476:000000000-LL5F5:1:2103:19054:19997_CONS(1)... at 1:85:1:85/+/97.65% +219 85nt, >M01687:476:000000000-LL5F5:1:2103:10814:21723_CONS(1)... at 1:85:1:85/+/97.65% +220 85nt, >M01687:476:000000000-LL5F5:1:2103:13869:22319_CONS(1)... at 1:85:1:85/+/97.65% +221 85nt, >M01687:476:000000000-LL5F5:1:2103:17766:23143_CONS(1)... at 1:85:1:85/+/97.65% +222 85nt, >M01687:476:000000000-LL5F5:1:2103:21686:23374_CONS(1)... at 1:85:1:85/+/97.65% +223 85nt, >M01687:476:000000000-LL5F5:1:2103:8818:24507_CONS(1)... at 1:85:1:85/+/97.65% +224 187nt, >M01687:476:000000000-LL5F5:1:2116:17253:6639_CONS(1)... * +225 85nt, >M01687:476:000000000-LL5F5:1:2116:9957:6654_CONS(6)... at 1:85:1:85/+/97.65% +226 85nt, >M01687:476:000000000-LL5F5:1:2116:12990:6821_CONS(1)... at 1:85:1:85/+/97.65% +227 165nt, >M01687:476:000000000-LL5F5:1:2116:24382:10053_PairEnd(1)... at 1:165:2:166/+/99.39% +228 85nt, >M01687:476:000000000-LL5F5:1:2116:11666:10357_CONS(1)... at 1:85:1:85/+/97.65% +229 85nt, >M01687:476:000000000-LL5F5:1:2116:28149:10646_CONS(1)... at 1:85:1:85/+/97.65% +230 85nt, >M01687:476:000000000-LL5F5:1:2116:21661:11694_CONS(1)... at 1:85:1:85/+/97.65% +231 85nt, >M01687:476:000000000-LL5F5:1:2116:24380:13073_CONS(1)... at 1:85:1:85/+/97.65% +232 85nt, >M01687:476:000000000-LL5F5:1:2116:27098:16229_CONS(1)... at 1:85:1:85/+/97.65% +233 85nt, >M01687:476:000000000-LL5F5:1:2116:18001:16812_CONS(1)... at 1:85:1:85/+/97.65% +234 171nt, >M01687:476:000000000-LL5F5:1:2116:22644:18224_PairEnd(1)... at 1:171:1:173/+/99.42% +235 85nt, >M01687:476:000000000-LL5F5:1:2116:11681:19840_CONS(1)... at 1:85:1:85/+/97.65% +236 85nt, >M01687:476:000000000-LL5F5:1:2116:23809:20158_CONS(2)... at 1:85:1:85/+/97.65% +237 85nt, >M01687:476:000000000-LL5F5:1:2116:5318:20242_CONS(1)... at 1:85:1:85/+/97.65% +238 85nt, >M01687:476:000000000-LL5F5:1:2116:8877:21413_CONS(1)... at 1:85:1:85/+/97.65% +239 85nt, >M01687:476:000000000-LL5F5:1:2116:16155:22675_CONS(1)... at 1:85:1:85/+/97.65% +240 85nt, >M01687:476:000000000-LL5F5:1:2117:16030:4045_CONS(1)... at 1:85:1:85/+/97.65% +241 85nt, >M01687:476:000000000-LL5F5:1:2117:21129:5980_CONS(1)... at 1:85:1:85/+/97.65% +242 85nt, >M01687:476:000000000-LL5F5:1:2117:2379:13398_CONS(1)... at 1:85:1:85/+/97.65% +243 85nt, >M01687:476:000000000-LL5F5:1:2117:27494:13622_CONS(1)... at 1:85:1:85/+/97.65% +244 85nt, >M01687:476:000000000-LL5F5:1:2117:24906:13683_CONS(2)... at 1:85:1:85/+/97.65% +245 85nt, >M01687:476:000000000-LL5F5:1:2117:19963:13738_CONS(1)... at 1:85:1:85/+/97.65% +246 85nt, >M01687:476:000000000-LL5F5:1:2117:14025:17388_CONS(1)... at 1:85:1:85/+/97.65% +247 85nt, >M01687:476:000000000-LL5F5:1:2117:19655:17427_CONS(1)... at 1:85:1:85/+/97.65% +248 85nt, >M01687:476:000000000-LL5F5:1:2117:28762:17650_CONS(2)... at 1:85:1:85/+/97.65% +249 85nt, >M01687:476:000000000-LL5F5:1:2117:7963:19267_CONS(1)... at 1:85:1:85/+/97.65% +250 85nt, >M01687:476:000000000-LL5F5:1:2117:7425:21885_CONS(1)... at 1:85:1:85/+/97.65% +251 85nt, >M01687:476:000000000-LL5F5:1:2117:14712:23634_CONS(1)... at 1:85:1:85/+/97.65% +252 84nt, >M01687:476:000000000-LL5F5:1:1119:20085:1626_CONS(1)... at 1:84:2:85/+/97.62% +253 85nt, >M01687:476:000000000-LL5F5:1:1119:23887:2509_CONS(1)... at 1:85:1:85/+/97.65% +254 85nt, >M01687:476:000000000-LL5F5:1:1119:15689:2682_CONS(1)... at 1:85:1:85/+/97.65% +255 169nt, >M01687:476:000000000-LL5F5:1:1119:18487:2690_PairEnd(1)... at 1:169:1:169/+/98.82% +256 86nt, >M01687:476:000000000-LL5F5:1:1119:6646:4496_CONS(1)... at 1:86:1:85/+/97.67% +257 85nt, >M01687:476:000000000-LL5F5:1:1119:15077:5401_CONS(1)... at 1:85:1:85/+/97.65% +258 85nt, >M01687:476:000000000-LL5F5:1:1119:25464:7455_CONS(1)... at 1:85:1:85/+/97.65% +259 85nt, >M01687:476:000000000-LL5F5:1:1119:21413:14043_CONS(1)... at 1:85:1:85/+/97.65% +260 84nt, >M01687:476:000000000-LL5F5:1:1119:11685:15313_CONS(1)... at 1:84:1:85/+/98.81% +261 85nt, >M01687:476:000000000-LL5F5:1:1119:9643:16237_CONS(1)... at 1:85:1:85/+/97.65% +262 85nt, >M01687:476:000000000-LL5F5:1:1119:10592:16419_CONS(1)... at 1:85:1:85/+/97.65% +263 85nt, >M01687:476:000000000-LL5F5:1:1119:11096:18476_CONS(1)... at 1:85:1:85/+/97.65% +264 85nt, >M01687:476:000000000-LL5F5:1:1119:28582:18671_CONS(1)... at 1:85:1:85/+/97.65% +265 85nt, >M01687:476:000000000-LL5F5:1:1119:10443:19893_CONS(1)... at 1:85:1:85/+/97.65% +266 85nt, >M01687:476:000000000-LL5F5:1:1119:21127:20097_CONS(1)... at 1:85:1:85/+/97.65% +267 85nt, >M01687:476:000000000-LL5F5:1:1119:10527:23486_CONS(1)... at 1:85:1:85/+/97.65% +268 85nt, >M01687:476:000000000-LL5F5:1:1119:9116:23771_CONS(1)... at 1:85:1:85/+/97.65% +269 85nt, >M01687:476:000000000-LL5F5:1:2101:6315:8317_CONS(1)... at 1:85:1:85/+/97.65% +270 85nt, >M01687:476:000000000-LL5F5:1:2101:29152:10260_CONS(1)... at 1:85:1:85/+/97.65% +271 85nt, >M01687:476:000000000-LL5F5:1:2101:21313:12363_CONS(1)... at 1:85:1:85/+/97.65% +272 85nt, >M01687:476:000000000-LL5F5:1:2101:7152:12399_CONS(1)... at 1:85:1:85/+/97.65% +273 85nt, >M01687:476:000000000-LL5F5:1:2101:17331:14118_CONS(1)... at 1:85:1:85/+/97.65% +274 85nt, >M01687:476:000000000-LL5F5:1:2101:15551:14443_CONS(1)... at 1:85:1:85/+/97.65% +275 85nt, >M01687:476:000000000-LL5F5:1:2101:8061:19964_CONS(1)... at 1:85:1:85/+/97.65% +276 85nt, >M01687:476:000000000-LL5F5:1:2101:21948:21443_CONS(1)... at 1:85:1:85/+/97.65% +277 85nt, >M01687:476:000000000-LL5F5:1:1115:15276:3360_CONS(1)... at 1:85:1:85/+/97.65% +278 85nt, >M01687:476:000000000-LL5F5:1:1115:13629:3380_CONS(1)... at 1:85:1:85/+/97.65% +279 85nt, >M01687:476:000000000-LL5F5:1:1115:22450:3450_CONS(1)... at 1:85:1:85/+/97.65% +280 85nt, >M01687:476:000000000-LL5F5:1:1115:24514:3859_CONS(1)... at 1:85:1:85/+/97.65% +281 85nt, >M01687:476:000000000-LL5F5:1:1115:27302:10185_CONS(1)... at 1:85:1:85/+/97.65% +282 85nt, >M01687:476:000000000-LL5F5:1:1115:11564:14647_CONS(1)... at 1:85:1:85/+/97.65% +283 85nt, >M01687:476:000000000-LL5F5:1:1115:9117:16801_CONS(1)... at 1:85:1:85/+/97.65% +284 85nt, >M01687:476:000000000-LL5F5:1:1115:8802:19833_CONS(1)... at 1:85:1:85/+/97.65% +285 85nt, >M01687:476:000000000-LL5F5:1:1115:16739:23776_CONS(1)... at 1:85:1:85/+/97.65% +286 85nt, >M01687:476:000000000-LL5F5:1:1116:9997:2144_CONS(1)... at 1:85:1:85/+/97.65% +287 85nt, >M01687:476:000000000-LL5F5:1:1116:15673:4243_CONS(1)... at 1:85:1:85/+/97.65% +288 85nt, >M01687:476:000000000-LL5F5:1:1116:7242:4718_CONS(2)... at 1:85:1:85/+/97.65% +289 85nt, >M01687:476:000000000-LL5F5:1:1116:22087:7236_CONS(1)... at 1:85:1:85/+/97.65% +290 85nt, >M01687:476:000000000-LL5F5:1:1116:10836:7723_CONS(1)... at 1:85:1:85/+/97.65% +291 169nt, >M01687:476:000000000-LL5F5:1:1116:7912:9809_PairEnd(1)... at 1:169:1:169/+/100.00% +292 85nt, >M01687:476:000000000-LL5F5:1:1116:9945:10023_CONS(1)... at 1:85:1:85/+/97.65% +293 85nt, >M01687:476:000000000-LL5F5:1:1116:16156:11762_CONS(1)... at 1:85:1:85/+/97.65% +294 85nt, >M01687:476:000000000-LL5F5:1:1116:15641:12207_CONS(1)... at 1:85:1:85/+/97.65% +295 85nt, >M01687:476:000000000-LL5F5:1:1116:5045:12464_CONS(1)... at 1:85:1:85/+/97.65% +296 85nt, >M01687:476:000000000-LL5F5:1:1116:9935:15212_CONS(1)... at 1:85:1:85/+/97.65% +297 85nt, >M01687:476:000000000-LL5F5:1:1116:26193:15463_CONS(1)... at 1:85:1:85/+/97.65% +298 85nt, >M01687:476:000000000-LL5F5:1:1116:24473:18083_CONS(1)... at 1:85:1:85/+/97.65% +299 85nt, >M01687:476:000000000-LL5F5:1:1116:9528:22784_CONS(1)... at 1:85:1:85/+/97.65% +300 84nt, >M01687:476:000000000-LL5F5:1:1116:21571:22966_CONS(1)... at 1:84:1:84/+/97.62% +301 85nt, >M01687:476:000000000-LL5F5:1:1114:11749:4990_CONS(1)... at 1:85:1:85/+/97.65% +302 84nt, >M01687:476:000000000-LL5F5:1:1114:25147:5087_CONS(1)... at 1:84:1:85/+/97.62% +303 85nt, >M01687:476:000000000-LL5F5:1:1114:2393:9663_CONS(1)... at 1:85:1:85/+/97.65% +304 165nt, >M01687:476:000000000-LL5F5:1:1114:6375:11153_PairEnd(2)... at 1:165:1:165/+/100.00% +305 85nt, >M01687:476:000000000-LL5F5:1:1114:8336:12166_CONS(1)... at 1:85:1:85/+/97.65% +306 85nt, >M01687:476:000000000-LL5F5:1:1114:10250:16126_CONS(1)... at 1:85:1:85/+/97.65% +307 85nt, >M01687:476:000000000-LL5F5:1:1114:20840:16434_CONS(1)... at 1:85:1:85/+/97.65% +308 85nt, >M01687:476:000000000-LL5F5:1:1114:25588:17187_CONS(1)... at 1:85:1:85/+/97.65% +309 85nt, >M01687:476:000000000-LL5F5:1:1114:13087:17658_CONS(1)... at 1:85:1:85/+/97.65% +310 84nt, >M01687:476:000000000-LL5F5:1:1114:3007:18356_CONS(1)... at 1:84:1:85/+/97.62% +311 87nt, >M01687:476:000000000-LL5F5:1:1114:7295:18851_CONS(1)... at 1:87:1:85/+/97.70% +312 85nt, >M01687:476:000000000-LL5F5:1:1114:14555:20073_CONS(1)... at 1:85:1:85/+/97.65% +313 166nt, >M01687:476:000000000-LL5F5:1:1114:3765:20400_PairEnd(1)... at 1:166:1:166/+/99.40% +314 84nt, >M01687:476:000000000-LL5F5:1:1114:8690:21810_CONS(1)... at 1:84:1:84/+/97.62% +315 85nt, >M01687:476:000000000-LL5F5:1:1114:10379:23392_CONS(1)... at 1:85:1:85/+/97.65% +316 85nt, >M01687:476:000000000-LL5F5:1:1114:18405:23445_CONS(1)... at 1:85:1:85/+/97.65% +317 85nt, >M01687:476:000000000-LL5F5:1:1114:13098:23676_CONS(1)... at 1:85:1:85/+/97.65% +318 85nt, >M01687:476:000000000-LL5F5:1:1113:25108:5394_CONS(1)... at 1:85:1:85/+/97.65% +319 85nt, >M01687:476:000000000-LL5F5:1:1113:26630:6556_CONS(1)... at 1:85:1:85/+/97.65% +320 85nt, >M01687:476:000000000-LL5F5:1:1113:22808:8037_CONS(1)... at 1:85:1:85/+/97.65% +321 85nt, >M01687:476:000000000-LL5F5:1:1113:2974:8244_CONS(1)... at 1:85:1:85/+/97.65% +322 85nt, >M01687:476:000000000-LL5F5:1:1113:28084:8253_CONS(1)... at 1:85:1:85/+/97.65% +323 85nt, >M01687:476:000000000-LL5F5:1:1113:2706:8358_CONS(1)... at 1:85:1:85/+/97.65% +324 85nt, >M01687:476:000000000-LL5F5:1:1113:20585:9482_CONS(1)... at 1:85:1:85/+/97.65% +325 85nt, >M01687:476:000000000-LL5F5:1:1113:14366:10805_CONS(1)... at 1:85:1:85/+/97.65% +326 85nt, >M01687:476:000000000-LL5F5:1:1113:12924:11157_CONS(1)... at 1:85:1:85/+/97.65% +327 85nt, >M01687:476:000000000-LL5F5:1:1113:11393:15226_CONS(1)... at 1:85:1:85/+/97.65% +328 86nt, >M01687:476:000000000-LL5F5:1:1113:26602:16851_CONS(1)... at 1:86:1:85/+/97.67% +329 85nt, >M01687:476:000000000-LL5F5:1:1113:15788:18149_CONS(1)... at 1:85:1:85/+/97.65% +330 85nt, >M01687:476:000000000-LL5F5:1:1113:12952:22466_CONS(1)... at 1:85:1:85/+/97.65% +331 84nt, >M01687:476:000000000-LL5F5:1:1113:21075:23433_CONS(1)... at 1:84:1:85/+/97.62% +332 86nt, >M01687:476:000000000-LL5F5:1:1112:15406:1372_CONS(1)... at 2:86:1:85/+/97.67% +333 86nt, >M01687:476:000000000-LL5F5:1:1112:23019:2848_CONS(1)... at 1:86:1:85/+/97.67% +334 85nt, >M01687:476:000000000-LL5F5:1:1112:24047:3269_CONS(1)... at 1:85:1:85/+/97.65% +335 89nt, >M01687:476:000000000-LL5F5:1:1112:24777:5678_CONS(1)... at 1:89:1:89/+/97.75% +336 85nt, >M01687:476:000000000-LL5F5:1:1112:24231:7696_CONS(1)... at 1:85:1:85/+/97.65% +337 172nt, >M01687:476:000000000-LL5F5:1:1112:13035:8053_PairEnd(1)... at 1:172:1:172/+/100.00% +338 85nt, >M01687:476:000000000-LL5F5:1:1112:28170:8139_CONS(1)... at 1:85:1:85/+/97.65% +339 84nt, >M01687:476:000000000-LL5F5:1:1112:16924:10999_CONS(1)... at 1:84:1:85/+/98.81% +340 85nt, >M01687:476:000000000-LL5F5:1:1112:7960:11541_CONS(1)... at 1:85:1:85/+/97.65% +341 85nt, >M01687:476:000000000-LL5F5:1:1112:8898:15005_CONS(1)... at 1:85:1:85/+/97.65% +342 85nt, >M01687:476:000000000-LL5F5:1:1112:7167:16053_CONS(1)... at 1:85:1:85/+/97.65% +343 86nt, >M01687:476:000000000-LL5F5:1:1112:28323:16493_CONS(1)... at 1:86:1:85/+/97.67% +344 85nt, >M01687:476:000000000-LL5F5:1:1112:23935:16511_CONS(1)... at 1:85:1:85/+/97.65% +345 85nt, >M01687:476:000000000-LL5F5:1:1112:14604:19981_CONS(1)... at 1:85:1:85/+/97.65% +346 85nt, >M01687:476:000000000-LL5F5:1:1112:23527:20986_CONS(1)... at 1:85:1:85/+/97.65% +347 85nt, >M01687:476:000000000-LL5F5:1:1112:18435:21035_CONS(1)... at 1:85:1:85/+/97.65% +348 85nt, >M01687:476:000000000-LL5F5:1:1112:9383:22858_CONS(1)... at 1:85:1:85/+/97.65% +349 85nt, >M01687:476:000000000-LL5F5:1:1112:13796:24290_CONS(1)... at 1:85:1:85/+/97.65% +350 85nt, >M01687:476:000000000-LL5F5:1:1111:25239:3282_CONS(1)... at 1:85:1:85/+/97.65% +351 85nt, >M01687:476:000000000-LL5F5:1:1111:19678:6955_CONS(1)... at 1:85:1:85/+/97.65% +352 86nt, >M01687:476:000000000-LL5F5:1:1111:21373:7592_CONS(1)... at 1:86:1:85/+/97.67% +353 85nt, >M01687:476:000000000-LL5F5:1:1111:5209:9623_CONS(1)... at 1:85:1:85/+/97.65% +354 87nt, >M01687:476:000000000-LL5F5:1:1111:19509:9916_CONS(2)... at 1:87:1:85/+/97.70% +355 85nt, >M01687:476:000000000-LL5F5:1:1111:5273:13967_CONS(1)... at 1:85:1:85/+/97.65% +356 85nt, >M01687:476:000000000-LL5F5:1:1111:28118:14386_CONS(1)... at 1:85:1:85/+/97.65% +357 85nt, >M01687:476:000000000-LL5F5:1:1111:26428:17657_CONS(1)... at 1:85:1:85/+/97.65% +358 85nt, >M01687:476:000000000-LL5F5:1:1111:9498:19149_CONS(1)... at 1:85:1:85/+/97.65% +359 85nt, >M01687:476:000000000-LL5F5:1:1111:14850:20494_CONS(1)... at 1:85:1:85/+/97.65% +360 85nt, >M01687:476:000000000-LL5F5:1:1111:19318:22932_CONS(1)... at 1:85:1:85/+/97.65% +361 85nt, >M01687:476:000000000-LL5F5:1:1111:17692:24318_CONS(1)... at 1:85:1:85/+/97.65% +362 85nt, >M01687:476:000000000-LL5F5:1:1110:15281:5273_CONS(1)... at 1:85:1:85/+/97.65% +363 85nt, >M01687:476:000000000-LL5F5:1:1110:20531:6238_CONS(1)... at 1:85:1:85/+/97.65% +364 85nt, >M01687:476:000000000-LL5F5:1:1110:18569:6426_CONS(1)... at 1:85:1:85/+/97.65% +365 85nt, >M01687:476:000000000-LL5F5:1:1110:6073:10733_CONS(1)... at 1:85:1:85/+/97.65% +366 85nt, >M01687:476:000000000-LL5F5:1:1110:28201:11061_CONS(1)... at 1:85:1:85/+/97.65% +367 85nt, >M01687:476:000000000-LL5F5:1:1110:6506:13013_CONS(1)... at 1:85:1:85/+/97.65% +368 85nt, >M01687:476:000000000-LL5F5:1:1110:17692:16659_CONS(1)... at 1:85:1:85/+/97.65% +369 85nt, >M01687:476:000000000-LL5F5:1:1110:24249:19975_CONS(1)... at 1:85:1:85/+/97.65% +370 85nt, >M01687:476:000000000-LL5F5:1:1110:24936:21957_CONS(1)... at 1:85:1:85/+/97.65% +371 85nt, >M01687:476:000000000-LL5F5:1:1110:19223:22922_CONS(1)... at 1:85:1:85/+/97.65% +372 82nt, >M01687:476:000000000-LL5F5:1:1109:19146:2248_CONS(1)... at 1:82:1:82/+/97.56% +373 84nt, >M01687:476:000000000-LL5F5:1:1109:17005:6019_CONS(1)... at 1:84:2:85/+/97.62% +374 85nt, >M01687:476:000000000-LL5F5:1:1109:15747:6748_CONS(1)... at 1:85:1:85/+/97.65% +375 84nt, >M01687:476:000000000-LL5F5:1:1109:20836:8678_CONS(1)... at 1:84:1:85/+/98.81% +376 85nt, >M01687:476:000000000-LL5F5:1:1109:6093:8735_CONS(1)... at 1:85:1:85/+/97.65% +377 85nt, >M01687:476:000000000-LL5F5:1:1109:8185:10217_CONS(1)... at 1:85:1:85/+/97.65% +378 85nt, >M01687:476:000000000-LL5F5:1:1109:25500:11110_CONS(1)... at 1:85:1:85/+/97.65% +379 85nt, >M01687:476:000000000-LL5F5:1:1109:6835:14367_CONS(1)... at 1:85:1:85/+/97.65% +380 85nt, >M01687:476:000000000-LL5F5:1:1109:17455:14535_CONS(1)... at 1:85:1:85/+/97.65% +381 85nt, >M01687:476:000000000-LL5F5:1:1109:3766:15079_CONS(1)... at 1:85:1:85/+/97.65% +382 85nt, >M01687:476:000000000-LL5F5:1:1109:17163:15409_CONS(1)... at 1:85:1:85/+/97.65% +383 85nt, >M01687:476:000000000-LL5F5:1:1109:13849:17242_CONS(1)... at 1:85:1:85/+/97.65% +384 85nt, >M01687:476:000000000-LL5F5:1:1109:4666:17807_CONS(1)... at 1:85:1:85/+/97.65% +385 85nt, >M01687:476:000000000-LL5F5:1:1109:9910:19424_CONS(1)... at 1:85:1:85/+/97.65% +386 84nt, >M01687:476:000000000-LL5F5:1:1108:11696:1207_CONS(1)... at 1:84:1:85/+/98.81% +387 86nt, >M01687:476:000000000-LL5F5:1:1108:14181:1691_CONS(2)... at 1:86:1:85/+/97.67% +388 85nt, >M01687:476:000000000-LL5F5:1:1108:25662:5024_CONS(1)... at 1:85:1:85/+/97.65% +389 85nt, >M01687:476:000000000-LL5F5:1:1108:19624:8321_CONS(1)... at 1:85:1:85/+/97.65% +390 85nt, >M01687:476:000000000-LL5F5:1:1108:16651:11307_CONS(1)... at 1:85:1:85/+/97.65% +391 85nt, >M01687:476:000000000-LL5F5:1:1108:9557:12308_CONS(1)... at 1:85:1:85/+/97.65% +392 85nt, >M01687:476:000000000-LL5F5:1:1108:7562:14475_CONS(1)... at 1:85:1:85/+/97.65% +393 85nt, >M01687:476:000000000-LL5F5:1:1108:19484:16042_CONS(1)... at 1:85:1:85/+/97.65% +394 85nt, >M01687:476:000000000-LL5F5:1:1108:23951:16066_CONS(1)... at 1:85:1:85/+/97.65% +395 163nt, >M01687:476:000000000-LL5F5:1:1108:23702:16102_PairEnd(1)... at 1:163:1:164/+/100.00% +396 85nt, >M01687:476:000000000-LL5F5:1:1108:19703:16206_CONS(1)... at 1:85:1:85/+/97.65% +397 85nt, >M01687:476:000000000-LL5F5:1:1108:18927:17370_CONS(1)... at 1:85:1:85/+/97.65% +398 85nt, >M01687:476:000000000-LL5F5:1:1108:24470:22586_CONS(1)... at 1:85:1:85/+/97.65% +399 85nt, >M01687:476:000000000-LL5F5:1:1108:17614:24615_CONS(1)... at 1:85:1:85/+/97.65% +400 85nt, >M01687:476:000000000-LL5F5:1:1107:15451:2641_CONS(1)... at 1:85:1:85/+/97.65% +401 85nt, >M01687:476:000000000-LL5F5:1:1107:8297:2907_CONS(1)... at 1:85:1:85/+/97.65% +402 85nt, >M01687:476:000000000-LL5F5:1:1107:23071:5136_CONS(1)... at 1:85:1:85/+/97.65% +403 85nt, >M01687:476:000000000-LL5F5:1:1107:21195:5383_CONS(2)... at 1:85:1:85/+/97.65% +404 85nt, >M01687:476:000000000-LL5F5:1:1107:25942:6778_CONS(1)... at 1:85:1:85/+/97.65% +405 85nt, >M01687:476:000000000-LL5F5:1:1107:12692:7067_CONS(1)... at 1:85:1:85/+/97.65% +406 85nt, >M01687:476:000000000-LL5F5:1:1107:28973:9540_CONS(1)... at 1:85:1:85/+/97.65% +407 85nt, >M01687:476:000000000-LL5F5:1:1107:28542:13276_CONS(1)... at 1:85:1:85/+/97.65% +408 85nt, >M01687:476:000000000-LL5F5:1:1107:21105:16886_CONS(1)... at 1:85:1:85/+/97.65% +409 85nt, >M01687:476:000000000-LL5F5:1:1107:28325:17504_CONS(1)... at 1:85:1:85/+/97.65% +410 85nt, >M01687:476:000000000-LL5F5:1:1107:4869:18012_CONS(1)... at 1:85:1:85/+/97.65% +411 85nt, >M01687:476:000000000-LL5F5:1:1107:13780:19215_CONS(1)... at 1:85:1:85/+/97.65% +412 85nt, >M01687:476:000000000-LL5F5:1:1107:10609:20522_CONS(1)... at 1:85:1:85/+/97.65% +413 84nt, >M01687:476:000000000-LL5F5:1:1106:21090:2037_CONS(1)... at 1:84:1:85/+/97.62% +414 85nt, >M01687:476:000000000-LL5F5:1:1106:19248:4991_CONS(1)... at 1:85:1:85/+/97.65% +415 85nt, >M01687:476:000000000-LL5F5:1:1106:13629:5128_CONS(1)... at 1:85:1:85/+/97.65% +416 85nt, >M01687:476:000000000-LL5F5:1:1106:11466:5636_CONS(1)... at 1:85:1:85/+/97.65% +417 85nt, >M01687:476:000000000-LL5F5:1:1106:21525:5692_CONS(1)... at 1:85:1:85/+/97.65% +418 85nt, >M01687:476:000000000-LL5F5:1:1106:12237:6434_CONS(1)... at 1:85:1:85/+/97.65% +419 85nt, >M01687:476:000000000-LL5F5:1:1106:16433:16409_CONS(1)... at 1:85:1:85/+/97.65% +420 85nt, >M01687:476:000000000-LL5F5:1:1106:23496:19035_CONS(1)... at 1:85:1:85/+/97.65% +421 86nt, >M01687:476:000000000-LL5F5:1:1106:23970:20560_CONS(1)... at 1:86:1:85/+/97.67% +422 84nt, >M01687:476:000000000-LL5F5:1:1106:6543:21430_CONS(1)... at 1:84:1:84/+/97.62% +423 85nt, >M01687:476:000000000-LL5F5:1:1106:9917:22898_CONS(1)... at 1:85:1:85/+/97.65% +424 86nt, >M01687:476:000000000-LL5F5:1:1106:13555:22917_CONS(1)... at 1:86:1:85/+/97.67% +425 85nt, >M01687:476:000000000-LL5F5:1:1106:24909:23762_CONS(1)... at 1:85:1:85/+/97.65% +426 85nt, >M01687:476:000000000-LL5F5:1:1105:13097:1314_CONS(1)... at 1:85:1:85/+/97.65% +427 85nt, >M01687:476:000000000-LL5F5:1:1105:10691:2298_CONS(1)... at 1:85:1:85/+/97.65% +428 85nt, >M01687:476:000000000-LL5F5:1:1105:13850:5512_CONS(1)... at 1:85:1:85/+/97.65% +429 85nt, >M01687:476:000000000-LL5F5:1:1105:22941:5984_CONS(1)... at 1:85:1:85/+/97.65% +430 85nt, >M01687:476:000000000-LL5F5:1:1105:14875:6335_CONS(1)... at 1:85:1:85/+/97.65% +431 85nt, >M01687:476:000000000-LL5F5:1:1105:26903:9159_CONS(1)... at 1:85:1:85/+/97.65% +432 85nt, >M01687:476:000000000-LL5F5:1:1105:7603:17162_CONS(1)... at 1:85:1:85/+/97.65% +433 85nt, >M01687:476:000000000-LL5F5:1:1105:27364:17233_CONS(1)... at 1:85:1:85/+/97.65% +434 85nt, >M01687:476:000000000-LL5F5:1:1105:6561:20654_CONS(1)... at 1:85:1:85/+/97.65% +435 85nt, >M01687:476:000000000-LL5F5:1:1105:17776:21949_CONS(1)... at 1:85:1:85/+/97.65% +436 85nt, >M01687:476:000000000-LL5F5:1:1105:19478:23973_CONS(1)... at 1:85:1:85/+/97.65% +437 85nt, >M01687:476:000000000-LL5F5:1:1104:22261:2034_CONS(1)... at 1:85:1:85/+/97.65% +438 85nt, >M01687:476:000000000-LL5F5:1:1104:7832:5491_CONS(1)... at 1:85:1:85/+/97.65% +439 86nt, >M01687:476:000000000-LL5F5:1:1104:22842:5998_CONS(1)... at 1:86:1:85/+/97.67% +440 85nt, >M01687:476:000000000-LL5F5:1:1104:24396:8045_CONS(1)... at 1:85:1:85/+/97.65% +441 85nt, >M01687:476:000000000-LL5F5:1:1104:6505:10213_CONS(1)... at 1:85:1:85/+/97.65% +442 85nt, >M01687:476:000000000-LL5F5:1:1104:16537:10616_CONS(1)... at 1:85:1:85/+/97.65% +443 85nt, >M01687:476:000000000-LL5F5:1:1104:8071:12057_CONS(1)... at 1:85:1:85/+/97.65% +444 85nt, >M01687:476:000000000-LL5F5:1:1104:6698:12562_CONS(1)... at 1:85:1:85/+/97.65% +445 84nt, >M01687:476:000000000-LL5F5:1:1104:23394:15163_CONS(1)... at 1:84:1:85/+/97.62% +446 83nt, >M01687:476:000000000-LL5F5:1:1104:7060:15455_CONS(1)... at 1:83:1:85/+/97.59% +447 85nt, >M01687:476:000000000-LL5F5:1:1104:3670:15492_CONS(1)... at 1:85:1:85/+/97.65% +448 85nt, >M01687:476:000000000-LL5F5:1:1104:28255:15714_CONS(1)... at 1:85:1:85/+/97.65% +449 177nt, >M01687:476:000000000-LL5F5:1:1104:26689:16986_PairEnd(1)... at 1:177:1:177/+/98.31% +450 90nt, >M01687:476:000000000-LL5F5:1:1104:19729:21738_CONS(1)... at 1:90:1:90/+/97.78% +451 85nt, >M01687:476:000000000-LL5F5:1:1104:15279:21857_CONS(1)... at 1:85:1:85/+/97.65% +452 85nt, >M01687:476:000000000-LL5F5:1:1103:7268:2046_CONS(1)... at 1:85:1:85/+/97.65% +453 85nt, >M01687:476:000000000-LL5F5:1:1103:11411:5031_CONS(1)... at 1:85:1:85/+/97.65% +454 85nt, >M01687:476:000000000-LL5F5:1:1103:11135:6839_CONS(1)... at 1:85:1:85/+/97.65% +455 80nt, >M01687:476:000000000-LL5F5:1:1103:6368:8243_CONS(1)... at 1:80:1:80/+/97.50% +456 85nt, >M01687:476:000000000-LL5F5:1:1103:21806:8947_CONS(1)... at 1:85:1:85/+/97.65% +457 85nt, >M01687:476:000000000-LL5F5:1:1103:26787:10536_CONS(1)... at 1:85:1:85/+/97.65% +458 85nt, >M01687:476:000000000-LL5F5:1:1103:23658:13473_CONS(1)... at 1:85:1:85/+/97.65% +459 85nt, >M01687:476:000000000-LL5F5:1:1103:23609:16419_CONS(1)... at 1:85:1:85/+/97.65% +460 85nt, >M01687:476:000000000-LL5F5:1:1103:17131:18168_CONS(1)... at 1:85:1:85/+/97.65% +461 168nt, >M01687:476:000000000-LL5F5:1:1103:20849:18864_PairEnd(1)... at 1:168:1:169/+/100.00% +462 85nt, >M01687:476:000000000-LL5F5:1:1118:14588:2673_CONS(1)... at 1:85:1:85/+/97.65% +463 85nt, >M01687:476:000000000-LL5F5:1:1118:6577:6217_CONS(1)... at 1:85:1:85/+/97.65% +464 85nt, >M01687:476:000000000-LL5F5:1:1118:27645:6648_CONS(1)... at 1:85:1:85/+/97.65% +465 85nt, >M01687:476:000000000-LL5F5:1:1118:5381:7382_CONS(1)... at 1:85:1:85/+/97.65% +466 85nt, >M01687:476:000000000-LL5F5:1:1118:10505:8744_CONS(1)... at 1:85:1:85/+/97.65% +467 85nt, >M01687:476:000000000-LL5F5:1:1118:14341:9591_CONS(1)... at 1:85:1:85/+/97.65% +468 86nt, >M01687:476:000000000-LL5F5:1:1118:28851:11927_CONS(1)... at 1:86:1:85/+/97.67% +469 85nt, >M01687:476:000000000-LL5F5:1:1118:11709:13730_CONS(1)... at 1:85:1:85/+/97.65% +470 85nt, >M01687:476:000000000-LL5F5:1:1118:22930:15565_CONS(1)... at 1:85:1:85/+/97.65% +471 85nt, >M01687:476:000000000-LL5F5:1:1118:19007:15624_CONS(1)... at 1:85:1:85/+/97.65% +472 85nt, >M01687:476:000000000-LL5F5:1:1118:8517:16005_CONS(1)... at 1:85:1:85/+/97.65% +473 85nt, >M01687:476:000000000-LL5F5:1:1118:10903:18688_CONS(1)... at 1:85:1:85/+/97.65% +474 85nt, >M01687:476:000000000-LL5F5:1:1118:9231:18822_CONS(1)... at 1:85:1:85/+/97.65% +475 85nt, >M01687:476:000000000-LL5F5:1:1118:20589:23725_CONS(1)... at 1:85:1:85/+/97.65% +476 85nt, >M01687:476:000000000-LL5F5:1:1118:22232:24033_CONS(1)... at 1:85:1:85/+/97.65% +477 159nt, >M01687:476:000000000-LL5F5:1:1117:18384:2242_PairEnd(1)... at 1:159:1:163/+/98.74% +478 85nt, >M01687:476:000000000-LL5F5:1:1117:25188:3169_CONS(1)... at 1:85:1:85/+/97.65% +479 84nt, >M01687:476:000000000-LL5F5:1:1117:23991:4958_CONS(1)... at 1:84:1:85/+/98.81% +480 85nt, >M01687:476:000000000-LL5F5:1:1117:19659:6675_CONS(1)... at 1:85:1:85/+/97.65% +481 85nt, >M01687:476:000000000-LL5F5:1:1117:27776:10109_CONS(1)... at 1:85:1:85/+/97.65% +482 85nt, >M01687:476:000000000-LL5F5:1:1117:26360:11417_CONS(1)... at 1:85:1:85/+/97.65% +483 85nt, >M01687:476:000000000-LL5F5:1:1117:2992:12098_CONS(1)... at 1:85:1:85/+/97.65% +484 85nt, >M01687:476:000000000-LL5F5:1:1117:19098:12294_CONS(1)... at 1:85:1:85/+/97.65% +485 85nt, >M01687:476:000000000-LL5F5:1:1117:9800:13975_CONS(1)... at 1:85:1:85/+/97.65% +486 85nt, >M01687:476:000000000-LL5F5:1:1117:7405:14588_CONS(1)... at 1:85:1:85/+/97.65% +487 85nt, >M01687:476:000000000-LL5F5:1:1117:14642:18857_CONS(1)... at 1:85:1:85/+/97.65% +488 84nt, >M01687:476:000000000-LL5F5:1:1117:18069:22390_CONS(1)... at 1:84:1:85/+/98.81% +489 85nt, >M01687:476:000000000-LL5F5:1:1117:12357:23306_CONS(1)... at 1:85:1:85/+/97.65% +490 85nt, >M01687:476:000000000-LL5F5:1:2118:9851:6684_CONS(1)... at 1:85:1:85/+/97.65% +491 85nt, >M01687:476:000000000-LL5F5:1:2118:21967:9583_CONS(1)... at 1:85:1:85/+/97.65% +492 162nt, >M01687:476:000000000-LL5F5:1:2118:27389:11286_PairEnd(1)... at 1:162:1:163/+/99.38% +493 85nt, >M01687:476:000000000-LL5F5:1:2118:26325:13264_CONS(1)... at 1:85:1:85/+/97.65% +494 85nt, >M01687:476:000000000-LL5F5:1:2118:19875:13773_CONS(1)... at 1:85:1:85/+/97.65% +495 85nt, >M01687:476:000000000-LL5F5:1:2118:14295:21215_CONS(1)... at 1:85:1:85/+/97.65% +496 85nt, >M01687:476:000000000-LL5F5:1:2118:7592:22331_CONS(1)... at 1:85:1:85/+/97.65% +497 86nt, >M01687:476:000000000-LL5F5:1:2118:14877:22559_CONS(1)... at 1:86:1:85/+/97.67% +498 85nt, >M01687:476:000000000-LL5F5:1:2119:17244:4866_CONS(1)... at 1:85:1:85/+/97.65% +499 85nt, >M01687:476:000000000-LL5F5:1:2119:17609:6990_CONS(1)... at 1:85:1:85/+/97.65% +500 85nt, >M01687:476:000000000-LL5F5:1:2119:9083:13499_CONS(1)... at 1:85:1:85/+/97.65% +501 85nt, >M01687:476:000000000-LL5F5:1:2119:7592:15416_CONS(1)... at 1:85:1:85/+/97.65% +502 85nt, >M01687:476:000000000-LL5F5:1:2119:9060:21411_CONS(1)... at 1:85:1:85/+/97.65% +>Cluster 5 +0 98nt, >M01687:476:000000000-LL5F5:1:1102:16082:2155_CONS(1301)... at 1:98:1:98/+/100.00% +1 98nt, >M01687:476:000000000-LL5F5:1:1102:10487:2547_CONS(8)... at 1:98:1:98/+/98.98% +2 98nt, >M01687:476:000000000-LL5F5:1:1102:14307:2807_CONS(1)... at 1:98:1:98/+/98.98% +3 98nt, >M01687:476:000000000-LL5F5:1:1102:23829:2894_CONS(1)... at 1:98:1:98/+/98.98% +4 98nt, >M01687:476:000000000-LL5F5:1:1102:26502:7842_CONS(2)... at 1:98:1:98/+/98.98% +5 97nt, >M01687:476:000000000-LL5F5:1:1102:21481:9194_CONS(1)... at 1:97:1:98/+/98.97% +6 98nt, >M01687:476:000000000-LL5F5:1:1102:17649:9477_CONS(1)... at 1:98:1:98/+/98.98% +7 98nt, >M01687:476:000000000-LL5F5:1:1102:13544:13797_CONS(1)... at 1:98:1:98/+/98.98% +8 99nt, >M01687:476:000000000-LL5F5:1:1102:27803:14046_CONS(72)... at 1:99:1:98/+/98.99% +9 96nt, >M01687:476:000000000-LL5F5:1:1102:27751:14999_CONS(1)... at 1:96:1:98/+/100.00% +10 98nt, >M01687:476:000000000-LL5F5:1:1102:22482:17813_CONS(1)... at 1:98:1:98/+/98.98% +11 97nt, >M01687:476:000000000-LL5F5:1:1102:20853:20465_CONS(6)... at 1:97:1:98/+/100.00% +12 98nt, >M01687:476:000000000-LL5F5:1:1102:14557:24850_CONS(1)... at 1:98:1:98/+/98.98% +13 98nt, >M01687:476:000000000-LL5F5:1:1101:21712:6537_CONS(12)... at 1:98:1:98/+/98.98% +14 98nt, >M01687:476:000000000-LL5F5:1:1101:23963:6850_CONS(2)... at 1:98:1:98/+/98.98% +15 98nt, >M01687:476:000000000-LL5F5:1:1101:20692:11155_CONS(8)... at 1:98:1:98/+/98.98% +16 98nt, >M01687:476:000000000-LL5F5:1:1101:28463:12648_CONS(3)... at 1:98:1:98/+/98.98% +17 98nt, >M01687:476:000000000-LL5F5:1:1101:17681:13114_CONS(1)... at 1:98:1:98/+/98.98% +18 97nt, >M01687:476:000000000-LL5F5:1:1101:19106:15780_CONS(1)... at 1:97:2:98/+/97.94% +19 98nt, >M01687:476:000000000-LL5F5:1:1101:6704:18411_CONS(4)... at 1:98:1:98/+/98.98% +20 98nt, >M01687:476:000000000-LL5F5:1:2115:8967:10578_CONS(1)... at 1:98:1:98/+/98.98% +21 98nt, >M01687:476:000000000-LL5F5:1:2115:26216:12479_CONS(1)... at 1:98:1:98/+/98.98% +22 98nt, >M01687:476:000000000-LL5F5:1:2115:26788:18386_CONS(4)... at 1:98:1:98/+/98.98% +23 97nt, >M01687:476:000000000-LL5F5:1:2115:6119:20540_CONS(1)... at 1:97:1:98/+/98.97% +24 97nt, >M01687:476:000000000-LL5F5:1:2115:18376:20766_CONS(29)... at 1:97:1:98/+/100.00% +25 99nt, >M01687:476:000000000-LL5F5:1:2114:13976:2812_CONS(1)... at 1:99:1:98/+/97.98% +26 98nt, >M01687:476:000000000-LL5F5:1:2114:23300:3001_CONS(2)... at 1:98:1:98/+/98.98% +27 98nt, >M01687:476:000000000-LL5F5:1:2114:19945:12777_CONS(1)... at 1:98:1:98/+/98.98% +28 98nt, >M01687:476:000000000-LL5F5:1:2114:7291:13343_CONS(1)... at 1:98:1:98/+/98.98% +29 97nt, >M01687:476:000000000-LL5F5:1:2114:10062:13344_CONS(3)... at 1:97:1:98/+/100.00% +30 97nt, >M01687:476:000000000-LL5F5:1:2114:9355:13931_CONS(3)... at 1:97:1:98/+/98.97% +31 97nt, >M01687:476:000000000-LL5F5:1:2114:10828:14212_CONS(3)... at 1:97:1:98/+/100.00% +32 99nt, >M01687:476:000000000-LL5F5:1:2114:21194:16172_CONS(1)... at 1:99:1:98/+/97.98% +33 98nt, >M01687:476:000000000-LL5F5:1:2114:20575:24179_CONS(4)... at 1:98:1:98/+/98.98% +34 97nt, >M01687:476:000000000-LL5F5:1:2113:20569:1671_CONS(1)... at 1:97:1:98/+/100.00% +35 98nt, >M01687:476:000000000-LL5F5:1:2113:23102:2695_CONS(2)... at 1:98:1:98/+/98.98% +36 98nt, >M01687:476:000000000-LL5F5:1:2113:3513:8258_CONS(2)... at 1:98:1:98/+/98.98% +37 98nt, >M01687:476:000000000-LL5F5:1:2113:28989:10610_CONS(2)... at 1:98:1:98/+/98.98% +38 98nt, >M01687:476:000000000-LL5F5:1:2113:7642:16529_CONS(3)... at 1:98:1:98/+/98.98% +39 97nt, >M01687:476:000000000-LL5F5:1:2113:22196:17966_CONS(1)... at 1:97:1:98/+/98.97% +40 98nt, >M01687:476:000000000-LL5F5:1:2113:9713:19645_CONS(1)... at 1:98:1:98/+/98.98% +41 98nt, >M01687:476:000000000-LL5F5:1:2113:24206:24170_CONS(9)... at 1:98:1:98/+/98.98% +42 180nt, >M01687:476:000000000-LL5F5:1:2112:22959:10567_PairEnd(1)... * +43 98nt, >M01687:476:000000000-LL5F5:1:2112:18517:16324_CONS(6)... at 1:98:1:98/+/98.98% +44 98nt, >M01687:476:000000000-LL5F5:1:2112:21401:22366_CONS(1)... at 1:98:1:98/+/98.98% +45 100nt, >M01687:476:000000000-LL5F5:1:2111:16769:8915_CONS(1)... at 1:100:1:98/+/97.00% +46 97nt, >M01687:476:000000000-LL5F5:1:2111:18279:14877_CONS(2)... at 1:97:1:97/+/100.00% +47 98nt, >M01687:476:000000000-LL5F5:1:2111:28801:15746_CONS(5)... at 1:98:1:98/+/98.98% +48 98nt, >M01687:476:000000000-LL5F5:1:2110:8906:6711_CONS(2)... at 1:98:1:98/+/98.98% +49 98nt, >M01687:476:000000000-LL5F5:1:2110:25190:7287_CONS(2)... at 1:98:1:98/+/98.98% +50 98nt, >M01687:476:000000000-LL5F5:1:2110:25575:21982_CONS(1)... at 1:98:1:98/+/98.98% +51 98nt, >M01687:476:000000000-LL5F5:1:2110:16244:22792_CONS(1)... at 1:98:1:98/+/98.98% +52 98nt, >M01687:476:000000000-LL5F5:1:2110:15796:24997_CONS(1)... at 1:98:1:98/+/98.98% +53 99nt, >M01687:476:000000000-LL5F5:1:2109:14718:5879_CONS(1)... at 1:99:1:98/+/97.98% +54 98nt, >M01687:476:000000000-LL5F5:1:2109:13751:11793_CONS(3)... at 1:98:1:98/+/98.98% +55 98nt, >M01687:476:000000000-LL5F5:1:2109:7571:12079_CONS(1)... at 1:98:1:98/+/97.96% +56 98nt, >M01687:476:000000000-LL5F5:1:2109:17719:19408_CONS(1)... at 1:98:1:98/+/98.98% +57 97nt, >M01687:476:000000000-LL5F5:1:2108:23816:7426_CONS(1)... at 1:97:2:98/+/100.00% +58 98nt, >M01687:476:000000000-LL5F5:1:2108:18005:14852_CONS(1)... at 1:98:1:98/+/98.98% +59 98nt, >M01687:476:000000000-LL5F5:1:2106:24492:5169_CONS(1)... at 1:98:1:98/+/97.96% +60 97nt, >M01687:476:000000000-LL5F5:1:2106:6928:12438_CONS(1)... at 1:97:1:98/+/98.97% +61 98nt, >M01687:476:000000000-LL5F5:1:2106:9191:14481_CONS(1)... at 1:98:1:98/+/97.96% +62 98nt, >M01687:476:000000000-LL5F5:1:2106:14946:19480_CONS(2)... at 1:98:1:98/+/98.98% +63 98nt, >M01687:476:000000000-LL5F5:1:2106:10317:24107_CONS(2)... at 1:98:1:98/+/98.98% +64 98nt, >M01687:476:000000000-LL5F5:1:2107:21326:8085_CONS(1)... at 1:98:1:98/+/98.98% +65 27nt, >M01687:476:000000000-LL5F5:1:2107:25123:8680_CONS(1)... at 1:27:1:27/+/100.00% +66 98nt, >M01687:476:000000000-LL5F5:1:2107:15348:14284_CONS(1)... at 1:98:1:98/+/98.98% +67 98nt, >M01687:476:000000000-LL5F5:1:2107:24456:16527_CONS(1)... at 1:98:1:98/+/98.98% +68 100nt, >M01687:476:000000000-LL5F5:1:2107:4489:18309_CONS(4)... at 1:100:1:98/+/98.00% +69 98nt, >M01687:476:000000000-LL5F5:1:2107:10620:20489_CONS(2)... at 1:98:1:98/+/98.98% +70 95nt, >M01687:476:000000000-LL5F5:1:2104:5561:8799_CONS(1)... at 1:95:1:98/+/100.00% +71 98nt, >M01687:476:000000000-LL5F5:1:2104:16107:9178_CONS(1)... at 1:98:1:98/+/98.98% +72 98nt, >M01687:476:000000000-LL5F5:1:2104:17681:19859_CONS(2)... at 1:98:1:98/+/98.98% +73 98nt, >M01687:476:000000000-LL5F5:1:2104:13449:24249_CONS(1)... at 1:98:1:98/+/97.96% +74 98nt, >M01687:476:000000000-LL5F5:1:2105:7683:5656_CONS(3)... at 1:98:1:98/+/98.98% +75 98nt, >M01687:476:000000000-LL5F5:1:2105:5574:5845_CONS(2)... at 1:98:1:98/+/98.98% +76 98nt, >M01687:476:000000000-LL5F5:1:2105:4888:11161_CONS(6)... at 1:98:1:98/+/98.98% +77 98nt, >M01687:476:000000000-LL5F5:1:2105:21508:17841_CONS(1)... at 1:98:1:98/+/98.98% +78 98nt, >M01687:476:000000000-LL5F5:1:2102:25421:4380_CONS(1)... at 1:98:1:98/+/98.98% +79 99nt, >M01687:476:000000000-LL5F5:1:2102:21590:9867_CONS(1)... at 1:99:1:98/+/97.98% +80 96nt, >M01687:476:000000000-LL5F5:1:2102:12351:10001_CONS(1)... at 1:96:2:98/+/98.96% +81 98nt, >M01687:476:000000000-LL5F5:1:2102:9915:16125_CONS(1)... at 1:98:1:98/+/98.98% +82 98nt, >M01687:476:000000000-LL5F5:1:2102:27576:17366_CONS(2)... at 1:98:1:98/+/98.98% +83 98nt, >M01687:476:000000000-LL5F5:1:2102:13341:21494_CONS(3)... at 1:98:1:98/+/98.98% +84 98nt, >M01687:476:000000000-LL5F5:1:2103:18574:2716_CONS(1)... at 1:98:1:98/+/98.98% +85 98nt, >M01687:476:000000000-LL5F5:1:2103:7434:23369_CONS(1)... at 1:98:1:98/+/97.96% +86 97nt, >M01687:476:000000000-LL5F5:1:2116:3469:6500_CONS(1)... at 1:97:1:98/+/100.00% +87 98nt, >M01687:476:000000000-LL5F5:1:2116:11308:11030_CONS(2)... at 1:98:1:98/+/98.98% +88 98nt, >M01687:476:000000000-LL5F5:1:2116:3771:11356_CONS(2)... at 1:98:1:98/+/98.98% +89 48nt, >M01687:476:000000000-LL5F5:1:2116:12645:16591_CONS(1)... at 1:48:1:48/+/97.92% +90 97nt, >M01687:476:000000000-LL5F5:1:2116:8893:18669_CONS(1)... at 1:97:1:98/+/97.94% +91 98nt, >M01687:476:000000000-LL5F5:1:2116:5606:19327_CONS(1)... at 1:98:1:98/+/98.98% +92 98nt, >M01687:476:000000000-LL5F5:1:2116:24363:21541_CONS(1)... at 1:98:1:98/+/98.98% +93 99nt, >M01687:476:000000000-LL5F5:1:2117:8453:9674_CONS(1)... at 2:99:1:98/+/98.99% +94 97nt, >M01687:476:000000000-LL5F5:1:2117:2782:9815_CONS(1)... at 1:97:1:98/+/98.97% +95 98nt, >M01687:476:000000000-LL5F5:1:2117:5013:18468_CONS(1)... at 1:98:1:98/+/98.98% +96 100nt, >M01687:476:000000000-LL5F5:1:2117:19813:19488_CONS(1)... at 1:100:1:98/+/97.00% +97 98nt, >M01687:476:000000000-LL5F5:1:1119:7585:11806_CONS(1)... at 1:98:1:98/+/98.98% +98 98nt, >M01687:476:000000000-LL5F5:1:1119:24458:13382_CONS(3)... at 1:98:1:98/+/98.98% +99 98nt, >M01687:476:000000000-LL5F5:1:1119:3732:19888_CONS(1)... at 1:98:1:98/+/97.96% +100 98nt, >M01687:476:000000000-LL5F5:1:2101:22341:4526_CONS(1)... at 1:98:1:98/+/97.96% +101 98nt, >M01687:476:000000000-LL5F5:1:2101:14308:15028_CONS(1)... at 1:98:1:98/+/98.98% +102 97nt, >M01687:476:000000000-LL5F5:1:2101:19167:24673_CONS(1)... at 1:97:1:98/+/100.00% +103 98nt, >M01687:476:000000000-LL5F5:1:1115:11930:7303_CONS(2)... at 1:98:1:98/+/98.98% +104 98nt, >M01687:476:000000000-LL5F5:1:1115:19651:15616_CONS(1)... at 1:98:1:98/+/98.98% +105 98nt, >M01687:476:000000000-LL5F5:1:1114:24432:7906_CONS(1)... at 1:98:1:98/+/98.98% +106 97nt, >M01687:476:000000000-LL5F5:1:1114:3942:13140_CONS(1)... at 1:97:1:98/+/98.97% +107 98nt, >M01687:476:000000000-LL5F5:1:1114:4255:19985_CONS(1)... at 1:98:1:98/+/98.98% +108 97nt, >M01687:476:000000000-LL5F5:1:1113:27659:7539_CONS(1)... at 1:97:1:98/+/100.00% +109 98nt, >M01687:476:000000000-LL5F5:1:1113:20231:8725_CONS(1)... at 1:98:1:98/+/98.98% +110 97nt, >M01687:476:000000000-LL5F5:1:1112:22010:1570_CONS(1)... at 1:97:1:98/+/100.00% +111 99nt, >M01687:476:000000000-LL5F5:1:1112:26053:18070_CONS(1)... at 1:99:1:98/+/98.99% +112 98nt, >M01687:476:000000000-LL5F5:1:1111:8713:2290_CONS(1)... at 1:98:1:98/+/98.98% +113 98nt, >M01687:476:000000000-LL5F5:1:1111:2555:16666_CONS(1)... at 1:98:1:98/+/97.96% +114 98nt, >M01687:476:000000000-LL5F5:1:1111:18699:24191_CONS(1)... at 1:98:1:98/+/98.98% +115 98nt, >M01687:476:000000000-LL5F5:1:1110:18692:3333_CONS(1)... at 1:98:1:98/+/98.98% +116 97nt, >M01687:476:000000000-LL5F5:1:1110:19282:5631_CONS(1)... at 1:97:1:98/+/100.00% +117 98nt, >M01687:476:000000000-LL5F5:1:1110:10111:16134_CONS(1)... at 1:98:1:98/+/97.96% +118 98nt, >M01687:476:000000000-LL5F5:1:1109:12013:19858_CONS(1)... at 1:98:1:98/+/97.96% +119 98nt, >M01687:476:000000000-LL5F5:1:1109:25734:20714_CONS(1)... at 1:98:1:98/+/98.98% +120 99nt, >M01687:476:000000000-LL5F5:1:1107:14096:3159_CONS(1)... at 1:99:1:98/+/98.99% +121 98nt, >M01687:476:000000000-LL5F5:1:1107:3678:7350_CONS(1)... at 1:98:1:98/+/97.96% +122 97nt, >M01687:476:000000000-LL5F5:1:1107:13202:9724_CONS(2)... at 1:97:1:98/+/100.00% +123 98nt, >M01687:476:000000000-LL5F5:1:1107:9466:10015_CONS(1)... at 1:98:1:98/+/98.98% +124 177nt, >M01687:476:000000000-LL5F5:1:1107:22738:15358_PairEnd(1)... at 1:177:1:180/+/99.44% +125 98nt, >M01687:476:000000000-LL5F5:1:1107:16285:21238_CONS(1)... at 1:98:1:98/+/98.98% +126 98nt, >M01687:476:000000000-LL5F5:1:1107:14775:21253_CONS(1)... at 1:98:1:98/+/98.98% +127 98nt, >M01687:476:000000000-LL5F5:1:1106:21967:1566_CONS(1)... at 1:98:1:98/+/98.98% +128 98nt, >M01687:476:000000000-LL5F5:1:1105:17776:13570_CONS(1)... at 1:98:1:98/+/97.96% +129 98nt, >M01687:476:000000000-LL5F5:1:1105:12637:17009_CONS(1)... at 1:98:1:98/+/98.98% +130 98nt, >M01687:476:000000000-LL5F5:1:1105:11341:17115_CONS(1)... at 1:98:1:98/+/98.98% +131 97nt, >M01687:476:000000000-LL5F5:1:1104:5905:3525_CONS(1)... at 1:97:1:98/+/98.97% +132 98nt, >M01687:476:000000000-LL5F5:1:1104:29459:14548_CONS(1)... at 1:98:1:98/+/98.98% +133 101nt, >M01687:476:000000000-LL5F5:1:1103:9713:20863_CONS(1)... at 1:101:1:98/+/97.03% +134 97nt, >M01687:476:000000000-LL5F5:1:1103:19086:23948_CONS(1)... at 1:97:1:97/+/98.97% +135 98nt, >M01687:476:000000000-LL5F5:1:1118:23589:3199_CONS(1)... at 1:98:1:98/+/98.98% +136 98nt, >M01687:476:000000000-LL5F5:1:1118:17264:3200_CONS(1)... at 1:98:1:98/+/98.98% +137 98nt, >M01687:476:000000000-LL5F5:1:1118:11542:5703_CONS(1)... at 1:98:1:98/+/98.98% +138 97nt, >M01687:476:000000000-LL5F5:1:1117:26318:4197_CONS(1)... at 1:97:2:98/+/98.97% +139 98nt, >M01687:476:000000000-LL5F5:1:1117:25842:6484_CONS(1)... at 1:98:1:98/+/98.98% +140 98nt, >M01687:476:000000000-LL5F5:1:1117:19537:10844_CONS(1)... at 1:98:1:98/+/98.98% +141 98nt, >M01687:476:000000000-LL5F5:1:1117:5963:22718_CONS(1)... at 1:98:1:98/+/98.98% +142 98nt, >M01687:476:000000000-LL5F5:1:2118:6149:19275_CONS(2)... at 1:98:1:98/+/98.98% +143 98nt, >M01687:476:000000000-LL5F5:1:2118:4499:19841_CONS(1)... at 1:98:1:98/+/97.96% +144 97nt, >M01687:476:000000000-LL5F5:1:2118:6960:21100_CONS(1)... at 1:97:1:98/+/100.00% +145 97nt, >M01687:476:000000000-LL5F5:1:2118:25849:22069_CONS(1)... at 1:97:1:98/+/100.00% +146 55nt, >M01687:476:000000000-LL5F5:1:2119:4870:11817_CONS(1)... at 1:55:1:55/+/100.00% +147 98nt, >M01687:476:000000000-LL5F5:1:2119:25910:22451_CONS(1)... at 1:98:1:98/+/98.98% +>Cluster 6 +0 92nt, >M01687:476:000000000-LL5F5:1:1102:9874:1470_CONS(739)... at 1:92:1:92/+/100.00% +1 92nt, >M01687:476:000000000-LL5F5:1:1102:10963:2173_CONS(603)... at 1:92:1:92/+/98.91% +2 87nt, >M01687:476:000000000-LL5F5:1:1102:17868:2380_CONS(53)... at 1:87:1:92/+/98.85% +3 92nt, >M01687:476:000000000-LL5F5:1:1102:22618:2719_CONS(1)... at 1:92:1:92/+/98.91% +4 92nt, >M01687:476:000000000-LL5F5:1:1102:15381:4073_CONS(2)... at 1:92:1:92/+/98.91% +5 92nt, >M01687:476:000000000-LL5F5:1:1102:4810:5843_CONS(184)... at 1:92:1:92/+/97.83% +6 92nt, >M01687:476:000000000-LL5F5:1:1102:7872:11156_CONS(1)... at 1:92:1:92/+/98.91% +7 92nt, >M01687:476:000000000-LL5F5:1:1102:12604:13314_CONS(33)... at 1:92:1:92/+/97.83% +8 92nt, >M01687:476:000000000-LL5F5:1:1102:9449:24832_CONS(3)... at 1:92:1:92/+/98.91% +9 86nt, >M01687:476:000000000-LL5F5:1:1101:10902:4537_CONS(1)... at 1:86:2:92/+/98.84% +10 91nt, >M01687:476:000000000-LL5F5:1:1101:28996:9341_CONS(1)... at 1:91:1:92/+/100.00% +11 91nt, >M01687:476:000000000-LL5F5:1:1101:18333:12283_CONS(1)... at 1:91:1:92/+/100.00% +12 91nt, >M01687:476:000000000-LL5F5:1:1101:7804:14573_CONS(1)... at 1:91:1:92/+/97.80% +13 92nt, >M01687:476:000000000-LL5F5:1:1101:4577:16169_CONS(1)... at 1:92:1:92/+/97.83% +14 91nt, >M01687:476:000000000-LL5F5:1:1101:18371:19880_CONS(1)... at 1:91:1:92/+/98.90% +15 92nt, >M01687:476:000000000-LL5F5:1:1101:17523:22934_CONS(3)... at 1:92:1:92/+/98.91% +16 92nt, >M01687:476:000000000-LL5F5:1:2115:27605:10685_CONS(1)... at 1:92:1:92/+/98.91% +17 92nt, >M01687:476:000000000-LL5F5:1:2115:17082:11508_CONS(3)... at 1:92:1:92/+/98.91% +18 92nt, >M01687:476:000000000-LL5F5:1:2115:5659:16506_CONS(1)... at 1:92:1:92/+/97.83% +19 92nt, >M01687:476:000000000-LL5F5:1:2115:8340:16540_CONS(1)... at 1:92:1:92/+/97.83% +20 92nt, >M01687:476:000000000-LL5F5:1:2115:26372:17411_CONS(1)... at 1:92:1:92/+/98.91% +21 92nt, >M01687:476:000000000-LL5F5:1:2115:10428:18793_CONS(4)... at 1:92:1:92/+/98.91% +22 92nt, >M01687:476:000000000-LL5F5:1:2115:20861:18829_CONS(1)... at 1:92:1:92/+/97.83% +23 92nt, >M01687:476:000000000-LL5F5:1:2115:20543:19157_CONS(1)... at 1:92:1:92/+/98.91% +24 92nt, >M01687:476:000000000-LL5F5:1:2115:13369:23469_CONS(1)... at 1:92:1:92/+/98.91% +25 92nt, >M01687:476:000000000-LL5F5:1:2115:11002:24893_CONS(3)... at 1:92:1:92/+/97.83% +26 92nt, >M01687:476:000000000-LL5F5:1:2114:12617:2294_CONS(1)... at 1:92:1:92/+/98.91% +27 92nt, >M01687:476:000000000-LL5F5:1:2114:12611:2313_CONS(1)... at 1:92:1:92/+/98.91% +28 92nt, >M01687:476:000000000-LL5F5:1:2114:7223:5431_CONS(25)... at 1:92:1:92/+/98.91% +29 92nt, >M01687:476:000000000-LL5F5:1:2114:24168:8291_CONS(1)... at 1:92:1:92/+/97.83% +30 92nt, >M01687:476:000000000-LL5F5:1:2114:21395:12702_CONS(4)... at 1:92:1:92/+/97.83% +31 92nt, >M01687:476:000000000-LL5F5:1:2114:28307:13856_CONS(1)... at 1:92:1:92/+/98.91% +32 92nt, >M01687:476:000000000-LL5F5:1:2114:22073:19507_CONS(1)... at 1:92:1:92/+/97.83% +33 92nt, >M01687:476:000000000-LL5F5:1:2114:13127:21351_CONS(1)... at 1:92:1:92/+/97.83% +34 92nt, >M01687:476:000000000-LL5F5:1:2113:13246:6663_CONS(2)... at 1:92:1:92/+/98.91% +35 92nt, >M01687:476:000000000-LL5F5:1:2113:23665:11144_CONS(1)... at 1:92:1:92/+/98.91% +36 92nt, >M01687:476:000000000-LL5F5:1:2113:27078:16666_CONS(5)... at 1:92:1:92/+/98.91% +37 92nt, >M01687:476:000000000-LL5F5:1:2113:14118:16687_CONS(2)... at 1:92:1:92/+/97.83% +38 92nt, >M01687:476:000000000-LL5F5:1:2113:14303:21119_CONS(1)... at 1:92:1:92/+/98.91% +39 92nt, >M01687:476:000000000-LL5F5:1:2112:8841:4023_CONS(2)... at 1:92:1:92/+/98.91% +40 92nt, >M01687:476:000000000-LL5F5:1:2112:10322:5693_CONS(2)... at 1:92:1:92/+/98.91% +41 92nt, >M01687:476:000000000-LL5F5:1:2112:5294:10454_CONS(2)... at 1:92:1:92/+/98.91% +42 92nt, >M01687:476:000000000-LL5F5:1:2112:14882:10552_CONS(1)... at 1:92:1:92/+/97.83% +43 92nt, >M01687:476:000000000-LL5F5:1:2112:10960:10967_CONS(1)... at 1:92:1:92/+/98.91% +44 91nt, >M01687:476:000000000-LL5F5:1:2112:9503:15513_CONS(1)... at 1:91:1:91/+/97.80% +45 92nt, >M01687:476:000000000-LL5F5:1:2112:5688:19520_CONS(1)... at 1:92:1:92/+/98.91% +46 91nt, >M01687:476:000000000-LL5F5:1:2112:19796:23916_CONS(2)... at 1:91:1:92/+/97.80% +47 92nt, >M01687:476:000000000-LL5F5:1:2111:11235:1277_CONS(1)... at 1:92:1:92/+/97.83% +48 92nt, >M01687:476:000000000-LL5F5:1:2111:14983:8627_CONS(2)... at 1:92:1:92/+/98.91% +49 92nt, >M01687:476:000000000-LL5F5:1:2111:13148:8875_CONS(2)... at 1:92:1:92/+/98.91% +50 91nt, >M01687:476:000000000-LL5F5:1:2111:3116:14305_CONS(2)... at 1:91:1:92/+/100.00% +51 91nt, >M01687:476:000000000-LL5F5:1:2111:19421:14943_CONS(1)... at 1:91:1:92/+/98.90% +52 92nt, >M01687:476:000000000-LL5F5:1:2111:7195:18579_CONS(3)... at 1:92:1:92/+/97.83% +53 92nt, >M01687:476:000000000-LL5F5:1:2111:6811:19993_CONS(2)... at 1:92:1:92/+/98.91% +54 92nt, >M01687:476:000000000-LL5F5:1:2111:5470:22334_CONS(1)... at 1:92:1:92/+/98.91% +55 92nt, >M01687:476:000000000-LL5F5:1:2111:14155:24950_CONS(1)... at 1:92:1:92/+/97.83% +56 92nt, >M01687:476:000000000-LL5F5:1:2110:21144:12870_CONS(1)... at 1:92:1:92/+/97.83% +57 92nt, >M01687:476:000000000-LL5F5:1:2110:23244:23205_CONS(1)... at 1:92:1:92/+/97.83% +58 92nt, >M01687:476:000000000-LL5F5:1:2109:15362:4072_CONS(2)... at 1:92:1:92/+/98.91% +59 92nt, >M01687:476:000000000-LL5F5:1:2108:20727:15704_CONS(1)... at 1:92:1:92/+/97.83% +60 91nt, >M01687:476:000000000-LL5F5:1:2106:20028:11636_CONS(1)... at 1:91:1:92/+/100.00% +61 92nt, >M01687:476:000000000-LL5F5:1:2106:1929:15051_CONS(1)... at 1:92:1:92/+/97.83% +62 92nt, >M01687:476:000000000-LL5F5:1:2106:13240:20450_CONS(1)... at 1:92:1:92/+/97.83% +63 91nt, >M01687:476:000000000-LL5F5:1:2107:6663:6510_CONS(1)... at 1:91:1:92/+/100.00% +64 92nt, >M01687:476:000000000-LL5F5:1:2107:9364:10709_CONS(3)... at 1:92:1:92/+/97.83% +65 92nt, >M01687:476:000000000-LL5F5:1:2107:26707:14897_CONS(2)... at 1:92:1:92/+/98.91% +66 92nt, >M01687:476:000000000-LL5F5:1:2107:8892:15671_CONS(1)... at 1:92:1:92/+/98.91% +67 92nt, >M01687:476:000000000-LL5F5:1:2107:4397:17033_CONS(1)... at 1:92:1:92/+/98.91% +68 92nt, >M01687:476:000000000-LL5F5:1:2104:24045:3962_CONS(1)... at 1:92:1:92/+/97.83% +69 91nt, >M01687:476:000000000-LL5F5:1:2104:22021:8435_CONS(2)... at 1:91:2:92/+/100.00% +70 92nt, >M01687:476:000000000-LL5F5:1:2104:22741:11932_CONS(1)... at 1:92:1:92/+/97.83% +71 92nt, >M01687:476:000000000-LL5F5:1:2104:28897:12706_CONS(1)... at 1:92:1:92/+/97.83% +72 92nt, >M01687:476:000000000-LL5F5:1:2104:8370:21058_CONS(1)... at 1:92:1:92/+/98.91% +73 92nt, >M01687:476:000000000-LL5F5:1:2104:21110:22871_CONS(1)... at 1:92:1:92/+/98.91% +74 91nt, >M01687:476:000000000-LL5F5:1:2105:4502:10157_CONS(3)... at 1:91:1:91/+/98.90% +75 92nt, >M01687:476:000000000-LL5F5:1:2105:20631:11008_CONS(3)... at 1:92:1:92/+/98.91% +76 91nt, >M01687:476:000000000-LL5F5:1:2105:16771:22062_CONS(1)... at 1:91:1:92/+/98.90% +77 92nt, >M01687:476:000000000-LL5F5:1:2105:11112:23551_CONS(2)... at 1:92:1:92/+/98.91% +78 92nt, >M01687:476:000000000-LL5F5:1:2102:21838:6156_CONS(1)... at 1:92:1:92/+/97.83% +79 93nt, >M01687:476:000000000-LL5F5:1:2102:10111:11945_CONS(1)... at 1:93:1:92/+/97.85% +80 92nt, >M01687:476:000000000-LL5F5:1:2102:25914:14784_CONS(1)... at 1:92:1:92/+/98.91% +81 92nt, >M01687:476:000000000-LL5F5:1:2102:22003:14959_CONS(1)... at 1:92:1:92/+/98.91% +82 92nt, >M01687:476:000000000-LL5F5:1:2102:7989:19788_CONS(2)... at 1:92:1:92/+/97.83% +83 87nt, >M01687:476:000000000-LL5F5:1:2116:16039:5165_CONS(1)... at 1:87:1:92/+/97.70% +84 92nt, >M01687:476:000000000-LL5F5:1:2116:14758:22018_CONS(1)... at 1:92:1:92/+/97.83% +85 92nt, >M01687:476:000000000-LL5F5:1:2116:20746:24103_CONS(1)... at 1:92:1:92/+/98.91% +86 92nt, >M01687:476:000000000-LL5F5:1:2117:12313:1963_CONS(1)... at 1:92:1:92/+/98.91% +87 91nt, >M01687:476:000000000-LL5F5:1:2117:5108:4117_CONS(2)... at 1:91:2:92/+/97.80% +88 92nt, >M01687:476:000000000-LL5F5:1:2117:13359:7990_CONS(2)... at 1:92:1:92/+/98.91% +89 92nt, >M01687:476:000000000-LL5F5:1:2117:27804:10915_CONS(2)... at 1:92:1:92/+/98.91% +90 92nt, >M01687:476:000000000-LL5F5:1:2117:15048:18231_CONS(1)... at 1:92:1:92/+/98.91% +91 92nt, >M01687:476:000000000-LL5F5:1:1119:5386:7228_CONS(2)... at 1:92:1:92/+/97.83% +92 92nt, >M01687:476:000000000-LL5F5:1:1119:8155:7311_CONS(2)... at 1:92:1:92/+/97.83% +93 92nt, >M01687:476:000000000-LL5F5:1:1119:27007:17181_CONS(1)... at 1:92:1:92/+/97.83% +94 92nt, >M01687:476:000000000-LL5F5:1:2101:6168:13589_CONS(1)... at 1:92:1:92/+/98.91% +95 92nt, >M01687:476:000000000-LL5F5:1:2101:14357:14936_CONS(1)... at 1:92:1:92/+/98.91% +96 92nt, >M01687:476:000000000-LL5F5:1:2101:11666:18883_CONS(1)... at 1:92:1:92/+/97.83% +97 91nt, >M01687:476:000000000-LL5F5:1:2101:8278:23581_CONS(1)... at 1:91:1:92/+/100.00% +98 92nt, >M01687:476:000000000-LL5F5:1:1115:21657:3486_CONS(1)... at 1:92:1:92/+/97.83% +99 92nt, >M01687:476:000000000-LL5F5:1:1115:22174:15254_CONS(1)... at 1:92:1:92/+/97.83% +100 91nt, >M01687:476:000000000-LL5F5:1:1116:7276:2224_CONS(1)... at 1:91:1:91/+/100.00% +101 92nt, >M01687:476:000000000-LL5F5:1:1116:10057:4309_CONS(1)... at 1:92:1:92/+/97.83% +102 92nt, >M01687:476:000000000-LL5F5:1:1116:22953:13045_CONS(1)... at 1:92:1:92/+/98.91% +103 92nt, >M01687:476:000000000-LL5F5:1:1116:6462:20838_CONS(1)... at 1:92:1:92/+/97.83% +104 92nt, >M01687:476:000000000-LL5F5:1:1114:19874:2414_CONS(2)... at 1:92:1:92/+/97.83% +105 92nt, >M01687:476:000000000-LL5F5:1:1114:24138:4948_CONS(1)... at 1:92:1:92/+/97.83% +106 92nt, >M01687:476:000000000-LL5F5:1:1114:19012:13282_CONS(1)... at 1:92:1:92/+/98.91% +107 92nt, >M01687:476:000000000-LL5F5:1:1114:23761:13899_CONS(1)... at 1:92:1:92/+/98.91% +108 92nt, >M01687:476:000000000-LL5F5:1:1113:14017:8576_CONS(4)... at 1:92:1:92/+/98.91% +109 87nt, >M01687:476:000000000-LL5F5:1:1113:19345:16167_CONS(1)... at 1:87:1:92/+/97.70% +110 91nt, >M01687:476:000000000-LL5F5:1:1112:22112:4443_CONS(2)... at 1:91:1:92/+/100.00% +111 92nt, >M01687:476:000000000-LL5F5:1:1112:19608:11484_CONS(1)... at 1:92:1:92/+/98.91% +112 92nt, >M01687:476:000000000-LL5F5:1:1111:7068:2664_CONS(1)... at 1:92:1:92/+/98.91% +113 92nt, >M01687:476:000000000-LL5F5:1:1111:17548:2754_CONS(1)... at 1:92:1:92/+/98.91% +114 28nt, >M01687:476:000000000-LL5F5:1:1111:20196:6006_CONS(1)... at 1:28:1:28/+/100.00% +115 92nt, >M01687:476:000000000-LL5F5:1:1111:6188:7544_CONS(1)... at 1:92:1:92/+/97.83% +116 92nt, >M01687:476:000000000-LL5F5:1:1111:3138:10920_CONS(1)... at 1:92:1:92/+/97.83% +117 91nt, >M01687:476:000000000-LL5F5:1:1111:14152:19015_CONS(1)... at 1:91:1:92/+/98.90% +118 91nt, >M01687:476:000000000-LL5F5:1:1111:15056:19276_CONS(1)... at 1:91:1:92/+/98.90% +119 91nt, >M01687:476:000000000-LL5F5:1:1111:9671:23172_CONS(1)... at 1:91:1:92/+/100.00% +120 91nt, >M01687:476:000000000-LL5F5:1:1110:4597:8405_CONS(1)... at 1:91:1:92/+/100.00% +121 91nt, >M01687:476:000000000-LL5F5:1:1110:14980:10808_CONS(1)... at 1:91:1:92/+/98.90% +122 86nt, >M01687:476:000000000-LL5F5:1:1110:10270:12980_CONS(1)... at 1:86:1:92/+/98.84% +123 92nt, >M01687:476:000000000-LL5F5:1:1110:6185:14552_CONS(1)... at 1:92:1:92/+/97.83% +124 92nt, >M01687:476:000000000-LL5F5:1:1110:28049:16267_CONS(1)... at 1:92:1:92/+/98.91% +125 92nt, >M01687:476:000000000-LL5F5:1:1110:12639:17488_CONS(1)... at 1:92:1:92/+/98.91% +126 92nt, >M01687:476:000000000-LL5F5:1:1110:27200:18453_CONS(1)... at 1:92:1:92/+/97.83% +127 92nt, >M01687:476:000000000-LL5F5:1:1110:19691:22015_CONS(1)... at 1:92:1:92/+/98.91% +128 92nt, >M01687:476:000000000-LL5F5:1:1110:9460:24961_CONS(1)... at 1:92:1:92/+/97.83% +129 92nt, >M01687:476:000000000-LL5F5:1:1109:21760:1707_CONS(1)... at 1:92:1:92/+/97.83% +130 87nt, >M01687:476:000000000-LL5F5:1:1109:11119:9015_CONS(1)... at 1:87:1:92/+/97.70% +131 92nt, >M01687:476:000000000-LL5F5:1:1109:21992:13166_CONS(1)... at 1:92:1:92/+/98.91% +132 91nt, >M01687:476:000000000-LL5F5:1:1109:21460:19982_CONS(1)... at 1:91:1:92/+/100.00% +133 92nt, >M01687:476:000000000-LL5F5:1:1109:19966:22042_CONS(1)... at 1:92:1:92/+/97.83% +134 92nt, >M01687:476:000000000-LL5F5:1:1108:10315:4877_CONS(1)... at 1:92:1:92/+/98.91% +135 92nt, >M01687:476:000000000-LL5F5:1:1108:8999:7522_CONS(1)... at 1:92:1:92/+/97.83% +136 92nt, >M01687:476:000000000-LL5F5:1:1108:4043:9209_CONS(1)... at 1:92:1:92/+/98.91% +137 92nt, >M01687:476:000000000-LL5F5:1:1108:21724:16885_CONS(1)... at 1:92:1:92/+/97.83% +138 92nt, >M01687:476:000000000-LL5F5:1:1108:11070:17213_CONS(1)... at 1:92:1:92/+/98.91% +139 92nt, >M01687:476:000000000-LL5F5:1:1107:4642:16313_CONS(1)... at 1:92:1:92/+/98.91% +140 92nt, >M01687:476:000000000-LL5F5:1:1107:15365:17595_CONS(1)... at 1:92:1:92/+/97.83% +141 91nt, >M01687:476:000000000-LL5F5:1:1107:27814:18054_CONS(1)... at 1:91:1:92/+/98.90% +142 91nt, >M01687:476:000000000-LL5F5:1:1107:24088:22470_CONS(1)... at 1:91:1:92/+/97.80% +143 92nt, >M01687:476:000000000-LL5F5:1:1106:17730:6358_CONS(1)... at 1:92:1:92/+/97.83% +144 90nt, >M01687:476:000000000-LL5F5:1:1105:20441:6669_CONS(1)... at 1:90:1:91/+/98.89% +145 92nt, >M01687:476:000000000-LL5F5:1:1105:6278:8299_CONS(1)... at 1:92:1:92/+/97.83% +146 92nt, >M01687:476:000000000-LL5F5:1:1105:18788:10931_CONS(1)... at 1:92:1:92/+/98.91% +147 92nt, >M01687:476:000000000-LL5F5:1:1105:24920:19346_CONS(1)... at 1:92:1:92/+/97.83% +148 92nt, >M01687:476:000000000-LL5F5:1:1105:5215:21495_CONS(1)... at 1:92:1:92/+/98.91% +149 92nt, >M01687:476:000000000-LL5F5:1:1104:27076:8905_CONS(1)... at 1:92:1:92/+/98.91% +150 92nt, >M01687:476:000000000-LL5F5:1:1104:8151:9540_CONS(2)... at 1:92:1:92/+/97.83% +151 92nt, >M01687:476:000000000-LL5F5:1:1104:27392:11919_CONS(1)... at 1:92:1:92/+/97.83% +152 91nt, >M01687:476:000000000-LL5F5:1:1104:2780:14055_CONS(1)... at 1:91:1:92/+/98.90% +153 92nt, >M01687:476:000000000-LL5F5:1:1103:17089:1478_CONS(1)... at 1:92:1:92/+/97.83% +154 92nt, >M01687:476:000000000-LL5F5:1:1103:12835:11562_CONS(1)... at 1:92:1:92/+/98.91% +155 91nt, >M01687:476:000000000-LL5F5:1:1118:12123:1776_CONS(1)... at 1:91:1:92/+/100.00% +156 92nt, >M01687:476:000000000-LL5F5:1:1118:28598:7814_CONS(1)... at 1:92:1:92/+/98.91% +157 87nt, >M01687:476:000000000-LL5F5:1:1118:23870:7930_CONS(1)... at 1:87:1:92/+/97.70% +158 92nt, >M01687:476:000000000-LL5F5:1:1118:12682:13196_CONS(1)... at 1:92:1:92/+/98.91% +159 92nt, >M01687:476:000000000-LL5F5:1:1118:25949:13627_CONS(1)... at 1:92:1:92/+/98.91% +160 90nt, >M01687:476:000000000-LL5F5:1:1118:3951:15166_CONS(1)... at 1:90:1:92/+/98.89% +161 92nt, >M01687:476:000000000-LL5F5:1:1118:13327:16727_CONS(1)... at 1:92:1:92/+/97.83% +162 93nt, >M01687:476:000000000-LL5F5:1:1118:24764:18122_CONS(1)... at 1:93:1:92/+/98.92% +163 91nt, >M01687:476:000000000-LL5F5:1:1118:4853:18496_CONS(1)... at 1:91:1:92/+/98.90% +164 91nt, >M01687:476:000000000-LL5F5:1:1117:17060:4415_CONS(2)... at 1:91:1:92/+/100.00% +165 92nt, >M01687:476:000000000-LL5F5:1:1117:23126:5078_CONS(1)... at 1:92:1:92/+/97.83% +166 173nt, >M01687:476:000000000-LL5F5:1:1117:24390:12162_PairEnd(1)... * +167 92nt, >M01687:476:000000000-LL5F5:1:2118:16896:14149_CONS(1)... at 1:92:1:92/+/98.91% +168 91nt, >M01687:476:000000000-LL5F5:1:2119:9997:9813_CONS(1)... at 1:91:1:92/+/97.80% +169 87nt, >M01687:476:000000000-LL5F5:1:2119:9896:14567_CONS(1)... at 1:87:1:92/+/97.70% +170 92nt, >M01687:476:000000000-LL5F5:1:2119:20034:20192_CONS(1)... at 1:92:1:92/+/98.91% +171 92nt, >M01687:476:000000000-LL5F5:1:2119:5668:20994_CONS(1)... at 1:92:1:92/+/98.91% +172 91nt, >M01687:476:000000000-LL5F5:1:2119:23503:22677_CONS(1)... at 1:91:1:92/+/98.90% +173 92nt, >M01687:476:000000000-LL5F5:1:2119:16376:24723_CONS(1)... at 1:92:1:92/+/98.91% +>Cluster 7 +0 78nt, >M01687:476:000000000-LL5F5:1:1102:21080:1614_CONS(337)... at 1:78:1:78/+/100.00% +1 78nt, >M01687:476:000000000-LL5F5:1:1102:18356:2841_CONS(1)... at 1:78:1:78/+/98.72% +2 77nt, >M01687:476:000000000-LL5F5:1:1102:18089:11385_CONS(1)... at 1:77:1:78/+/100.00% +3 78nt, >M01687:476:000000000-LL5F5:1:1102:27918:12344_CONS(1)... at 1:78:1:78/+/98.72% +4 78nt, >M01687:476:000000000-LL5F5:1:1101:2231:10438_CONS(1)... at 1:78:1:78/+/97.44% +5 29nt, >M01687:476:000000000-LL5F5:1:2115:6462:3510_CONS(1)... at 1:29:1:29/+/100.00% +6 78nt, >M01687:476:000000000-LL5F5:1:2115:7272:12209_CONS(1)... at 1:78:1:78/+/98.72% +7 77nt, >M01687:476:000000000-LL5F5:1:2114:15346:6693_CONS(1)... at 1:77:1:78/+/100.00% +8 78nt, >M01687:476:000000000-LL5F5:1:2114:15962:9283_CONS(1)... at 1:78:1:78/+/98.72% +9 77nt, >M01687:476:000000000-LL5F5:1:2114:23690:16323_CONS(1)... at 1:77:1:78/+/100.00% +10 42nt, >M01687:476:000000000-LL5F5:1:2114:10070:24944_CONS(1)... at 1:42:1:42/+/97.62% +11 78nt, >M01687:476:000000000-LL5F5:1:2113:16726:20403_CONS(13)... at 1:78:1:78/+/98.72% +12 77nt, >M01687:476:000000000-LL5F5:1:2112:6977:6644_CONS(2)... at 1:77:1:78/+/100.00% +13 78nt, >M01687:476:000000000-LL5F5:1:2111:24125:19840_CONS(1)... at 1:78:1:78/+/98.72% +14 78nt, >M01687:476:000000000-LL5F5:1:2108:15957:14998_CONS(1)... at 1:78:1:78/+/98.72% +15 77nt, >M01687:476:000000000-LL5F5:1:2107:11829:7070_CONS(1)... at 1:77:1:78/+/100.00% +16 78nt, >M01687:476:000000000-LL5F5:1:2107:23153:10907_CONS(2)... at 1:78:1:78/+/98.72% +17 78nt, >M01687:476:000000000-LL5F5:1:2107:7086:16488_CONS(1)... at 1:78:1:78/+/97.44% +18 77nt, >M01687:476:000000000-LL5F5:1:2104:27389:17643_CONS(1)... at 1:77:1:78/+/100.00% +19 78nt, >M01687:476:000000000-LL5F5:1:2102:20631:6319_CONS(1)... at 1:78:1:78/+/98.72% +20 78nt, >M01687:476:000000000-LL5F5:1:2116:15579:14103_CONS(1)... at 1:78:1:78/+/98.72% +21 78nt, >M01687:476:000000000-LL5F5:1:1119:23194:9423_CONS(1)... at 1:78:1:78/+/98.72% +22 78nt, >M01687:476:000000000-LL5F5:1:1119:17836:12227_CONS(1)... at 1:78:1:78/+/98.72% +23 77nt, >M01687:476:000000000-LL5F5:1:1119:12816:23072_CONS(3)... at 1:77:1:78/+/100.00% +24 78nt, >M01687:476:000000000-LL5F5:1:1115:18229:6472_CONS(1)... at 1:78:1:78/+/98.72% +25 78nt, >M01687:476:000000000-LL5F5:1:1115:16336:11806_CONS(1)... at 1:78:1:78/+/98.72% +26 78nt, >M01687:476:000000000-LL5F5:1:1113:25385:6504_CONS(1)... at 1:78:1:78/+/98.72% +27 77nt, >M01687:476:000000000-LL5F5:1:1112:22183:4795_CONS(1)... at 1:77:1:78/+/100.00% +28 77nt, >M01687:476:000000000-LL5F5:1:1111:11895:5680_CONS(1)... at 1:77:1:77/+/100.00% +29 78nt, >M01687:476:000000000-LL5F5:1:1111:17744:16092_CONS(1)... at 1:78:1:78/+/98.72% +30 170nt, >M01687:476:000000000-LL5F5:1:1110:20834:12098_PairEnd(1)... * +31 78nt, >M01687:476:000000000-LL5F5:1:1107:10569:1919_CONS(1)... at 1:78:1:78/+/98.72% +32 78nt, >M01687:476:000000000-LL5F5:1:1106:3942:14980_CONS(1)... at 1:78:1:78/+/98.72% +33 78nt, >M01687:476:000000000-LL5F5:1:1105:7236:3428_CONS(1)... at 1:78:1:78/+/97.44% +34 79nt, >M01687:476:000000000-LL5F5:1:1105:17764:20926_CONS(1)... at 1:79:1:78/+/98.73% +35 78nt, >M01687:476:000000000-LL5F5:1:1104:19091:8547_CONS(1)... at 1:78:1:78/+/98.72% +36 78nt, >M01687:476:000000000-LL5F5:1:1104:7567:20408_CONS(1)... at 1:78:1:78/+/97.44% +37 76nt, >M01687:476:000000000-LL5F5:1:1103:16244:10124_CONS(1)... at 1:76:1:78/+/100.00% +38 78nt, >M01687:476:000000000-LL5F5:1:1118:7157:18371_CONS(1)... at 1:78:1:78/+/98.72% +>Cluster 8 +0 85nt, >M01687:476:000000000-LL5F5:1:1102:8559:2087_CONS(1)... at 1:85:1:89/+/97.65% +1 89nt, >M01687:476:000000000-LL5F5:1:1102:6963:2501_CONS(1050)... at 1:89:1:89/+/100.00% +2 85nt, >M01687:476:000000000-LL5F5:1:1102:23431:3644_CONS(539)... at 1:85:1:89/+/97.65% +3 89nt, >M01687:476:000000000-LL5F5:1:1102:18468:6009_CONS(12)... at 1:89:1:89/+/98.88% +4 89nt, >M01687:476:000000000-LL5F5:1:1102:9714:7241_CONS(132)... at 1:89:1:89/+/98.88% +5 85nt, >M01687:476:000000000-LL5F5:1:1102:13707:8294_CONS(112)... at 1:85:1:89/+/100.00% +6 88nt, >M01687:476:000000000-LL5F5:1:1102:2914:13207_CONS(6)... at 1:88:1:89/+/100.00% +7 88nt, >M01687:476:000000000-LL5F5:1:1102:4682:17513_CONS(1)... at 1:88:1:89/+/100.00% +8 89nt, >M01687:476:000000000-LL5F5:1:1101:26241:4707_CONS(1)... at 1:89:1:89/+/98.88% +9 85nt, >M01687:476:000000000-LL5F5:1:1101:8846:6178_CONS(1)... at 1:85:1:85/+/98.82% +10 89nt, >M01687:476:000000000-LL5F5:1:1101:5047:8080_CONS(12)... at 1:89:1:89/+/97.75% +11 84nt, >M01687:476:000000000-LL5F5:1:1101:27988:8667_CONS(1)... at 1:84:2:89/+/97.62% +12 85nt, >M01687:476:000000000-LL5F5:1:1101:21420:9665_CONS(22)... at 1:85:1:89/+/98.82% +13 89nt, >M01687:476:000000000-LL5F5:1:1101:12231:14068_CONS(14)... at 1:89:1:89/+/97.75% +14 89nt, >M01687:476:000000000-LL5F5:1:1101:28348:17146_CONS(1)... at 1:89:1:89/+/98.88% +15 89nt, >M01687:476:000000000-LL5F5:1:1101:10562:19349_CONS(20)... at 1:89:1:89/+/97.75% +16 88nt, >M01687:476:000000000-LL5F5:1:1101:14490:19940_CONS(14)... at 1:88:1:89/+/98.86% +17 89nt, >M01687:476:000000000-LL5F5:1:2115:9926:5135_CONS(21)... at 1:89:1:89/+/97.75% +18 89nt, >M01687:476:000000000-LL5F5:1:2115:6505:5604_CONS(2)... at 1:89:1:89/+/97.75% +19 88nt, >M01687:476:000000000-LL5F5:1:2115:26229:9904_CONS(1)... at 1:88:1:89/+/100.00% +20 89nt, >M01687:476:000000000-LL5F5:1:2115:13746:15589_CONS(1)... at 1:89:1:89/+/97.75% +21 89nt, >M01687:476:000000000-LL5F5:1:2115:12566:16127_CONS(5)... at 1:89:1:89/+/98.88% +22 88nt, >M01687:476:000000000-LL5F5:1:2114:13936:2228_CONS(1)... at 1:88:1:89/+/98.86% +23 89nt, >M01687:476:000000000-LL5F5:1:2114:20770:2573_CONS(2)... at 1:89:1:89/+/98.88% +24 89nt, >M01687:476:000000000-LL5F5:1:2114:12115:3083_CONS(1)... at 1:89:1:89/+/97.75% +25 89nt, >M01687:476:000000000-LL5F5:1:2114:14302:3121_CONS(4)... at 1:89:1:89/+/98.88% +26 85nt, >M01687:476:000000000-LL5F5:1:2114:9469:5896_CONS(1)... at 1:85:1:89/+/98.82% +27 89nt, >M01687:476:000000000-LL5F5:1:2114:14661:7365_CONS(2)... at 1:89:1:89/+/98.88% +28 88nt, >M01687:476:000000000-LL5F5:1:2114:13047:15316_CONS(1)... at 1:88:2:89/+/98.86% +29 89nt, >M01687:476:000000000-LL5F5:1:2114:25191:15774_CONS(1)... at 1:89:1:89/+/98.88% +30 89nt, >M01687:476:000000000-LL5F5:1:2114:12248:16422_CONS(1)... at 1:89:1:89/+/98.88% +31 87nt, >M01687:476:000000000-LL5F5:1:2114:28305:18189_CONS(1)... at 1:87:1:89/+/100.00% +32 89nt, >M01687:476:000000000-LL5F5:1:2114:16916:19383_CONS(3)... at 1:89:1:89/+/98.88% +33 89nt, >M01687:476:000000000-LL5F5:1:2114:17825:20994_CONS(2)... at 1:89:1:89/+/98.88% +34 89nt, >M01687:476:000000000-LL5F5:1:2113:24167:4354_CONS(2)... at 1:89:1:89/+/98.88% +35 89nt, >M01687:476:000000000-LL5F5:1:2113:6306:5286_CONS(1)... at 1:89:1:89/+/97.75% +36 85nt, >M01687:476:000000000-LL5F5:1:2113:21331:7017_CONS(7)... at 1:85:1:89/+/98.82% +37 85nt, >M01687:476:000000000-LL5F5:1:2113:26994:7787_CONS(1)... at 1:85:1:89/+/98.82% +38 89nt, >M01687:476:000000000-LL5F5:1:2113:14075:8631_CONS(1)... at 1:89:1:88/+/97.75% +39 88nt, >M01687:476:000000000-LL5F5:1:2113:19813:9351_CONS(1)... at 1:88:1:89/+/97.73% +40 89nt, >M01687:476:000000000-LL5F5:1:2113:11288:9662_CONS(1)... at 1:89:1:89/+/98.88% +41 84nt, >M01687:476:000000000-LL5F5:1:2113:6684:10836_CONS(4)... at 1:84:1:89/+/97.62% +42 88nt, >M01687:476:000000000-LL5F5:1:2112:24883:3256_CONS(1)... at 1:88:1:89/+/100.00% +43 89nt, >M01687:476:000000000-LL5F5:1:2112:15715:7981_CONS(1)... at 1:89:1:89/+/98.88% +44 89nt, >M01687:476:000000000-LL5F5:1:2112:5496:10072_CONS(1)... at 1:89:1:89/+/98.88% +45 84nt, >M01687:476:000000000-LL5F5:1:2112:14187:19293_CONS(1)... at 1:84:1:89/+/98.81% +46 89nt, >M01687:476:000000000-LL5F5:1:2111:9532:10523_CONS(8)... at 1:89:1:89/+/97.75% +47 90nt, >M01687:476:000000000-LL5F5:1:2111:13431:14102_CONS(2)... at 1:90:1:89/+/98.89% +48 89nt, >M01687:476:000000000-LL5F5:1:2111:5250:21786_CONS(1)... at 1:89:1:89/+/98.88% +49 85nt, >M01687:476:000000000-LL5F5:1:2110:19035:1371_CONS(1)... at 1:85:1:89/+/98.82% +50 89nt, >M01687:476:000000000-LL5F5:1:2110:10794:12640_CONS(3)... at 1:89:1:89/+/98.88% +51 89nt, >M01687:476:000000000-LL5F5:1:2110:7289:13004_CONS(1)... at 1:89:1:89/+/98.88% +52 89nt, >M01687:476:000000000-LL5F5:1:2110:22005:14217_CONS(1)... at 1:89:1:89/+/97.75% +53 90nt, >M01687:476:000000000-LL5F5:1:2110:3086:18887_CONS(1)... at 1:90:1:89/+/98.89% +54 89nt, >M01687:476:000000000-LL5F5:1:2110:22934:22713_CONS(2)... at 1:89:1:89/+/98.88% +55 89nt, >M01687:476:000000000-LL5F5:1:2109:15667:16454_CONS(3)... at 1:89:1:89/+/98.88% +56 89nt, >M01687:476:000000000-LL5F5:1:2109:17720:18894_CONS(1)... at 1:89:1:89/+/98.88% +57 89nt, >M01687:476:000000000-LL5F5:1:2109:7444:19375_CONS(1)... at 1:89:1:89/+/97.75% +58 85nt, >M01687:476:000000000-LL5F5:1:2108:16930:11725_CONS(1)... at 1:85:1:89/+/98.82% +59 43nt, >M01687:476:000000000-LL5F5:1:2108:7073:16613_CONS(1)... at 1:43:1:43/+/100.00% +60 89nt, >M01687:476:000000000-LL5F5:1:2108:22119:20701_CONS(3)... at 1:89:1:89/+/98.88% +61 85nt, >M01687:476:000000000-LL5F5:1:2106:8960:2786_CONS(1)... at 1:85:1:89/+/98.82% +62 88nt, >M01687:476:000000000-LL5F5:1:2106:6090:8037_CONS(2)... at 1:88:1:88/+/100.00% +63 89nt, >M01687:476:000000000-LL5F5:1:2107:23870:10524_CONS(1)... at 1:89:1:89/+/98.88% +64 88nt, >M01687:476:000000000-LL5F5:1:2107:19774:13196_CONS(1)... at 1:88:1:88/+/97.73% +65 45nt, >M01687:476:000000000-LL5F5:1:2107:2620:13999_CONS(1)... at 1:45:1:45/+/97.78% +66 89nt, >M01687:476:000000000-LL5F5:1:2107:11285:19131_CONS(2)... at 1:89:1:89/+/98.88% +67 89nt, >M01687:476:000000000-LL5F5:1:2107:24528:20633_CONS(1)... at 1:89:1:89/+/98.88% +68 89nt, >M01687:476:000000000-LL5F5:1:2104:27417:8802_CONS(2)... at 1:89:1:89/+/98.88% +69 89nt, >M01687:476:000000000-LL5F5:1:2104:17037:16957_CONS(1)... at 1:89:1:89/+/98.88% +70 89nt, >M01687:476:000000000-LL5F5:1:2104:14737:17429_CONS(1)... at 1:89:1:89/+/98.88% +71 89nt, >M01687:476:000000000-LL5F5:1:2104:19997:23334_CONS(1)... at 1:89:1:89/+/98.88% +72 89nt, >M01687:476:000000000-LL5F5:1:2104:21508:23870_CONS(2)... at 1:89:1:89/+/98.88% +73 89nt, >M01687:476:000000000-LL5F5:1:2104:11179:24763_CONS(2)... at 1:89:1:89/+/98.88% +74 88nt, >M01687:476:000000000-LL5F5:1:2105:22690:10034_CONS(4)... at 1:88:1:89/+/100.00% +75 89nt, >M01687:476:000000000-LL5F5:1:2105:22310:21009_CONS(2)... at 1:89:1:89/+/98.88% +76 84nt, >M01687:476:000000000-LL5F5:1:2102:16648:1130_CONS(1)... at 1:84:1:89/+/97.62% +77 89nt, >M01687:476:000000000-LL5F5:1:2102:8574:4145_CONS(1)... at 1:89:1:89/+/97.75% +78 88nt, >M01687:476:000000000-LL5F5:1:2102:5360:10843_CONS(1)... at 1:88:1:89/+/97.73% +79 89nt, >M01687:476:000000000-LL5F5:1:2102:4827:17748_CONS(2)... at 1:89:1:89/+/98.88% +80 89nt, >M01687:476:000000000-LL5F5:1:2103:15541:7819_CONS(1)... at 1:89:1:89/+/98.88% +81 89nt, >M01687:476:000000000-LL5F5:1:2103:4895:16209_CONS(1)... at 1:89:1:89/+/98.88% +82 88nt, >M01687:476:000000000-LL5F5:1:2103:15915:20314_CONS(1)... at 1:88:1:89/+/97.73% +83 85nt, >M01687:476:000000000-LL5F5:1:2116:11985:1397_CONS(1)... at 1:85:1:89/+/97.65% +84 89nt, >M01687:476:000000000-LL5F5:1:2116:16116:3221_CONS(2)... at 1:89:1:89/+/98.88% +85 88nt, >M01687:476:000000000-LL5F5:1:2116:13686:9171_CONS(1)... at 1:88:1:89/+/100.00% +86 85nt, >M01687:476:000000000-LL5F5:1:2116:3426:10700_CONS(1)... at 1:85:1:89/+/98.82% +87 89nt, >M01687:476:000000000-LL5F5:1:2116:20870:14470_CONS(2)... at 1:89:1:89/+/98.88% +88 88nt, >M01687:476:000000000-LL5F5:1:2116:18420:14510_CONS(2)... at 1:88:1:89/+/100.00% +89 89nt, >M01687:476:000000000-LL5F5:1:2116:9492:21110_CONS(1)... at 1:89:1:89/+/98.88% +90 89nt, >M01687:476:000000000-LL5F5:1:2117:23640:3210_CONS(1)... at 1:89:1:89/+/98.88% +91 89nt, >M01687:476:000000000-LL5F5:1:2117:11074:3377_CONS(1)... at 1:89:1:89/+/98.88% +92 88nt, >M01687:476:000000000-LL5F5:1:2117:27001:8010_CONS(1)... at 1:88:1:89/+/100.00% +93 85nt, >M01687:476:000000000-LL5F5:1:2117:22705:11056_CONS(1)... at 1:85:1:89/+/98.82% +94 89nt, >M01687:476:000000000-LL5F5:1:2117:13576:13618_CONS(1)... at 1:89:1:89/+/98.88% +95 89nt, >M01687:476:000000000-LL5F5:1:2117:12991:18107_CONS(2)... at 1:89:1:89/+/98.88% +96 84nt, >M01687:476:000000000-LL5F5:1:1119:20671:2292_CONS(1)... at 1:84:1:88/+/97.62% +97 40nt, >M01687:476:000000000-LL5F5:1:1119:14351:6120_CONS(1)... at 1:40:1:40/+/100.00% +98 89nt, >M01687:476:000000000-LL5F5:1:1119:2375:11702_CONS(1)... at 1:89:1:89/+/98.88% +99 85nt, >M01687:476:000000000-LL5F5:1:1119:19466:13463_CONS(1)... at 1:85:1:89/+/98.82% +100 89nt, >M01687:476:000000000-LL5F5:1:1119:24258:13507_CONS(1)... at 1:89:1:89/+/98.88% +101 85nt, >M01687:476:000000000-LL5F5:1:1119:10832:17303_CONS(1)... at 1:85:1:89/+/97.65% +102 89nt, >M01687:476:000000000-LL5F5:1:1119:20625:20114_CONS(2)... at 1:89:1:89/+/98.88% +103 85nt, >M01687:476:000000000-LL5F5:1:1119:7559:23295_CONS(1)... at 1:85:1:89/+/97.65% +104 89nt, >M01687:476:000000000-LL5F5:1:2101:19706:5787_CONS(1)... at 1:89:1:89/+/98.88% +105 89nt, >M01687:476:000000000-LL5F5:1:2101:24303:7846_CONS(1)... at 1:89:1:89/+/98.88% +106 88nt, >M01687:476:000000000-LL5F5:1:2101:19395:9536_CONS(1)... at 1:88:1:89/+/97.73% +107 89nt, >M01687:476:000000000-LL5F5:1:2101:4013:10773_CONS(2)... at 1:89:1:89/+/98.88% +108 88nt, >M01687:476:000000000-LL5F5:1:2101:7213:12330_CONS(1)... at 1:88:1:89/+/100.00% +109 89nt, >M01687:476:000000000-LL5F5:1:2101:18568:12734_CONS(1)... at 1:89:1:89/+/98.88% +110 88nt, >M01687:476:000000000-LL5F5:1:2101:29674:14332_CONS(1)... at 1:88:1:89/+/98.86% +111 88nt, >M01687:476:000000000-LL5F5:1:2101:8049:16523_CONS(1)... at 1:88:1:89/+/98.86% +112 89nt, >M01687:476:000000000-LL5F5:1:1115:23361:4717_CONS(1)... at 1:89:1:89/+/98.88% +113 89nt, >M01687:476:000000000-LL5F5:1:1115:8070:9401_CONS(1)... at 1:89:1:89/+/98.88% +114 89nt, >M01687:476:000000000-LL5F5:1:1115:15389:16411_CONS(1)... at 1:89:1:89/+/98.88% +115 85nt, >M01687:476:000000000-LL5F5:1:1115:21327:17591_CONS(1)... at 1:85:1:89/+/97.65% +116 85nt, >M01687:476:000000000-LL5F5:1:1115:8179:18848_CONS(1)... at 1:85:1:89/+/97.65% +117 89nt, >M01687:476:000000000-LL5F5:1:1115:24179:23726_CONS(1)... at 1:89:1:89/+/98.88% +118 89nt, >M01687:476:000000000-LL5F5:1:1116:17964:1393_CONS(1)... at 1:89:1:89/+/98.88% +119 89nt, >M01687:476:000000000-LL5F5:1:1116:18655:2940_CONS(1)... at 1:89:1:89/+/98.88% +120 89nt, >M01687:476:000000000-LL5F5:1:1116:9720:17404_CONS(1)... at 1:89:1:89/+/98.88% +121 85nt, >M01687:476:000000000-LL5F5:1:1114:19480:13249_CONS(1)... at 1:85:1:89/+/98.82% +122 89nt, >M01687:476:000000000-LL5F5:1:1113:7196:4029_CONS(1)... at 1:89:1:89/+/98.88% +123 89nt, >M01687:476:000000000-LL5F5:1:1113:21363:7492_CONS(3)... at 1:89:1:89/+/98.88% +124 88nt, >M01687:476:000000000-LL5F5:1:1113:25122:17800_CONS(1)... at 1:88:1:89/+/98.86% +125 89nt, >M01687:476:000000000-LL5F5:1:1112:21850:4903_CONS(1)... at 1:89:1:89/+/98.88% +126 85nt, >M01687:476:000000000-LL5F5:1:1112:10271:20229_CONS(1)... at 1:85:1:89/+/98.82% +127 88nt, >M01687:476:000000000-LL5F5:1:1111:6065:14175_CONS(1)... at 1:88:1:89/+/100.00% +128 89nt, >M01687:476:000000000-LL5F5:1:1111:17781:17066_CONS(1)... at 1:89:1:89/+/98.88% +129 89nt, >M01687:476:000000000-LL5F5:1:1110:23631:18555_CONS(1)... at 1:89:1:89/+/98.88% +130 89nt, >M01687:476:000000000-LL5F5:1:1109:23006:3065_CONS(2)... at 1:89:1:89/+/98.88% +131 89nt, >M01687:476:000000000-LL5F5:1:1109:12142:3564_CONS(1)... at 1:89:1:89/+/98.88% +132 84nt, >M01687:476:000000000-LL5F5:1:1109:3062:11063_CONS(1)... at 1:84:1:89/+/97.62% +133 89nt, >M01687:476:000000000-LL5F5:1:1109:16940:17321_CONS(1)... at 1:89:1:89/+/98.88% +134 88nt, >M01687:476:000000000-LL5F5:1:1108:17158:12403_CONS(1)... at 1:88:1:88/+/98.86% +135 89nt, >M01687:476:000000000-LL5F5:1:1108:14837:13381_CONS(1)... at 1:89:1:89/+/98.88% +136 89nt, >M01687:476:000000000-LL5F5:1:1108:23432:15944_CONS(1)... at 1:89:1:89/+/98.88% +137 89nt, >M01687:476:000000000-LL5F5:1:1107:7324:2129_CONS(2)... at 1:89:1:89/+/98.88% +138 89nt, >M01687:476:000000000-LL5F5:1:1107:25069:6531_CONS(1)... at 1:89:1:89/+/98.88% +139 88nt, >M01687:476:000000000-LL5F5:1:1107:22498:13875_CONS(1)... at 1:88:1:89/+/100.00% +140 89nt, >M01687:476:000000000-LL5F5:1:1107:11761:13905_CONS(2)... at 1:89:1:89/+/98.88% +141 84nt, >M01687:476:000000000-LL5F5:1:1107:23080:22951_CONS(1)... at 1:84:1:89/+/100.00% +142 89nt, >M01687:476:000000000-LL5F5:1:1106:28052:14441_CONS(1)... at 1:89:1:89/+/98.88% +143 89nt, >M01687:476:000000000-LL5F5:1:1106:13708:18934_CONS(1)... at 1:89:1:89/+/98.88% +144 89nt, >M01687:476:000000000-LL5F5:1:1106:20716:23934_CONS(1)... at 1:89:1:89/+/98.88% +145 89nt, >M01687:476:000000000-LL5F5:1:1105:8867:3084_CONS(1)... at 1:89:1:89/+/98.88% +146 88nt, >M01687:476:000000000-LL5F5:1:1105:23316:14656_CONS(1)... at 1:88:1:89/+/97.73% +147 89nt, >M01687:476:000000000-LL5F5:1:1105:7910:21601_CONS(1)... at 1:89:1:89/+/97.75% +148 89nt, >M01687:476:000000000-LL5F5:1:1104:6102:10717_CONS(1)... at 1:89:1:89/+/97.75% +149 89nt, >M01687:476:000000000-LL5F5:1:1103:5183:9469_CONS(1)... at 1:89:1:89/+/97.75% +150 89nt, >M01687:476:000000000-LL5F5:1:1103:16902:18132_CONS(1)... at 1:89:1:89/+/98.88% +151 85nt, >M01687:476:000000000-LL5F5:1:1103:8512:20203_CONS(1)... at 1:85:1:89/+/98.82% +152 88nt, >M01687:476:000000000-LL5F5:1:1103:19672:23454_CONS(1)... at 1:88:2:89/+/98.86% +153 89nt, >M01687:476:000000000-LL5F5:1:1118:9159:2203_CONS(1)... at 1:89:1:89/+/97.75% +154 166nt, >M01687:476:000000000-LL5F5:1:1118:6443:13862_PairEnd(1)... * +155 88nt, >M01687:476:000000000-LL5F5:1:1118:20178:21595_CONS(1)... at 1:88:1:89/+/100.00% +156 88nt, >M01687:476:000000000-LL5F5:1:1117:15473:15181_CONS(1)... at 1:88:1:89/+/100.00% +157 89nt, >M01687:476:000000000-LL5F5:1:2118:15258:6790_CONS(1)... at 1:89:1:89/+/98.88% +158 85nt, >M01687:476:000000000-LL5F5:1:2118:5125:21339_CONS(1)... at 1:85:1:89/+/97.65% +159 89nt, >M01687:476:000000000-LL5F5:1:2119:25591:8193_CONS(1)... at 1:89:1:89/+/98.88% +160 84nt, >M01687:476:000000000-LL5F5:1:2119:4868:12735_CONS(1)... at 1:84:1:89/+/97.62% +161 84nt, >M01687:476:000000000-LL5F5:1:2119:9528:22917_CONS(1)... at 1:84:1:89/+/97.62% +>Cluster 9 +0 79nt, >M01687:476:000000000-LL5F5:1:1102:12124:2505_CONS(3251)... at 1:79:1:79/+/100.00% +1 78nt, >M01687:476:000000000-LL5F5:1:1102:8804:3027_CONS(2)... at 1:78:1:79/+/100.00% +2 78nt, >M01687:476:000000000-LL5F5:1:1102:7710:3810_CONS(3)... at 1:78:1:79/+/100.00% +3 78nt, >M01687:476:000000000-LL5F5:1:1102:21801:4105_CONS(4)... at 1:78:1:79/+/100.00% +4 78nt, >M01687:476:000000000-LL5F5:1:1102:8040:4803_CONS(40)... at 1:78:1:79/+/100.00% +5 79nt, >M01687:476:000000000-LL5F5:1:1102:7935:5283_CONS(638)... at 1:79:1:79/+/98.73% +6 79nt, >M01687:476:000000000-LL5F5:1:1102:7917:7026_CONS(1)... at 1:79:1:79/+/98.73% +7 79nt, >M01687:476:000000000-LL5F5:1:1102:21657:7747_CONS(4)... at 1:79:1:79/+/98.73% +8 79nt, >M01687:476:000000000-LL5F5:1:1102:18665:10108_CONS(1)... at 1:79:1:79/+/97.47% +9 79nt, >M01687:476:000000000-LL5F5:1:1102:11530:10914_CONS(3)... at 1:79:1:79/+/97.47% +10 79nt, >M01687:476:000000000-LL5F5:1:1102:25474:11311_CONS(13)... at 1:79:1:79/+/98.73% +11 79nt, >M01687:476:000000000-LL5F5:1:1102:22454:11425_CONS(1)... at 1:79:1:79/+/97.47% +12 79nt, >M01687:476:000000000-LL5F5:1:1102:29426:11564_CONS(1)... at 1:79:1:79/+/98.73% +13 79nt, >M01687:476:000000000-LL5F5:1:1102:22149:13365_CONS(2)... at 1:79:1:79/+/98.73% +14 78nt, >M01687:476:000000000-LL5F5:1:1102:4475:15697_CONS(1)... at 1:78:1:79/+/98.72% +15 78nt, >M01687:476:000000000-LL5F5:1:1102:14690:17628_CONS(56)... at 1:78:1:79/+/98.72% +16 79nt, >M01687:476:000000000-LL5F5:1:1102:16790:18943_CONS(1)... at 1:79:1:79/+/97.47% +17 79nt, >M01687:476:000000000-LL5F5:1:1102:10729:20323_CONS(5)... at 1:79:1:79/+/98.73% +18 79nt, >M01687:476:000000000-LL5F5:1:1101:20727:1686_CONS(3)... at 1:79:1:79/+/98.73% +19 78nt, >M01687:476:000000000-LL5F5:1:1101:9222:3433_CONS(2)... at 1:78:1:79/+/100.00% +20 79nt, >M01687:476:000000000-LL5F5:1:1101:19646:3577_CONS(1)... at 1:79:1:79/+/97.47% +21 79nt, >M01687:476:000000000-LL5F5:1:1101:11828:5173_CONS(7)... at 1:79:1:79/+/98.73% +22 80nt, >M01687:476:000000000-LL5F5:1:1101:9630:5878_CONS(10)... at 1:80:1:79/+/98.75% +23 79nt, >M01687:476:000000000-LL5F5:1:1101:17089:6779_CONS(1)... at 1:79:1:79/+/97.47% +24 79nt, >M01687:476:000000000-LL5F5:1:1101:26629:7386_CONS(1)... at 1:79:1:79/+/98.73% +25 79nt, >M01687:476:000000000-LL5F5:1:1101:14940:8106_CONS(3)... at 1:79:1:79/+/98.73% +26 80nt, >M01687:476:000000000-LL5F5:1:1101:3060:9564_CONS(1)... at 1:80:1:79/+/97.50% +27 79nt, >M01687:476:000000000-LL5F5:1:1101:28573:12610_CONS(22)... at 1:79:1:79/+/97.47% +28 78nt, >M01687:476:000000000-LL5F5:1:1101:13186:14391_CONS(4)... at 1:78:2:79/+/98.72% +29 79nt, >M01687:476:000000000-LL5F5:1:1101:28766:16691_CONS(2)... at 1:79:1:79/+/98.73% +30 78nt, >M01687:476:000000000-LL5F5:1:1101:21714:17084_CONS(2)... at 1:78:1:79/+/100.00% +31 77nt, >M01687:476:000000000-LL5F5:1:1101:22067:18458_CONS(1)... at 1:77:1:79/+/98.70% +32 79nt, >M01687:476:000000000-LL5F5:1:1101:20812:20475_CONS(14)... at 1:79:1:79/+/97.47% +33 79nt, >M01687:476:000000000-LL5F5:1:1101:4130:20668_CONS(5)... at 1:79:1:79/+/98.73% +34 78nt, >M01687:476:000000000-LL5F5:1:1101:8251:23517_CONS(1)... at 1:78:1:79/+/98.72% +35 79nt, >M01687:476:000000000-LL5F5:1:2115:16330:2509_CONS(6)... at 1:79:1:79/+/98.73% +36 78nt, >M01687:476:000000000-LL5F5:1:2115:25555:9798_CONS(1)... at 1:78:1:79/+/100.00% +37 79nt, >M01687:476:000000000-LL5F5:1:2115:8729:10462_CONS(2)... at 1:79:1:79/+/98.73% +38 79nt, >M01687:476:000000000-LL5F5:1:2115:19958:11105_CONS(1)... at 1:79:1:79/+/98.73% +39 78nt, >M01687:476:000000000-LL5F5:1:2115:28897:14177_CONS(6)... at 1:78:1:78/+/100.00% +40 79nt, >M01687:476:000000000-LL5F5:1:2115:17227:14326_CONS(1)... at 1:79:1:79/+/97.47% +41 79nt, >M01687:476:000000000-LL5F5:1:2115:15071:14340_CONS(1)... at 1:79:1:79/+/98.73% +42 79nt, >M01687:476:000000000-LL5F5:1:2115:26253:14964_CONS(2)... at 1:79:1:79/+/98.73% +43 79nt, >M01687:476:000000000-LL5F5:1:2115:4083:16226_CONS(3)... at 1:79:1:79/+/98.73% +44 79nt, >M01687:476:000000000-LL5F5:1:2115:4457:16360_CONS(1)... at 1:79:1:79/+/98.73% +45 79nt, >M01687:476:000000000-LL5F5:1:2115:25064:17487_CONS(2)... at 1:79:1:79/+/98.73% +46 79nt, >M01687:476:000000000-LL5F5:1:2115:23224:18543_CONS(7)... at 1:79:1:79/+/98.73% +47 79nt, >M01687:476:000000000-LL5F5:1:2115:23917:19571_CONS(3)... at 1:79:1:79/+/98.73% +48 79nt, >M01687:476:000000000-LL5F5:1:2115:8581:22324_CONS(1)... at 1:79:1:79/+/97.47% +49 79nt, >M01687:476:000000000-LL5F5:1:2114:16829:6241_CONS(6)... at 1:79:1:79/+/98.73% +50 80nt, >M01687:476:000000000-LL5F5:1:2114:20457:9317_CONS(1)... at 1:80:1:79/+/98.75% +51 79nt, >M01687:476:000000000-LL5F5:1:2114:20501:12573_CONS(1)... at 1:79:1:79/+/98.73% +52 79nt, >M01687:476:000000000-LL5F5:1:2114:4338:14362_CONS(3)... at 1:79:1:79/+/98.73% +53 79nt, >M01687:476:000000000-LL5F5:1:2114:24333:14635_CONS(4)... at 1:79:1:79/+/98.73% +54 79nt, >M01687:476:000000000-LL5F5:1:2114:17208:14666_CONS(1)... at 1:79:1:79/+/98.73% +55 80nt, >M01687:476:000000000-LL5F5:1:2114:19707:14713_CONS(1)... at 2:80:1:79/+/98.75% +56 79nt, >M01687:476:000000000-LL5F5:1:2114:21860:20834_CONS(2)... at 1:79:1:79/+/98.73% +57 79nt, >M01687:476:000000000-LL5F5:1:2114:25607:22629_CONS(2)... at 1:79:1:79/+/98.73% +58 79nt, >M01687:476:000000000-LL5F5:1:2114:19229:23015_CONS(3)... at 1:79:1:79/+/97.47% +59 79nt, >M01687:476:000000000-LL5F5:1:2113:15369:12666_CONS(2)... at 1:79:1:79/+/98.73% +60 79nt, >M01687:476:000000000-LL5F5:1:2113:10273:13096_CONS(4)... at 1:79:1:79/+/98.73% +61 79nt, >M01687:476:000000000-LL5F5:1:2113:7799:15365_CONS(5)... at 1:79:1:79/+/98.73% +62 79nt, >M01687:476:000000000-LL5F5:1:2113:14308:15658_CONS(4)... at 1:79:1:79/+/98.73% +63 79nt, >M01687:476:000000000-LL5F5:1:2113:20310:22423_CONS(1)... at 1:79:1:79/+/97.47% +64 79nt, >M01687:476:000000000-LL5F5:1:2113:13146:22676_CONS(6)... at 1:79:1:79/+/98.73% +65 79nt, >M01687:476:000000000-LL5F5:1:2113:15814:22702_CONS(1)... at 1:79:1:79/+/98.73% +66 79nt, >M01687:476:000000000-LL5F5:1:2113:13414:24071_CONS(2)... at 1:79:1:79/+/98.73% +67 79nt, >M01687:476:000000000-LL5F5:1:2112:6350:2939_CONS(2)... at 1:79:1:79/+/98.73% +68 79nt, >M01687:476:000000000-LL5F5:1:2112:23864:2946_CONS(2)... at 1:79:1:79/+/98.73% +69 79nt, >M01687:476:000000000-LL5F5:1:2112:14653:8736_CONS(1)... at 1:79:1:79/+/98.73% +70 79nt, >M01687:476:000000000-LL5F5:1:2112:5319:10366_CONS(2)... at 1:79:1:79/+/97.47% +71 79nt, >M01687:476:000000000-LL5F5:1:2112:2448:10375_CONS(3)... at 1:79:1:79/+/98.73% +72 78nt, >M01687:476:000000000-LL5F5:1:2112:4326:13391_CONS(1)... at 1:78:1:79/+/98.72% +73 78nt, >M01687:476:000000000-LL5F5:1:2112:5577:16843_CONS(6)... at 1:78:2:79/+/100.00% +74 79nt, >M01687:476:000000000-LL5F5:1:2112:4832:18077_CONS(7)... at 1:79:1:79/+/98.73% +75 78nt, >M01687:476:000000000-LL5F5:1:2112:26493:18850_CONS(3)... at 1:78:1:79/+/98.72% +76 79nt, >M01687:476:000000000-LL5F5:1:2111:19419:4546_CONS(1)... at 1:79:1:79/+/98.73% +77 79nt, >M01687:476:000000000-LL5F5:1:2111:24879:5385_CONS(4)... at 1:79:1:79/+/98.73% +78 79nt, >M01687:476:000000000-LL5F5:1:2111:17141:5822_CONS(1)... at 1:79:1:79/+/98.73% +79 79nt, >M01687:476:000000000-LL5F5:1:2111:26503:9316_CONS(3)... at 1:79:1:79/+/98.73% +80 79nt, >M01687:476:000000000-LL5F5:1:2111:11233:10298_CONS(1)... at 1:79:1:79/+/98.73% +81 79nt, >M01687:476:000000000-LL5F5:1:2111:4824:12572_CONS(4)... at 1:79:1:79/+/98.73% +82 77nt, >M01687:476:000000000-LL5F5:1:2111:17794:13727_CONS(1)... at 1:77:1:77/+/98.70% +83 79nt, >M01687:476:000000000-LL5F5:1:2111:13548:14723_CONS(1)... at 1:79:1:79/+/98.73% +84 79nt, >M01687:476:000000000-LL5F5:1:2111:10285:19515_CONS(2)... at 1:79:1:79/+/98.73% +85 77nt, >M01687:476:000000000-LL5F5:1:2111:14669:19678_CONS(1)... at 1:77:1:79/+/100.00% +86 79nt, >M01687:476:000000000-LL5F5:1:2111:19475:20399_CONS(1)... at 1:79:1:79/+/98.73% +87 79nt, >M01687:476:000000000-LL5F5:1:2111:12313:24079_CONS(1)... at 1:79:1:79/+/98.73% +88 164nt, >M01687:476:000000000-LL5F5:1:2110:7016:3648_CONS(1)... at 1:164:1:165/+/99.39% +89 79nt, >M01687:476:000000000-LL5F5:1:2110:23198:5655_CONS(3)... at 1:79:1:79/+/98.73% +90 79nt, >M01687:476:000000000-LL5F5:1:2110:19459:8366_CONS(1)... at 1:79:1:79/+/98.73% +91 79nt, >M01687:476:000000000-LL5F5:1:2110:9505:9731_CONS(3)... at 1:79:1:79/+/98.73% +92 78nt, >M01687:476:000000000-LL5F5:1:2110:5270:9888_CONS(1)... at 1:78:1:79/+/100.00% +93 79nt, >M01687:476:000000000-LL5F5:1:2110:3285:15396_CONS(1)... at 1:79:1:79/+/97.47% +94 78nt, >M01687:476:000000000-LL5F5:1:2110:7374:16980_CONS(3)... at 1:78:1:79/+/100.00% +95 79nt, >M01687:476:000000000-LL5F5:1:2110:19034:22758_CONS(3)... at 1:79:1:79/+/98.73% +96 31nt, >M01687:476:000000000-LL5F5:1:2110:15564:22782_CONS(1)... at 1:31:1:31/+/100.00% +97 79nt, >M01687:476:000000000-LL5F5:1:2109:13327:4101_CONS(2)... at 1:79:1:79/+/98.73% +98 78nt, >M01687:476:000000000-LL5F5:1:2109:24086:4654_CONS(3)... at 1:78:1:79/+/100.00% +99 79nt, >M01687:476:000000000-LL5F5:1:2109:16442:5043_CONS(1)... at 1:79:1:79/+/97.47% +100 45nt, >M01687:476:000000000-LL5F5:1:2109:12589:6667_CONS(1)... at 1:45:1:45/+/97.78% +101 79nt, >M01687:476:000000000-LL5F5:1:2109:8389:9611_CONS(1)... at 1:79:1:79/+/98.73% +102 40nt, >M01687:476:000000000-LL5F5:1:2109:29320:13630_CONS(1)... at 1:40:1:40/+/97.50% +103 79nt, >M01687:476:000000000-LL5F5:1:2109:3650:13647_CONS(2)... at 1:79:1:79/+/97.47% +104 165nt, >M01687:476:000000000-LL5F5:1:2109:18829:13652_CONS(1)... * +105 79nt, >M01687:476:000000000-LL5F5:1:2109:4165:16154_CONS(1)... at 1:79:1:79/+/98.73% +106 43nt, >M01687:476:000000000-LL5F5:1:2109:4708:16878_CONS(2)... at 1:43:1:43/+/100.00% +107 78nt, >M01687:476:000000000-LL5F5:1:2108:11169:10205_CONS(1)... at 1:78:2:79/+/98.72% +108 79nt, >M01687:476:000000000-LL5F5:1:2108:3522:16071_CONS(1)... at 1:79:1:79/+/98.73% +109 79nt, >M01687:476:000000000-LL5F5:1:2108:2327:16464_CONS(1)... at 1:79:1:79/+/98.73% +110 78nt, >M01687:476:000000000-LL5F5:1:2108:12071:16468_CONS(2)... at 1:78:1:79/+/100.00% +111 79nt, >M01687:476:000000000-LL5F5:1:2108:8101:17121_CONS(1)... at 1:79:1:79/+/97.47% +112 79nt, >M01687:476:000000000-LL5F5:1:2108:14149:17256_CONS(1)... at 1:79:1:79/+/98.73% +113 79nt, >M01687:476:000000000-LL5F5:1:2108:4411:21337_CONS(3)... at 1:79:1:79/+/98.73% +114 79nt, >M01687:476:000000000-LL5F5:1:2106:16977:2491_CONS(1)... at 1:79:1:79/+/98.73% +115 79nt, >M01687:476:000000000-LL5F5:1:2106:20575:7450_CONS(1)... at 1:79:1:79/+/97.47% +116 79nt, >M01687:476:000000000-LL5F5:1:2106:28907:9425_CONS(1)... at 1:79:1:79/+/98.73% +117 79nt, >M01687:476:000000000-LL5F5:1:2106:14308:21729_CONS(3)... at 1:79:1:79/+/98.73% +118 79nt, >M01687:476:000000000-LL5F5:1:2106:14401:23682_CONS(3)... at 1:79:1:79/+/98.73% +119 78nt, >M01687:476:000000000-LL5F5:1:2106:9879:23702_CONS(1)... at 1:78:1:79/+/100.00% +120 79nt, >M01687:476:000000000-LL5F5:1:2107:16031:6002_CONS(1)... at 1:79:1:79/+/98.73% +121 79nt, >M01687:476:000000000-LL5F5:1:2107:11491:9557_CONS(1)... at 1:79:1:79/+/97.47% +122 79nt, >M01687:476:000000000-LL5F5:1:2107:23532:10608_CONS(1)... at 1:79:1:79/+/98.73% +123 79nt, >M01687:476:000000000-LL5F5:1:2107:25471:13377_CONS(5)... at 1:79:1:79/+/98.73% +124 78nt, >M01687:476:000000000-LL5F5:1:2107:9218:16204_CONS(1)... at 1:78:1:79/+/100.00% +125 79nt, >M01687:476:000000000-LL5F5:1:2107:17683:17867_CONS(3)... at 1:79:1:79/+/98.73% +126 79nt, >M01687:476:000000000-LL5F5:1:2107:24260:18266_CONS(1)... at 1:79:1:79/+/97.47% +127 79nt, >M01687:476:000000000-LL5F5:1:2107:15177:22201_CONS(1)... at 1:79:1:79/+/97.47% +128 79nt, >M01687:476:000000000-LL5F5:1:2104:24137:4446_CONS(1)... at 1:79:1:79/+/98.73% +129 79nt, >M01687:476:000000000-LL5F5:1:2104:21873:10197_CONS(2)... at 1:79:1:79/+/98.73% +130 79nt, >M01687:476:000000000-LL5F5:1:2104:5852:17542_CONS(2)... at 1:79:1:79/+/98.73% +131 78nt, >M01687:476:000000000-LL5F5:1:2104:16925:18250_CONS(1)... at 1:78:1:79/+/98.72% +132 79nt, >M01687:476:000000000-LL5F5:1:2104:23977:18567_CONS(6)... at 1:79:1:79/+/98.73% +133 80nt, >M01687:476:000000000-LL5F5:1:2105:25322:3516_CONS(1)... at 1:80:1:79/+/97.50% +134 79nt, >M01687:476:000000000-LL5F5:1:2105:15925:4970_CONS(3)... at 1:79:1:79/+/98.73% +135 79nt, >M01687:476:000000000-LL5F5:1:2105:3772:11946_CONS(1)... at 1:79:1:79/+/98.73% +136 79nt, >M01687:476:000000000-LL5F5:1:2105:11651:12734_CONS(1)... at 1:79:1:79/+/97.47% +137 79nt, >M01687:476:000000000-LL5F5:1:2105:8925:15474_CONS(4)... at 1:79:1:79/+/98.73% +138 78nt, >M01687:476:000000000-LL5F5:1:2105:11385:19261_CONS(4)... at 1:78:1:79/+/98.72% +139 79nt, >M01687:476:000000000-LL5F5:1:2105:16993:19341_CONS(3)... at 1:79:1:79/+/98.73% +140 79nt, >M01687:476:000000000-LL5F5:1:2105:5229:22008_CONS(1)... at 1:79:1:79/+/97.47% +141 79nt, >M01687:476:000000000-LL5F5:1:2102:24090:2577_CONS(1)... at 1:79:1:79/+/98.73% +142 79nt, >M01687:476:000000000-LL5F5:1:2102:26103:6279_CONS(1)... at 1:79:1:79/+/98.73% +143 79nt, >M01687:476:000000000-LL5F5:1:2102:14984:7265_CONS(1)... at 1:79:1:79/+/98.73% +144 44nt, >M01687:476:000000000-LL5F5:1:2102:7496:11558_CONS(1)... at 1:44:1:44/+/100.00% +145 80nt, >M01687:476:000000000-LL5F5:1:2102:5774:13454_CONS(1)... at 1:80:1:79/+/98.75% +146 79nt, >M01687:476:000000000-LL5F5:1:2102:21178:13588_CONS(1)... at 1:79:1:79/+/97.47% +147 79nt, >M01687:476:000000000-LL5F5:1:2102:2835:14687_CONS(1)... at 1:79:1:79/+/97.47% +148 79nt, >M01687:476:000000000-LL5F5:1:2102:7000:15510_CONS(2)... at 1:79:1:79/+/98.73% +149 79nt, >M01687:476:000000000-LL5F5:1:2102:24949:23491_CONS(1)... at 1:79:1:79/+/97.47% +150 79nt, >M01687:476:000000000-LL5F5:1:2102:18835:24258_CONS(1)... at 1:79:1:79/+/97.47% +151 79nt, >M01687:476:000000000-LL5F5:1:2103:26320:6194_CONS(1)... at 1:79:1:79/+/97.47% +152 80nt, >M01687:476:000000000-LL5F5:1:2103:26851:12899_CONS(1)... at 1:80:1:79/+/98.75% +153 79nt, >M01687:476:000000000-LL5F5:1:2103:8013:15457_CONS(1)... at 1:79:1:79/+/97.47% +154 79nt, >M01687:476:000000000-LL5F5:1:2103:29001:16562_CONS(1)... at 1:79:1:79/+/98.73% +155 79nt, >M01687:476:000000000-LL5F5:1:2103:21223:17333_CONS(1)... at 1:79:1:79/+/98.73% +156 79nt, >M01687:476:000000000-LL5F5:1:2103:9619:20079_CONS(1)... at 1:79:1:79/+/97.47% +157 78nt, >M01687:476:000000000-LL5F5:1:2103:16864:20666_CONS(1)... at 1:78:1:79/+/98.72% +158 79nt, >M01687:476:000000000-LL5F5:1:2116:20173:2614_CONS(1)... at 1:79:1:79/+/98.73% +159 78nt, >M01687:476:000000000-LL5F5:1:2116:6909:7743_CONS(1)... at 1:78:1:78/+/97.44% +160 79nt, >M01687:476:000000000-LL5F5:1:2116:25371:9206_CONS(1)... at 1:79:1:79/+/97.47% +161 78nt, >M01687:476:000000000-LL5F5:1:2116:10796:19381_CONS(1)... at 1:78:2:79/+/98.72% +162 78nt, >M01687:476:000000000-LL5F5:1:2116:27134:19560_CONS(3)... at 1:78:1:79/+/100.00% +163 80nt, >M01687:476:000000000-LL5F5:1:2116:18628:20746_CONS(1)... at 1:80:1:79/+/98.75% +164 79nt, >M01687:476:000000000-LL5F5:1:2116:7993:24060_CONS(1)... at 1:79:1:79/+/97.47% +165 79nt, >M01687:476:000000000-LL5F5:1:2117:11519:2594_CONS(2)... at 1:79:1:79/+/97.47% +166 79nt, >M01687:476:000000000-LL5F5:1:2117:16378:3337_CONS(1)... at 1:79:1:79/+/98.73% +167 79nt, >M01687:476:000000000-LL5F5:1:2117:13391:3767_CONS(3)... at 1:79:1:79/+/98.73% +168 77nt, >M01687:476:000000000-LL5F5:1:2117:20166:8750_CONS(1)... at 1:77:1:79/+/98.70% +169 79nt, >M01687:476:000000000-LL5F5:1:2117:26631:11493_CONS(3)... at 1:79:1:79/+/98.73% +170 79nt, >M01687:476:000000000-LL5F5:1:2117:3800:14927_CONS(2)... at 1:79:1:79/+/98.73% +171 78nt, >M01687:476:000000000-LL5F5:1:2117:26981:16173_CONS(1)... at 1:78:1:79/+/100.00% +172 79nt, >M01687:476:000000000-LL5F5:1:2117:11725:17895_CONS(1)... at 1:79:1:79/+/97.47% +173 79nt, >M01687:476:000000000-LL5F5:1:2117:8005:19704_CONS(1)... at 1:79:1:79/+/97.47% +174 79nt, >M01687:476:000000000-LL5F5:1:2117:21746:21172_CONS(3)... at 1:79:1:79/+/98.73% +175 79nt, >M01687:476:000000000-LL5F5:1:1119:3049:8948_CONS(1)... at 1:79:1:79/+/97.47% +176 79nt, >M01687:476:000000000-LL5F5:1:1119:2667:12975_CONS(1)... at 1:79:1:79/+/97.47% +177 78nt, >M01687:476:000000000-LL5F5:1:1119:3724:13162_CONS(1)... at 1:78:1:79/+/97.44% +178 78nt, >M01687:476:000000000-LL5F5:1:1119:25992:15357_CONS(4)... at 1:78:1:79/+/100.00% +179 79nt, >M01687:476:000000000-LL5F5:1:1119:14014:17455_CONS(1)... at 1:79:1:79/+/98.73% +180 79nt, >M01687:476:000000000-LL5F5:1:1119:9475:19523_CONS(2)... at 1:79:1:79/+/97.47% +181 38nt, >M01687:476:000000000-LL5F5:1:1119:17823:21072_CONS(1)... at 1:38:1:38/+/97.37% +182 79nt, >M01687:476:000000000-LL5F5:1:2101:18608:4567_CONS(2)... at 1:79:1:79/+/98.73% +183 78nt, >M01687:476:000000000-LL5F5:1:2101:20764:6663_CONS(2)... at 1:78:1:79/+/100.00% +184 79nt, >M01687:476:000000000-LL5F5:1:2101:18950:9926_CONS(1)... at 1:79:1:79/+/97.47% +185 79nt, >M01687:476:000000000-LL5F5:1:2101:24751:11926_CONS(1)... at 1:79:1:79/+/98.73% +186 78nt, >M01687:476:000000000-LL5F5:1:2101:20583:23663_CONS(1)... at 1:78:1:79/+/97.44% +187 79nt, >M01687:476:000000000-LL5F5:1:1115:5131:7345_CONS(1)... at 1:79:1:79/+/98.73% +188 79nt, >M01687:476:000000000-LL5F5:1:1115:24426:12481_CONS(1)... at 1:79:1:79/+/98.73% +189 80nt, >M01687:476:000000000-LL5F5:1:1115:12819:15694_CONS(1)... at 1:80:1:80/+/98.75% +190 79nt, >M01687:476:000000000-LL5F5:1:1115:27625:16236_CONS(1)... at 1:79:1:79/+/98.73% +191 78nt, >M01687:476:000000000-LL5F5:1:1115:9748:20828_CONS(1)... at 1:78:1:79/+/100.00% +192 79nt, >M01687:476:000000000-LL5F5:1:1115:15803:21148_CONS(1)... at 1:79:1:79/+/98.73% +193 40nt, >M01687:476:000000000-LL5F5:1:1115:20184:24908_CONS(1)... at 1:40:1:40/+/97.50% +194 79nt, >M01687:476:000000000-LL5F5:1:1116:12985:7343_CONS(1)... at 1:79:1:79/+/97.47% +195 78nt, >M01687:476:000000000-LL5F5:1:1116:29666:13141_CONS(1)... at 1:78:1:79/+/97.44% +196 158nt, >M01687:476:000000000-LL5F5:1:1116:20419:13515_PairEnd(1)... at 1:158:1:159/+/99.37% +197 79nt, >M01687:476:000000000-LL5F5:1:1116:19348:17565_CONS(1)... at 1:79:1:79/+/98.73% +198 79nt, >M01687:476:000000000-LL5F5:1:1116:16056:19497_CONS(1)... at 1:79:1:79/+/98.73% +199 51nt, >M01687:476:000000000-LL5F5:1:1114:16092:7755_CONS(1)... at 1:51:1:52/+/98.04% +200 80nt, >M01687:476:000000000-LL5F5:1:1114:8231:9676_CONS(1)... at 1:80:1:79/+/98.75% +201 79nt, >M01687:476:000000000-LL5F5:1:1114:24739:10072_CONS(1)... at 1:79:1:79/+/97.47% +202 79nt, >M01687:476:000000000-LL5F5:1:1114:23289:13872_CONS(2)... at 1:79:1:79/+/98.73% +203 79nt, >M01687:476:000000000-LL5F5:1:1114:4153:15904_CONS(1)... at 1:79:1:79/+/97.47% +204 79nt, >M01687:476:000000000-LL5F5:1:1114:15993:23495_CONS(1)... at 1:79:1:79/+/98.73% +205 79nt, >M01687:476:000000000-LL5F5:1:1113:7553:5765_CONS(1)... at 1:79:1:79/+/97.47% +206 79nt, >M01687:476:000000000-LL5F5:1:1113:18039:11551_CONS(1)... at 1:79:1:79/+/97.47% +207 81nt, >M01687:476:000000000-LL5F5:1:1113:21630:18553_CONS(1)... at 1:81:1:79/+/97.53% +208 78nt, >M01687:476:000000000-LL5F5:1:1112:21531:7116_CONS(1)... at 1:78:1:79/+/100.00% +209 79nt, >M01687:476:000000000-LL5F5:1:1112:4746:11434_CONS(1)... at 1:79:1:79/+/97.47% +210 79nt, >M01687:476:000000000-LL5F5:1:1111:23376:8688_CONS(1)... at 1:79:1:79/+/98.73% +211 78nt, >M01687:476:000000000-LL5F5:1:1111:17960:21579_CONS(1)... at 1:78:1:79/+/98.72% +212 79nt, >M01687:476:000000000-LL5F5:1:1110:3449:7062_CONS(2)... at 1:79:1:79/+/97.47% +213 79nt, >M01687:476:000000000-LL5F5:1:1110:18200:7887_CONS(1)... at 1:79:1:79/+/98.73% +214 79nt, >M01687:476:000000000-LL5F5:1:1110:5692:9502_CONS(2)... at 1:79:1:79/+/97.47% +215 79nt, >M01687:476:000000000-LL5F5:1:1110:4616:13954_CONS(1)... at 1:79:1:79/+/98.73% +216 79nt, >M01687:476:000000000-LL5F5:1:1110:16411:22978_CONS(1)... at 1:79:1:79/+/97.47% +217 79nt, >M01687:476:000000000-LL5F5:1:1109:21519:1394_CONS(1)... at 1:79:1:79/+/98.73% +218 75nt, >M01687:476:000000000-LL5F5:1:1109:12622:2827_CONS(1)... at 1:75:1:79/+/100.00% +219 79nt, >M01687:476:000000000-LL5F5:1:1109:5888:8862_CONS(1)... at 1:79:1:79/+/97.47% +220 80nt, >M01687:476:000000000-LL5F5:1:1109:4114:11482_CONS(1)... at 1:80:1:79/+/97.50% +221 43nt, >M01687:476:000000000-LL5F5:1:1109:5087:12013_CONS(1)... at 1:43:1:43/+/97.67% +222 39nt, >M01687:476:000000000-LL5F5:1:1109:28009:12712_CONS(1)... at 1:39:1:39/+/97.44% +223 79nt, >M01687:476:000000000-LL5F5:1:1109:8786:14232_CONS(1)... at 1:79:1:79/+/97.47% +224 79nt, >M01687:476:000000000-LL5F5:1:1109:6105:20848_CONS(1)... at 1:79:1:79/+/98.73% +225 79nt, >M01687:476:000000000-LL5F5:1:1108:20250:11070_CONS(1)... at 1:79:1:79/+/98.73% +226 79nt, >M01687:476:000000000-LL5F5:1:1108:13020:14581_CONS(1)... at 1:79:1:79/+/98.73% +227 77nt, >M01687:476:000000000-LL5F5:1:1107:8545:2881_CONS(1)... at 1:77:1:79/+/98.70% +228 79nt, >M01687:476:000000000-LL5F5:1:1107:8869:14543_CONS(1)... at 1:79:1:79/+/98.73% +229 79nt, >M01687:476:000000000-LL5F5:1:1107:20459:23928_CONS(1)... at 1:79:1:79/+/97.47% +230 77nt, >M01687:476:000000000-LL5F5:1:1106:15432:5567_CONS(1)... at 1:77:1:78/+/97.40% +231 79nt, >M01687:476:000000000-LL5F5:1:1106:10354:15348_CONS(1)... at 1:79:1:79/+/97.47% +232 79nt, >M01687:476:000000000-LL5F5:1:1106:3644:16971_CONS(1)... at 1:79:1:79/+/97.47% +233 78nt, >M01687:476:000000000-LL5F5:1:1105:13955:5446_CONS(2)... at 1:78:1:79/+/100.00% +234 79nt, >M01687:476:000000000-LL5F5:1:1105:4296:6486_CONS(1)... at 1:79:1:79/+/98.73% +235 78nt, >M01687:476:000000000-LL5F5:1:1105:12079:14700_CONS(1)... at 1:78:1:79/+/97.44% +236 79nt, >M01687:476:000000000-LL5F5:1:1105:6887:23517_CONS(1)... at 1:79:1:79/+/97.47% +237 79nt, >M01687:476:000000000-LL5F5:1:1104:14795:3480_CONS(1)... at 1:79:1:79/+/98.73% +238 79nt, >M01687:476:000000000-LL5F5:1:1104:18035:4911_CONS(1)... at 1:79:1:79/+/97.47% +239 78nt, >M01687:476:000000000-LL5F5:1:1104:6042:8099_CONS(1)... at 1:78:1:79/+/100.00% +240 79nt, >M01687:476:000000000-LL5F5:1:1104:9905:13254_CONS(1)... at 1:79:1:79/+/97.47% +241 79nt, >M01687:476:000000000-LL5F5:1:1104:2990:15391_CONS(1)... at 1:79:1:79/+/98.73% +242 79nt, >M01687:476:000000000-LL5F5:1:1104:13037:23843_CONS(2)... at 1:79:1:79/+/98.73% +243 79nt, >M01687:476:000000000-LL5F5:1:1103:22287:5824_CONS(1)... at 1:79:1:79/+/98.73% +244 79nt, >M01687:476:000000000-LL5F5:1:1103:20369:6894_CONS(1)... at 1:79:1:79/+/98.73% +245 83nt, >M01687:476:000000000-LL5F5:1:1103:8590:10086_CONS(1)... at 1:83:1:83/+/98.80% +246 78nt, >M01687:476:000000000-LL5F5:1:1103:20462:16911_CONS(1)... at 1:78:1:78/+/98.72% +247 79nt, >M01687:476:000000000-LL5F5:1:1103:12773:21342_CONS(1)... at 1:79:1:79/+/98.73% +248 79nt, >M01687:476:000000000-LL5F5:1:1118:18583:1654_CONS(1)... at 1:79:1:79/+/98.73% +249 79nt, >M01687:476:000000000-LL5F5:1:1118:15245:12997_CONS(1)... at 1:79:1:79/+/98.73% +250 79nt, >M01687:476:000000000-LL5F5:1:1117:9856:6401_CONS(1)... at 1:79:1:79/+/97.47% +251 79nt, >M01687:476:000000000-LL5F5:1:1117:28427:13958_CONS(1)... at 1:79:1:79/+/97.47% +252 79nt, >M01687:476:000000000-LL5F5:1:1117:5495:22314_CONS(1)... at 1:79:1:79/+/97.47% +253 78nt, >M01687:476:000000000-LL5F5:1:2118:8970:11509_CONS(1)... at 1:78:1:79/+/100.00% +254 77nt, >M01687:476:000000000-LL5F5:1:2118:28932:14735_CONS(1)... at 1:77:3:79/+/98.70% +255 79nt, >M01687:476:000000000-LL5F5:1:2118:6253:17775_CONS(1)... at 1:79:1:79/+/98.73% +256 79nt, >M01687:476:000000000-LL5F5:1:2119:20377:11372_CONS(1)... at 1:79:1:79/+/98.73% +257 79nt, >M01687:476:000000000-LL5F5:1:2119:23063:19262_CONS(1)... at 1:79:1:79/+/98.73% +258 79nt, >M01687:476:000000000-LL5F5:1:2119:20680:19968_CONS(1)... at 1:79:1:79/+/98.73% +259 78nt, >M01687:476:000000000-LL5F5:1:2119:15874:20367_CONS(1)... at 1:78:1:79/+/100.00% +260 79nt, >M01687:476:000000000-LL5F5:1:2119:13490:20582_CONS(1)... at 1:79:1:79/+/98.73% +>Cluster 10 +0 157nt, >M01687:476:000000000-LL5F5:1:2110:14629:2798_PairEnd(1)... * +>Cluster 11 +0 70nt, >M01687:476:000000000-LL5F5:1:1102:8011:2490_CONS(902)... at 1:70:1:70/+/100.00% +1 70nt, >M01687:476:000000000-LL5F5:1:1102:29330:11800_CONS(4)... at 1:70:1:70/+/98.57% +2 70nt, >M01687:476:000000000-LL5F5:1:1102:18473:22320_CONS(4)... at 1:70:1:70/+/98.57% +3 70nt, >M01687:476:000000000-LL5F5:1:1102:6454:22321_CONS(2)... at 1:70:1:70/+/98.57% +4 70nt, >M01687:476:000000000-LL5F5:1:1101:10503:1987_CONS(3)... at 1:70:1:70/+/98.57% +5 70nt, >M01687:476:000000000-LL5F5:1:1101:20338:3872_CONS(3)... at 1:70:1:70/+/98.57% +6 70nt, >M01687:476:000000000-LL5F5:1:2115:7342:12672_CONS(1)... at 1:70:1:70/+/98.57% +7 70nt, >M01687:476:000000000-LL5F5:1:2115:13597:17256_CONS(1)... at 1:70:1:70/+/98.57% +8 69nt, >M01687:476:000000000-LL5F5:1:2114:25235:3135_CONS(3)... at 1:69:1:70/+/100.00% +9 70nt, >M01687:476:000000000-LL5F5:1:2112:15289:12994_CONS(1)... at 1:70:1:70/+/98.57% +10 70nt, >M01687:476:000000000-LL5F5:1:2112:15673:22296_CONS(1)... at 1:70:1:70/+/98.57% +11 70nt, >M01687:476:000000000-LL5F5:1:2111:22006:7049_CONS(2)... at 1:70:1:70/+/98.57% +12 70nt, >M01687:476:000000000-LL5F5:1:2111:23909:21877_CONS(1)... at 1:70:1:70/+/97.14% +13 69nt, >M01687:476:000000000-LL5F5:1:2110:12997:3321_CONS(3)... at 1:69:1:70/+/100.00% +14 70nt, >M01687:476:000000000-LL5F5:1:2110:7381:5844_CONS(6)... at 1:70:1:70/+/98.57% +15 70nt, >M01687:476:000000000-LL5F5:1:2110:19482:10387_CONS(2)... at 1:70:1:70/+/98.57% +16 70nt, >M01687:476:000000000-LL5F5:1:2110:2978:16816_CONS(1)... at 1:70:1:70/+/97.14% +17 70nt, >M01687:476:000000000-LL5F5:1:2109:23687:10238_CONS(1)... at 1:70:1:70/+/98.57% +18 70nt, >M01687:476:000000000-LL5F5:1:2109:25056:15484_CONS(2)... at 1:70:1:70/+/98.57% +19 70nt, >M01687:476:000000000-LL5F5:1:2109:14741:24963_CONS(1)... at 1:70:1:70/+/98.57% +20 70nt, >M01687:476:000000000-LL5F5:1:2108:5148:17756_CONS(1)... at 1:70:1:70/+/98.57% +21 70nt, >M01687:476:000000000-LL5F5:1:2106:20240:3868_CONS(5)... at 1:70:1:70/+/98.57% +22 69nt, >M01687:476:000000000-LL5F5:1:2106:12421:4639_CONS(3)... at 1:69:1:70/+/100.00% +23 69nt, >M01687:476:000000000-LL5F5:1:2106:21142:13427_CONS(1)... at 1:69:1:70/+/100.00% +24 70nt, >M01687:476:000000000-LL5F5:1:2106:18289:17239_CONS(2)... at 1:70:1:70/+/98.57% +25 70nt, >M01687:476:000000000-LL5F5:1:2106:12583:23894_CONS(1)... at 1:70:1:70/+/98.57% +26 69nt, >M01687:476:000000000-LL5F5:1:2107:19394:5595_CONS(6)... at 1:69:1:70/+/100.00% +27 70nt, >M01687:476:000000000-LL5F5:1:2104:13488:1268_CONS(1)... at 1:70:1:70/+/98.57% +28 70nt, >M01687:476:000000000-LL5F5:1:2104:13695:2909_CONS(1)... at 1:70:1:70/+/98.57% +29 70nt, >M01687:476:000000000-LL5F5:1:2104:6889:21232_CONS(2)... at 1:70:1:70/+/98.57% +30 69nt, >M01687:476:000000000-LL5F5:1:2104:21737:22171_CONS(1)... at 1:69:1:70/+/100.00% +31 69nt, >M01687:476:000000000-LL5F5:1:2102:18090:12552_CONS(1)... at 1:69:1:70/+/100.00% +32 70nt, >M01687:476:000000000-LL5F5:1:2102:22840:14881_CONS(1)... at 1:70:1:70/+/98.57% +33 70nt, >M01687:476:000000000-LL5F5:1:2102:26339:20252_CONS(1)... at 1:70:1:70/+/98.57% +34 70nt, >M01687:476:000000000-LL5F5:1:2103:16319:18699_CONS(1)... at 1:70:1:70/+/98.57% +35 70nt, >M01687:476:000000000-LL5F5:1:2103:11653:22246_CONS(1)... at 1:70:1:70/+/98.57% +36 70nt, >M01687:476:000000000-LL5F5:1:2116:21795:4903_CONS(1)... at 1:70:1:70/+/98.57% +37 71nt, >M01687:476:000000000-LL5F5:1:2116:18784:14569_CONS(1)... at 1:71:1:71/+/97.18% +38 70nt, >M01687:476:000000000-LL5F5:1:2117:13967:13497_CONS(1)... at 1:70:1:70/+/98.57% +39 70nt, >M01687:476:000000000-LL5F5:1:1119:14238:9657_CONS(1)... at 1:70:1:70/+/98.57% +40 70nt, >M01687:476:000000000-LL5F5:1:1119:13590:24871_CONS(1)... at 1:70:1:70/+/98.57% +41 70nt, >M01687:476:000000000-LL5F5:1:2101:4180:17053_CONS(1)... at 1:70:1:70/+/97.14% +42 70nt, >M01687:476:000000000-LL5F5:1:2101:22523:19128_CONS(1)... at 1:70:1:70/+/98.57% +43 70nt, >M01687:476:000000000-LL5F5:1:1116:8536:12699_CONS(2)... at 1:70:1:70/+/98.57% +44 70nt, >M01687:476:000000000-LL5F5:1:1114:22091:14295_CONS(1)... at 1:70:1:70/+/98.57% +45 71nt, >M01687:476:000000000-LL5F5:1:1114:16924:18208_CONS(1)... at 2:71:1:70/+/98.59% +46 70nt, >M01687:476:000000000-LL5F5:1:1114:23430:23427_CONS(1)... at 1:70:1:70/+/98.57% +47 71nt, >M01687:476:000000000-LL5F5:1:1113:19719:14425_CONS(1)... at 1:71:1:70/+/98.59% +48 70nt, >M01687:476:000000000-LL5F5:1:1112:9131:5700_CONS(1)... at 1:70:1:70/+/98.57% +49 70nt, >M01687:476:000000000-LL5F5:1:1110:15601:4896_CONS(1)... at 1:70:1:70/+/98.57% +50 70nt, >M01687:476:000000000-LL5F5:1:1110:16341:10540_CONS(1)... at 1:70:1:70/+/98.57% +51 70nt, >M01687:476:000000000-LL5F5:1:1110:22767:19390_CONS(1)... at 1:70:1:70/+/98.57% +52 70nt, >M01687:476:000000000-LL5F5:1:1110:17433:20609_CONS(1)... at 1:70:1:70/+/98.57% +53 70nt, >M01687:476:000000000-LL5F5:1:1109:18226:22310_CONS(1)... at 1:70:1:70/+/98.57% +54 70nt, >M01687:476:000000000-LL5F5:1:1108:12852:6323_CONS(1)... at 1:70:1:70/+/98.57% +55 69nt, >M01687:476:000000000-LL5F5:1:1108:5222:15138_CONS(1)... at 1:69:1:70/+/100.00% +56 69nt, >M01687:476:000000000-LL5F5:1:1107:22110:23676_CONS(1)... at 1:69:1:70/+/98.55% +57 69nt, >M01687:476:000000000-LL5F5:1:1106:8099:4705_CONS(1)... at 1:69:1:69/+/100.00% +58 70nt, >M01687:476:000000000-LL5F5:1:1106:12299:6653_CONS(1)... at 1:70:1:70/+/98.57% +59 70nt, >M01687:476:000000000-LL5F5:1:1106:10449:7916_CONS(1)... at 1:70:1:70/+/97.14% +60 70nt, >M01687:476:000000000-LL5F5:1:1106:7617:21657_CONS(1)... at 1:70:1:70/+/97.14% +61 70nt, >M01687:476:000000000-LL5F5:1:1105:18058:4144_CONS(1)... at 1:70:1:70/+/98.57% +62 70nt, >M01687:476:000000000-LL5F5:1:1105:9560:9346_CONS(1)... at 1:70:1:70/+/98.57% +63 70nt, >M01687:476:000000000-LL5F5:1:1105:24253:13715_CONS(1)... at 1:70:1:70/+/97.14% +64 70nt, >M01687:476:000000000-LL5F5:1:1104:13490:14055_CONS(1)... at 1:70:1:70/+/98.57% +65 44nt, >M01687:476:000000000-LL5F5:1:1103:8121:21370_CONS(1)... at 1:44:1:44/+/97.73% +66 69nt, >M01687:476:000000000-LL5F5:1:1118:25553:12555_CONS(1)... at 1:69:2:70/+/100.00% +67 70nt, >M01687:476:000000000-LL5F5:1:1118:16312:19672_CONS(1)... at 1:70:1:70/+/98.57% +68 70nt, >M01687:476:000000000-LL5F5:1:1117:17797:4352_CONS(1)... at 1:70:1:70/+/98.57% +69 70nt, >M01687:476:000000000-LL5F5:1:1117:8390:7903_CONS(1)... at 1:70:1:70/+/97.14% +70 70nt, >M01687:476:000000000-LL5F5:1:1117:8836:18225_CONS(1)... at 1:70:1:70/+/97.14% +71 70nt, >M01687:476:000000000-LL5F5:1:2118:24561:3194_CONS(1)... at 1:70:1:70/+/98.57% +72 151nt, >M01687:476:000000000-LL5F5:1:2118:7525:16122_PairEnd(1)... * +73 70nt, >M01687:476:000000000-LL5F5:1:2119:22964:7719_CONS(1)... at 1:70:1:70/+/98.57% +74 69nt, >M01687:476:000000000-LL5F5:1:2119:19905:15588_CONS(1)... at 1:69:1:70/+/98.55% +75 70nt, >M01687:476:000000000-LL5F5:1:2119:14337:18902_CONS(1)... at 1:70:1:70/+/98.57% +76 70nt, >M01687:476:000000000-LL5F5:1:2119:6166:20553_CONS(1)... at 1:70:1:70/+/98.57% +77 69nt, >M01687:476:000000000-LL5F5:1:2119:8153:21211_CONS(1)... at 1:69:1:70/+/98.55% +>Cluster 12 +0 136nt, >M01687:476:000000000-LL5F5:1:1117:27077:8199_PairEnd(1)... * +>Cluster 13 +0 58nt, >M01687:476:000000000-LL5F5:1:1102:14020:6436_CONS(51)... at 1:58:1:58/+/100.00% +1 58nt, >M01687:476:000000000-LL5F5:1:2114:3927:11960_CONS(1)... at 1:58:1:58/+/98.28% +2 131nt, >M01687:476:000000000-LL5F5:1:2111:7943:19100_PairEnd(1)... * +3 57nt, >M01687:476:000000000-LL5F5:1:2110:6246:6838_CONS(2)... at 1:57:1:58/+/100.00% +4 58nt, >M01687:476:000000000-LL5F5:1:2109:8292:9293_CONS(1)... at 1:58:1:58/+/98.28% +5 58nt, >M01687:476:000000000-LL5F5:1:1108:23701:9404_CONS(1)... at 1:58:1:58/+/98.28% +>Cluster 14 +0 92nt, >M01687:476:000000000-LL5F5:1:1102:29082:10242_CONS(36)... at 1:92:1:92/+/100.00% +1 92nt, >M01687:476:000000000-LL5F5:1:1102:26736:14860_CONS(1)... at 1:92:1:92/+/98.91% +2 92nt, >M01687:476:000000000-LL5F5:1:2115:20944:18138_CONS(2)... at 1:92:1:92/+/98.91% +3 121nt, >M01687:476:000000000-LL5F5:1:2114:14095:14066_CONS(1)... * +4 92nt, >M01687:476:000000000-LL5F5:1:2105:19344:22518_CONS(1)... at 1:92:1:92/+/98.91% +>Cluster 15 +0 107nt, >M01687:476:000000000-LL5F5:1:1102:17355:16899_CONS(1)... at 1:107:14:120/+/97.20% +1 107nt, >M01687:476:000000000-LL5F5:1:2115:8893:2770_CONS(1)... at 1:107:14:120/+/97.20% +2 107nt, >M01687:476:000000000-LL5F5:1:2111:10743:5844_CONS(1)... at 1:107:14:120/+/97.20% +3 107nt, >M01687:476:000000000-LL5F5:1:2111:18207:13636_CONS(1)... at 1:107:14:120/+/97.20% +4 104nt, >M01687:476:000000000-LL5F5:1:2110:2671:13070_CONS(1)... at 1:104:14:120/+/97.12% +5 120nt, >M01687:476:000000000-LL5F5:1:2109:9606:1657_CONS(1)... * +6 105nt, >M01687:476:000000000-LL5F5:1:2106:8280:15456_CONS(1)... at 1:105:14:120/+/97.14% +7 108nt, >M01687:476:000000000-LL5F5:1:2103:21729:2361_CONS(1)... at 1:108:14:120/+/97.22% +8 104nt, >M01687:476:000000000-LL5F5:1:2116:8378:14161_CONS(1)... at 1:104:14:120/+/97.12% +9 107nt, >M01687:476:000000000-LL5F5:1:1116:24404:4979_CONS(1)... at 1:107:14:120/+/97.20% +10 106nt, >M01687:476:000000000-LL5F5:1:1114:23829:9160_CONS(1)... at 1:106:14:120/+/97.17% +11 107nt, >M01687:476:000000000-LL5F5:1:1112:27642:14358_CONS(1)... at 1:107:14:120/+/97.20% +12 107nt, >M01687:476:000000000-LL5F5:1:1109:4030:6034_CONS(1)... at 1:107:14:120/+/97.20% +13 108nt, >M01687:476:000000000-LL5F5:1:1108:18211:11059_CONS(1)... at 1:108:14:120/+/97.22% +14 107nt, >M01687:476:000000000-LL5F5:1:1108:23460:21839_CONS(1)... at 1:107:14:120/+/97.20% +15 107nt, >M01687:476:000000000-LL5F5:1:1107:14547:5718_CONS(1)... at 1:107:14:120/+/97.20% +16 107nt, >M01687:476:000000000-LL5F5:1:1107:18330:19337_CONS(1)... at 1:107:14:120/+/97.20% +17 107nt, >M01687:476:000000000-LL5F5:1:1107:26621:21066_CONS(1)... at 1:107:14:120/+/97.20% +18 107nt, >M01687:476:000000000-LL5F5:1:1107:14472:21752_CONS(1)... at 1:107:14:120/+/97.20% +19 107nt, >M01687:476:000000000-LL5F5:1:1105:22041:16975_CONS(1)... at 1:107:14:120/+/97.20% +20 109nt, >M01687:476:000000000-LL5F5:1:1104:21520:4510_CONS(1)... at 1:109:14:120/+/97.25% +21 109nt, >M01687:476:000000000-LL5F5:1:1104:14444:20040_CONS(1)... at 1:109:14:120/+/97.25% +22 107nt, >M01687:476:000000000-LL5F5:1:1118:24733:2541_CONS(1)... at 1:107:14:120/+/97.20% +23 110nt, >M01687:476:000000000-LL5F5:1:1118:5116:9188_CONS(1)... at 1:110:14:120/+/97.27% +24 60nt, >M01687:476:000000000-LL5F5:1:1117:21032:5432_CONS(1)... at 1:60:14:76/+/98.33% +>Cluster 16 +0 101nt, >M01687:476:000000000-LL5F5:1:2109:17472:8282_CONS(1)... at 1:101:16:116/+/97.03% +1 116nt, >M01687:476:000000000-LL5F5:1:2108:23195:5209_CONS(1)... * +2 88nt, >M01687:476:000000000-LL5F5:1:2107:9500:24540_CONS(1)... at 1:88:29:116/+/97.73% +>Cluster 17 +0 81nt, >M01687:476:000000000-LL5F5:1:2115:23084:5295_CONS(1)... at 1:81:1:84/+/97.53% +1 85nt, >M01687:476:000000000-LL5F5:1:2113:16155:6945_CONS(1)... at 1:85:1:84/+/97.65% +2 90nt, >M01687:476:000000000-LL5F5:1:2113:21312:8043_CONS(1)... at 1:90:1:91/+/97.78% +3 85nt, >M01687:476:000000000-LL5F5:1:2113:24465:11661_CONS(1)... at 1:85:1:84/+/97.65% +4 114nt, >M01687:476:000000000-LL5F5:1:2112:28245:9490_CONS(1)... * +5 85nt, >M01687:476:000000000-LL5F5:1:2110:15079:24372_CONS(2)... at 1:85:1:84/+/97.65% +6 85nt, >M01687:476:000000000-LL5F5:1:2109:23070:23836_CONS(1)... at 1:85:1:84/+/97.65% +7 81nt, >M01687:476:000000000-LL5F5:1:2103:28056:13755_CONS(2)... at 1:81:1:84/+/97.53% +8 85nt, >M01687:476:000000000-LL5F5:1:1113:5744:21828_CONS(1)... at 1:85:1:84/+/97.65% +9 85nt, >M01687:476:000000000-LL5F5:1:1118:25322:4253_CONS(1)... at 1:85:1:84/+/97.65% +10 39nt, >M01687:476:000000000-LL5F5:1:2118:2771:17529_CONS(1)... at 1:39:1:39/+/97.44% +>Cluster 18 +0 112nt, >M01687:476:000000000-LL5F5:1:2117:27100:14564_CONS(1)... * +>Cluster 19 +0 107nt, >M01687:476:000000000-LL5F5:1:2115:4191:17403_CONS(1)... * +>Cluster 20 +0 107nt, >M01687:476:000000000-LL5F5:1:2113:19744:15057_CONS(1)... * +1 107nt, >M01687:476:000000000-LL5F5:1:1106:24176:12284_CONS(1)... at 1:107:1:107/+/97.20% +>Cluster 21 +0 43nt, >M01687:476:000000000-LL5F5:1:2106:10816:10729_CONS(1)... at 1:43:1:43/+/97.67% +1 107nt, >M01687:476:000000000-LL5F5:1:2116:7315:3521_CONS(1)... * +>Cluster 22 +0 107nt, >M01687:476:000000000-LL5F5:1:1119:16974:21880_CONS(1)... * +>Cluster 23 +0 107nt, >M01687:476:000000000-LL5F5:1:1116:25622:14809_CONS(1)... * +>Cluster 24 +0 104nt, >M01687:476:000000000-LL5F5:1:1102:22420:6922_CONS(14)... at 1:104:1:107/+/100.00% +1 103nt, >M01687:476:000000000-LL5F5:1:1102:17446:8415_CONS(11)... at 1:103:1:107/+/100.00% +2 105nt, >M01687:476:000000000-LL5F5:1:1101:10308:14243_CONS(1)... at 1:105:1:107/+/100.00% +3 45nt, >M01687:476:000000000-LL5F5:1:2115:3223:14506_CONS(1)... at 1:45:1:45/+/97.78% +4 103nt, >M01687:476:000000000-LL5F5:1:2104:9434:21708_CONS(1)... at 1:103:1:107/+/99.03% +5 107nt, >M01687:476:000000000-LL5F5:1:1113:10520:13811_CONS(2)... * +6 103nt, >M01687:476:000000000-LL5F5:1:1109:14806:8100_CONS(1)... at 1:103:1:106/+/100.00% +7 104nt, >M01687:476:000000000-LL5F5:1:1106:24176:12265_CONS(1)... at 1:104:1:107/+/98.08% +8 103nt, >M01687:476:000000000-LL5F5:1:2119:9040:9268_CONS(1)... at 1:103:1:107/+/99.03% +>Cluster 25 +0 107nt, >M01687:476:000000000-LL5F5:1:1112:21975:7070_CONS(1)... * +>Cluster 26 +0 42nt, >M01687:476:000000000-LL5F5:1:1113:20588:12566_CONS(1)... at 1:42:1:42/+/97.62% +1 107nt, >M01687:476:000000000-LL5F5:1:1109:25206:7031_CONS(1)... * +>Cluster 27 +0 107nt, >M01687:476:000000000-LL5F5:1:1118:28450:15716_CONS(1)... * +>Cluster 28 +0 29nt, >M01687:476:000000000-LL5F5:1:1112:5766:20154_CONS(1)... at 1:29:1:29/+/100.00% +1 107nt, >M01687:476:000000000-LL5F5:1:1117:21093:17468_CONS(1)... * +>Cluster 29 +0 106nt, >M01687:476:000000000-LL5F5:1:1108:26640:21523_CONS(1)... * +>Cluster 30 +0 38nt, >M01687:476:000000000-LL5F5:1:1102:19824:17483_CONS(2)... at 1:38:1:38/+/100.00% +1 38nt, >M01687:476:000000000-LL5F5:1:2111:22864:12563_CONS(1)... at 1:38:1:38/+/97.37% +2 39nt, >M01687:476:000000000-LL5F5:1:2107:16753:18304_CONS(1)... at 1:39:1:39/+/97.44% +3 105nt, >M01687:476:000000000-LL5F5:1:2105:27179:11787_CONS(1)... * +4 38nt, >M01687:476:000000000-LL5F5:1:1119:23589:2930_CONS(2)... at 1:38:1:38/+/97.37% +5 37nt, >M01687:476:000000000-LL5F5:1:1114:22107:9109_CONS(1)... at 1:37:1:37/+/97.30% +6 39nt, >M01687:476:000000000-LL5F5:1:1105:16525:22500_CONS(1)... at 1:39:1:39/+/97.44% +>Cluster 31 +0 103nt, >M01687:476:000000000-LL5F5:1:2115:20529:5673_CONS(1)... at 1:103:1:105/+/99.03% +1 101nt, >M01687:476:000000000-LL5F5:1:2113:21467:3086_CONS(4)... at 1:101:1:105/+/98.02% +2 48nt, >M01687:476:000000000-LL5F5:1:2113:18360:13147_CONS(1)... at 1:48:1:48/+/97.92% +3 55nt, >M01687:476:000000000-LL5F5:1:2108:24288:4930_CONS(1)... at 1:55:1:55/+/98.18% +4 40nt, >M01687:476:000000000-LL5F5:1:2106:2866:11568_CONS(1)... at 1:40:1:40/+/97.50% +5 101nt, >M01687:476:000000000-LL5F5:1:2107:10127:13808_CONS(1)... at 1:101:1:105/+/97.03% +6 54nt, >M01687:476:000000000-LL5F5:1:2105:17430:10120_CONS(1)... at 1:54:1:54/+/98.15% +7 53nt, >M01687:476:000000000-LL5F5:1:1115:4601:15786_CONS(1)... at 1:53:1:53/+/98.11% +8 55nt, >M01687:476:000000000-LL5F5:1:1112:21203:5991_CONS(1)... at 1:55:1:55/+/100.00% +9 90nt, >M01687:476:000000000-LL5F5:1:1110:22390:18470_CONS(1)... at 1:90:1:90/+/100.00% +10 105nt, >M01687:476:000000000-LL5F5:1:1110:7891:22585_CONS(1)... * +11 48nt, >M01687:476:000000000-LL5F5:1:1108:5298:4738_CONS(1)... at 1:48:1:48/+/100.00% +12 45nt, >M01687:476:000000000-LL5F5:1:1106:28624:9225_CONS(1)... at 1:45:1:45/+/100.00% +13 48nt, >M01687:476:000000000-LL5F5:1:1117:15339:2173_CONS(1)... at 1:48:1:48/+/97.92% +>Cluster 32 +0 105nt, >M01687:476:000000000-LL5F5:1:1105:17163:16675_CONS(1)... * +>Cluster 33 +0 102nt, >M01687:476:000000000-LL5F5:1:1102:10258:2622_CONS(10)... * +1 102nt, >M01687:476:000000000-LL5F5:1:1101:10128:2904_CONS(1)... at 1:102:1:102/+/99.02% +2 102nt, >M01687:476:000000000-LL5F5:1:2106:11719:9654_CONS(1)... at 1:102:1:102/+/98.04% +3 101nt, >M01687:476:000000000-LL5F5:1:2117:4917:19091_CONS(1)... at 1:101:1:101/+/99.01% +4 101nt, >M01687:476:000000000-LL5F5:1:1108:20131:20425_CONS(1)... at 1:101:1:102/+/100.00% +5 101nt, >M01687:476:000000000-LL5F5:1:1105:18407:1630_CONS(1)... at 1:101:1:102/+/99.01% +>Cluster 34 +0 102nt, >M01687:476:000000000-LL5F5:1:1106:6575:6807_CONS(1)... * +>Cluster 35 +0 102nt, >M01687:476:000000000-LL5F5:1:2119:24807:6336_CONS(1)... * +>Cluster 36 +0 100nt, >M01687:476:000000000-LL5F5:1:1102:15762:1349_CONS(128)... at 1:100:2:101/+/97.00% +1 100nt, >M01687:476:000000000-LL5F5:1:1102:22675:1767_CONS(798)... at 1:100:2:101/+/97.00% +2 100nt, >M01687:476:000000000-LL5F5:1:1102:8805:1989_CONS(2326)... at 1:100:2:101/+/100.00% +3 100nt, >M01687:476:000000000-LL5F5:1:1102:7974:2184_CONS(1)... at 1:100:2:101/+/99.00% +4 100nt, >M01687:476:000000000-LL5F5:1:1102:16974:5175_CONS(1)... at 1:100:2:101/+/98.00% +5 100nt, >M01687:476:000000000-LL5F5:1:1102:19459:6329_CONS(56)... at 1:100:2:101/+/99.00% +6 100nt, >M01687:476:000000000-LL5F5:1:1102:7040:7089_CONS(1)... at 1:100:2:101/+/98.00% +7 101nt, >M01687:476:000000000-LL5F5:1:1102:25046:13430_CONS(2)... * +8 100nt, >M01687:476:000000000-LL5F5:1:1101:20454:2106_CONS(1)... at 1:100:2:101/+/99.00% +9 100nt, >M01687:476:000000000-LL5F5:1:1101:20752:2522_CONS(38)... at 1:100:2:101/+/99.00% +10 99nt, >M01687:476:000000000-LL5F5:1:1101:24588:10461_CONS(2)... at 1:99:2:101/+/100.00% +11 100nt, >M01687:476:000000000-LL5F5:1:1101:1806:14188_CONS(30)... at 1:100:2:101/+/99.00% +12 100nt, >M01687:476:000000000-LL5F5:1:1101:26941:15945_CONS(6)... at 1:100:2:101/+/97.00% +13 100nt, >M01687:476:000000000-LL5F5:1:1101:21408:22193_CONS(2)... at 1:100:2:101/+/99.00% +14 100nt, >M01687:476:000000000-LL5F5:1:1101:13213:23184_CONS(4)... at 1:100:2:101/+/99.00% +15 100nt, >M01687:476:000000000-LL5F5:1:1101:9918:23868_CONS(2)... at 1:100:2:101/+/99.00% +16 100nt, >M01687:476:000000000-LL5F5:1:2115:13926:2591_CONS(2)... at 1:100:2:101/+/99.00% +17 100nt, >M01687:476:000000000-LL5F5:1:2115:10422:6330_CONS(8)... at 1:100:2:101/+/99.00% +18 100nt, >M01687:476:000000000-LL5F5:1:2115:13201:9496_CONS(1)... at 1:100:2:101/+/99.00% +19 99nt, >M01687:476:000000000-LL5F5:1:2115:24220:14451_CONS(1)... at 1:99:2:101/+/98.99% +20 100nt, >M01687:476:000000000-LL5F5:1:2115:7115:15997_CONS(7)... at 1:100:2:101/+/99.00% +21 100nt, >M01687:476:000000000-LL5F5:1:2115:9660:16643_CONS(8)... at 1:100:2:101/+/99.00% +22 100nt, >M01687:476:000000000-LL5F5:1:2115:19693:20631_CONS(3)... at 1:100:2:101/+/99.00% +23 100nt, >M01687:476:000000000-LL5F5:1:2114:14140:4703_CONS(3)... at 1:100:2:101/+/99.00% +24 99nt, >M01687:476:000000000-LL5F5:1:2114:21340:10613_CONS(13)... at 1:99:2:101/+/100.00% +25 100nt, >M01687:476:000000000-LL5F5:1:2114:2130:11163_CONS(1)... at 1:100:2:101/+/97.00% +26 100nt, >M01687:476:000000000-LL5F5:1:2114:29530:12859_CONS(1)... at 1:100:2:101/+/99.00% +27 100nt, >M01687:476:000000000-LL5F5:1:2114:18250:15813_CONS(3)... at 1:100:2:101/+/99.00% +28 100nt, >M01687:476:000000000-LL5F5:1:2114:23528:18269_CONS(1)... at 1:100:2:101/+/99.00% +29 100nt, >M01687:476:000000000-LL5F5:1:2114:18595:18343_CONS(1)... at 1:100:2:101/+/99.00% +30 100nt, >M01687:476:000000000-LL5F5:1:2114:14518:19367_CONS(4)... at 1:100:2:101/+/99.00% +31 99nt, >M01687:476:000000000-LL5F5:1:2113:8097:8750_CONS(2)... at 1:99:2:101/+/98.99% +32 100nt, >M01687:476:000000000-LL5F5:1:2113:18988:8987_CONS(2)... at 1:100:2:101/+/99.00% +33 100nt, >M01687:476:000000000-LL5F5:1:2113:12261:9067_CONS(3)... at 1:100:2:101/+/99.00% +34 99nt, >M01687:476:000000000-LL5F5:1:2113:7616:11302_CONS(6)... at 1:99:2:101/+/100.00% +35 100nt, >M01687:476:000000000-LL5F5:1:2113:19476:20542_CONS(3)... at 1:100:2:101/+/99.00% +36 100nt, >M01687:476:000000000-LL5F5:1:2113:8688:21716_CONS(3)... at 1:100:2:101/+/99.00% +37 100nt, >M01687:476:000000000-LL5F5:1:2113:5909:22325_CONS(1)... at 1:100:2:101/+/98.00% +38 100nt, >M01687:476:000000000-LL5F5:1:2112:22558:3317_CONS(1)... at 1:100:2:101/+/99.00% +39 99nt, >M01687:476:000000000-LL5F5:1:2112:13865:4124_CONS(4)... at 1:99:2:101/+/98.99% +40 100nt, >M01687:476:000000000-LL5F5:1:2112:10735:5311_CONS(2)... at 1:100:2:101/+/99.00% +41 100nt, >M01687:476:000000000-LL5F5:1:2112:20374:9096_CONS(1)... at 1:100:2:101/+/98.00% +42 99nt, >M01687:476:000000000-LL5F5:1:2112:4987:9873_CONS(3)... at 1:99:2:100/+/100.00% +43 100nt, >M01687:476:000000000-LL5F5:1:2112:15623:11917_CONS(2)... at 1:100:2:101/+/99.00% +44 100nt, >M01687:476:000000000-LL5F5:1:2112:28506:15197_CONS(5)... at 1:100:2:101/+/99.00% +45 100nt, >M01687:476:000000000-LL5F5:1:2112:7549:20716_CONS(4)... at 1:100:2:101/+/99.00% +46 100nt, >M01687:476:000000000-LL5F5:1:2112:5659:22272_CONS(1)... at 1:100:2:101/+/99.00% +47 100nt, >M01687:476:000000000-LL5F5:1:2112:23244:23818_CONS(3)... at 1:100:2:101/+/99.00% +48 100nt, >M01687:476:000000000-LL5F5:1:2111:7498:2152_CONS(2)... at 1:100:2:101/+/99.00% +49 100nt, >M01687:476:000000000-LL5F5:1:2111:11489:4986_CONS(3)... at 1:100:2:101/+/99.00% +50 100nt, >M01687:476:000000000-LL5F5:1:2111:26734:9344_CONS(2)... at 1:100:2:101/+/99.00% +51 100nt, >M01687:476:000000000-LL5F5:1:2111:22483:9582_CONS(2)... at 1:100:2:101/+/99.00% +52 100nt, >M01687:476:000000000-LL5F5:1:2111:12455:13073_CONS(4)... at 1:100:2:101/+/99.00% +53 100nt, >M01687:476:000000000-LL5F5:1:2111:23537:20477_CONS(1)... at 1:100:2:101/+/99.00% +54 100nt, >M01687:476:000000000-LL5F5:1:2111:20812:22698_CONS(1)... at 1:100:2:101/+/99.00% +55 100nt, >M01687:476:000000000-LL5F5:1:2110:5156:4133_CONS(6)... at 1:100:2:101/+/99.00% +56 101nt, >M01687:476:000000000-LL5F5:1:2110:26714:8148_CONS(1)... at 1:101:2:101/+/98.02% +57 100nt, >M01687:476:000000000-LL5F5:1:2110:25589:8986_CONS(1)... at 1:100:2:101/+/99.00% +58 100nt, >M01687:476:000000000-LL5F5:1:2110:14593:12199_CONS(1)... at 1:100:2:101/+/99.00% +59 100nt, >M01687:476:000000000-LL5F5:1:2110:24387:18330_CONS(6)... at 1:100:2:101/+/99.00% +60 100nt, >M01687:476:000000000-LL5F5:1:2109:10010:3754_CONS(1)... at 1:100:2:101/+/99.00% +61 100nt, >M01687:476:000000000-LL5F5:1:2109:10429:4550_CONS(1)... at 1:100:2:101/+/99.00% +62 100nt, >M01687:476:000000000-LL5F5:1:2109:11598:12389_CONS(3)... at 1:100:2:101/+/99.00% +63 100nt, >M01687:476:000000000-LL5F5:1:2109:7080:13549_CONS(3)... at 1:100:2:101/+/99.00% +64 100nt, >M01687:476:000000000-LL5F5:1:2109:15536:14532_CONS(2)... at 1:100:2:101/+/99.00% +65 99nt, >M01687:476:000000000-LL5F5:1:2109:13761:19241_CONS(1)... at 1:99:2:101/+/98.99% +66 99nt, >M01687:476:000000000-LL5F5:1:2109:15995:21846_CONS(2)... at 1:99:3:101/+/100.00% +67 99nt, >M01687:476:000000000-LL5F5:1:2108:10143:8312_CONS(4)... at 1:99:2:100/+/98.99% +68 100nt, >M01687:476:000000000-LL5F5:1:2108:26976:9388_CONS(5)... at 1:100:2:101/+/99.00% +69 100nt, >M01687:476:000000000-LL5F5:1:2108:25058:14995_CONS(2)... at 1:100:2:101/+/99.00% +70 99nt, >M01687:476:000000000-LL5F5:1:2106:6418:4332_CONS(2)... at 1:99:2:101/+/100.00% +71 100nt, >M01687:476:000000000-LL5F5:1:2106:22682:5338_CONS(1)... at 1:100:2:101/+/99.00% +72 100nt, >M01687:476:000000000-LL5F5:1:2106:9967:10982_CONS(4)... at 1:100:2:101/+/99.00% +73 100nt, >M01687:476:000000000-LL5F5:1:2106:23714:12251_CONS(1)... at 1:100:2:101/+/99.00% +74 100nt, >M01687:476:000000000-LL5F5:1:2106:22340:23159_CONS(5)... at 1:100:2:101/+/99.00% +75 100nt, >M01687:476:000000000-LL5F5:1:2107:21395:6336_CONS(1)... at 1:100:2:101/+/98.00% +76 100nt, >M01687:476:000000000-LL5F5:1:2107:23367:8988_CONS(2)... at 1:100:2:101/+/99.00% +77 100nt, >M01687:476:000000000-LL5F5:1:2107:19991:11481_CONS(2)... at 1:100:2:101/+/97.00% +78 100nt, >M01687:476:000000000-LL5F5:1:2107:16929:22773_CONS(2)... at 1:100:2:101/+/99.00% +79 100nt, >M01687:476:000000000-LL5F5:1:2104:11051:4423_CONS(3)... at 1:100:2:101/+/99.00% +80 100nt, >M01687:476:000000000-LL5F5:1:2104:6994:21862_CONS(1)... at 1:100:2:101/+/99.00% +81 100nt, >M01687:476:000000000-LL5F5:1:2105:6627:7366_CONS(1)... at 1:100:2:101/+/99.00% +82 100nt, >M01687:476:000000000-LL5F5:1:2105:18982:17909_CONS(6)... at 1:100:2:101/+/99.00% +83 100nt, >M01687:476:000000000-LL5F5:1:2105:5797:20178_CONS(1)... at 1:100:2:101/+/99.00% +84 100nt, >M01687:476:000000000-LL5F5:1:2105:25478:20605_CONS(1)... at 1:100:2:101/+/98.00% +85 100nt, >M01687:476:000000000-LL5F5:1:2102:16554:4447_CONS(1)... at 1:100:2:101/+/99.00% +86 100nt, >M01687:476:000000000-LL5F5:1:2102:4625:5053_CONS(2)... at 1:100:2:101/+/99.00% +87 100nt, >M01687:476:000000000-LL5F5:1:2102:27543:8242_CONS(2)... at 1:100:2:101/+/99.00% +88 100nt, >M01687:476:000000000-LL5F5:1:2102:27913:11712_CONS(1)... at 1:100:2:101/+/98.00% +89 100nt, >M01687:476:000000000-LL5F5:1:2102:21447:17903_CONS(3)... at 1:100:2:101/+/99.00% +90 100nt, >M01687:476:000000000-LL5F5:1:2102:27674:18116_CONS(1)... at 1:100:2:101/+/99.00% +91 100nt, >M01687:476:000000000-LL5F5:1:2103:11225:4819_CONS(1)... at 1:100:2:101/+/99.00% +92 100nt, >M01687:476:000000000-LL5F5:1:2103:13095:12184_CONS(1)... at 1:100:2:101/+/99.00% +93 99nt, >M01687:476:000000000-LL5F5:1:2103:8738:12800_CONS(1)... at 1:99:2:101/+/100.00% +94 100nt, >M01687:476:000000000-LL5F5:1:2103:14900:14862_CONS(3)... at 1:100:2:101/+/99.00% +95 100nt, >M01687:476:000000000-LL5F5:1:2103:12125:14906_CONS(1)... at 1:100:2:101/+/99.00% +96 100nt, >M01687:476:000000000-LL5F5:1:2103:7443:15215_CONS(1)... at 1:100:2:101/+/99.00% +97 100nt, >M01687:476:000000000-LL5F5:1:2103:11977:18317_CONS(3)... at 1:100:2:101/+/99.00% +98 100nt, >M01687:476:000000000-LL5F5:1:2103:19104:18955_CONS(1)... at 1:100:2:101/+/99.00% +99 100nt, >M01687:476:000000000-LL5F5:1:2103:21688:18991_CONS(1)... at 1:100:2:101/+/99.00% +100 100nt, >M01687:476:000000000-LL5F5:1:2116:5396:4378_CONS(1)... at 1:100:2:101/+/98.00% +101 100nt, >M01687:476:000000000-LL5F5:1:2116:26743:11270_CONS(2)... at 1:100:2:101/+/99.00% +102 101nt, >M01687:476:000000000-LL5F5:1:2117:29685:12428_CONS(2)... at 1:101:1:101/+/98.02% +103 100nt, >M01687:476:000000000-LL5F5:1:2117:22812:13166_CONS(1)... at 1:100:2:101/+/99.00% +104 100nt, >M01687:476:000000000-LL5F5:1:2117:22569:15163_CONS(2)... at 1:100:2:101/+/99.00% +105 100nt, >M01687:476:000000000-LL5F5:1:1119:21991:3026_CONS(1)... at 1:100:2:101/+/98.00% +106 100nt, >M01687:476:000000000-LL5F5:1:1119:9047:4530_CONS(1)... at 1:100:2:101/+/99.00% +107 100nt, >M01687:476:000000000-LL5F5:1:1119:8155:6913_CONS(1)... at 1:100:2:101/+/99.00% +108 100nt, >M01687:476:000000000-LL5F5:1:1119:9040:11471_CONS(1)... at 1:100:2:101/+/99.00% +109 99nt, >M01687:476:000000000-LL5F5:1:2101:7549:5365_CONS(3)... at 1:99:2:101/+/100.00% +110 100nt, >M01687:476:000000000-LL5F5:1:2101:14736:14075_CONS(1)... at 1:100:2:101/+/98.00% +111 100nt, >M01687:476:000000000-LL5F5:1:2101:13614:14355_CONS(2)... at 1:100:2:101/+/99.00% +112 100nt, >M01687:476:000000000-LL5F5:1:2101:12408:18396_CONS(2)... at 1:100:2:101/+/99.00% +113 100nt, >M01687:476:000000000-LL5F5:1:1115:6234:5095_CONS(1)... at 1:100:2:101/+/98.00% +114 100nt, >M01687:476:000000000-LL5F5:1:1115:8777:11312_CONS(2)... at 1:100:2:101/+/99.00% +115 100nt, >M01687:476:000000000-LL5F5:1:1115:16232:12695_CONS(1)... at 1:100:2:101/+/99.00% +116 99nt, >M01687:476:000000000-LL5F5:1:1115:19234:13460_CONS(2)... at 1:99:2:101/+/100.00% +117 100nt, >M01687:476:000000000-LL5F5:1:1115:11779:16709_CONS(1)... at 1:100:2:101/+/99.00% +118 100nt, >M01687:476:000000000-LL5F5:1:1115:12001:18634_CONS(1)... at 1:100:2:101/+/99.00% +119 100nt, >M01687:476:000000000-LL5F5:1:1116:29130:13466_CONS(1)... at 1:100:2:101/+/99.00% +120 99nt, >M01687:476:000000000-LL5F5:1:1116:26840:14010_CONS(4)... at 1:99:2:101/+/100.00% +121 100nt, >M01687:476:000000000-LL5F5:1:1116:22493:16321_CONS(1)... at 1:100:2:101/+/98.00% +122 99nt, >M01687:476:000000000-LL5F5:1:1116:24626:18552_CONS(1)... at 1:99:2:101/+/98.99% +123 100nt, >M01687:476:000000000-LL5F5:1:1116:7617:21034_CONS(1)... at 1:100:2:101/+/99.00% +124 100nt, >M01687:476:000000000-LL5F5:1:1114:23921:7341_CONS(1)... at 1:100:2:101/+/99.00% +125 100nt, >M01687:476:000000000-LL5F5:1:1114:27718:9614_CONS(1)... at 1:100:2:101/+/98.00% +126 100nt, >M01687:476:000000000-LL5F5:1:1114:5454:14374_CONS(1)... at 1:100:2:101/+/99.00% +127 100nt, >M01687:476:000000000-LL5F5:1:1113:25509:11572_CONS(1)... at 1:100:2:101/+/99.00% +128 100nt, >M01687:476:000000000-LL5F5:1:1113:14681:14498_CONS(2)... at 1:100:2:101/+/99.00% +129 100nt, >M01687:476:000000000-LL5F5:1:1113:5586:21826_CONS(2)... at 1:100:2:101/+/98.00% +130 100nt, >M01687:476:000000000-LL5F5:1:1112:29177:10451_CONS(1)... at 1:100:2:101/+/99.00% +131 100nt, >M01687:476:000000000-LL5F5:1:1112:28783:14822_CONS(5)... at 1:100:2:101/+/99.00% +132 99nt, >M01687:476:000000000-LL5F5:1:1112:5130:14879_CONS(1)... at 1:99:2:101/+/100.00% +133 100nt, >M01687:476:000000000-LL5F5:1:1112:18658:21695_CONS(1)... at 1:100:2:101/+/99.00% +134 99nt, >M01687:476:000000000-LL5F5:1:1111:19237:15146_CONS(1)... at 1:99:2:100/+/98.99% +135 97nt, >M01687:476:000000000-LL5F5:1:1111:9008:20941_CONS(1)... at 1:97:3:101/+/98.97% +136 100nt, >M01687:476:000000000-LL5F5:1:1111:6195:22086_CONS(1)... at 1:100:2:101/+/99.00% +137 100nt, >M01687:476:000000000-LL5F5:1:1111:20965:23329_CONS(1)... at 1:100:2:101/+/99.00% +138 100nt, >M01687:476:000000000-LL5F5:1:1110:16106:3572_CONS(1)... at 1:100:2:101/+/99.00% +139 100nt, >M01687:476:000000000-LL5F5:1:1110:23438:7088_CONS(1)... at 1:100:2:101/+/99.00% +140 100nt, >M01687:476:000000000-LL5F5:1:1110:15583:20963_CONS(1)... at 1:100:2:101/+/99.00% +141 100nt, >M01687:476:000000000-LL5F5:1:1110:14533:21873_CONS(1)... at 1:100:2:101/+/98.00% +142 100nt, >M01687:476:000000000-LL5F5:1:1109:11438:1489_CONS(1)... at 1:100:2:101/+/99.00% +143 99nt, >M01687:476:000000000-LL5F5:1:1109:14592:5022_CONS(1)... at 1:99:2:101/+/98.99% +144 99nt, >M01687:476:000000000-LL5F5:1:1109:25697:11036_CONS(1)... at 1:99:2:100/+/98.99% +145 100nt, >M01687:476:000000000-LL5F5:1:1109:21736:13602_CONS(1)... at 1:100:2:101/+/99.00% +146 100nt, >M01687:476:000000000-LL5F5:1:1109:24781:18566_CONS(1)... at 1:100:2:101/+/98.00% +147 99nt, >M01687:476:000000000-LL5F5:1:1109:17340:20270_CONS(1)... at 1:99:2:101/+/100.00% +148 99nt, >M01687:476:000000000-LL5F5:1:1108:12050:8464_CONS(2)... at 1:99:2:101/+/100.00% +149 100nt, >M01687:476:000000000-LL5F5:1:1108:20947:8800_CONS(2)... at 1:100:2:101/+/99.00% +150 100nt, >M01687:476:000000000-LL5F5:1:1108:25201:9435_CONS(1)... at 1:100:2:101/+/99.00% +151 100nt, >M01687:476:000000000-LL5F5:1:1108:4030:19680_CONS(1)... at 1:100:2:101/+/99.00% +152 100nt, >M01687:476:000000000-LL5F5:1:1108:18710:21550_CONS(1)... at 1:100:2:101/+/99.00% +153 100nt, >M01687:476:000000000-LL5F5:1:1107:12888:6140_CONS(1)... at 1:100:2:101/+/98.00% +154 100nt, >M01687:476:000000000-LL5F5:1:1107:29131:11077_CONS(1)... at 1:100:2:101/+/98.00% +155 100nt, >M01687:476:000000000-LL5F5:1:1107:7355:13686_CONS(1)... at 1:100:2:101/+/99.00% +156 100nt, >M01687:476:000000000-LL5F5:1:1107:27188:16551_CONS(1)... at 1:100:2:101/+/98.00% +157 99nt, >M01687:476:000000000-LL5F5:1:1106:8966:1464_CONS(1)... at 1:99:2:101/+/97.98% +158 100nt, >M01687:476:000000000-LL5F5:1:1106:12935:1747_CONS(1)... at 1:100:2:101/+/99.00% +159 100nt, >M01687:476:000000000-LL5F5:1:1106:19967:2877_CONS(1)... at 1:100:2:101/+/99.00% +160 100nt, >M01687:476:000000000-LL5F5:1:1106:26705:10674_CONS(1)... at 1:100:2:101/+/99.00% +161 100nt, >M01687:476:000000000-LL5F5:1:1106:18129:12606_CONS(1)... at 1:100:2:101/+/99.00% +162 100nt, >M01687:476:000000000-LL5F5:1:1106:10796:15241_CONS(1)... at 1:100:2:101/+/98.00% +163 100nt, >M01687:476:000000000-LL5F5:1:1106:27387:19799_CONS(1)... at 1:100:2:101/+/99.00% +164 100nt, >M01687:476:000000000-LL5F5:1:1105:18533:1906_CONS(1)... at 1:100:2:101/+/99.00% +165 99nt, >M01687:476:000000000-LL5F5:1:1105:18760:2223_CONS(1)... at 1:99:2:101/+/100.00% +166 100nt, >M01687:476:000000000-LL5F5:1:1105:22915:12264_CONS(1)... at 1:100:2:101/+/99.00% +167 99nt, >M01687:476:000000000-LL5F5:1:1105:15185:23117_CONS(1)... at 1:99:2:101/+/100.00% +168 100nt, >M01687:476:000000000-LL5F5:1:1104:21530:1573_CONS(1)... at 1:100:2:101/+/99.00% +169 100nt, >M01687:476:000000000-LL5F5:1:1104:11383:10658_CONS(1)... at 1:100:2:101/+/99.00% +170 100nt, >M01687:476:000000000-LL5F5:1:1104:27118:11157_CONS(1)... at 1:100:2:101/+/99.00% +171 100nt, >M01687:476:000000000-LL5F5:1:1104:8816:13630_CONS(1)... at 1:100:2:101/+/99.00% +172 100nt, >M01687:476:000000000-LL5F5:1:1104:3297:15273_CONS(1)... at 1:100:2:101/+/99.00% +173 99nt, >M01687:476:000000000-LL5F5:1:1104:15176:19018_CONS(1)... at 1:99:2:101/+/100.00% +174 100nt, >M01687:476:000000000-LL5F5:1:1104:22496:23060_CONS(1)... at 1:100:2:101/+/99.00% +175 100nt, >M01687:476:000000000-LL5F5:1:1103:8438:13444_CONS(1)... at 1:100:2:101/+/99.00% +176 100nt, >M01687:476:000000000-LL5F5:1:1103:2506:15602_CONS(1)... at 1:100:2:101/+/98.00% +177 99nt, >M01687:476:000000000-LL5F5:1:1103:16444:15621_CONS(2)... at 1:99:3:101/+/98.99% +178 100nt, >M01687:476:000000000-LL5F5:1:1103:24750:18194_CONS(1)... at 1:100:2:101/+/98.00% +179 100nt, >M01687:476:000000000-LL5F5:1:1118:20278:14890_CONS(1)... at 1:100:2:101/+/99.00% +180 100nt, >M01687:476:000000000-LL5F5:1:1117:26898:8426_CONS(1)... at 1:100:2:101/+/99.00% +181 100nt, >M01687:476:000000000-LL5F5:1:2118:16264:2565_CONS(1)... at 1:100:2:101/+/99.00% +182 98nt, >M01687:476:000000000-LL5F5:1:2118:13915:2653_CONS(1)... at 1:98:2:101/+/100.00% +183 99nt, >M01687:476:000000000-LL5F5:1:2118:6664:4270_CONS(1)... at 1:99:2:101/+/100.00% +184 100nt, >M01687:476:000000000-LL5F5:1:2118:16622:18826_CONS(1)... at 1:100:2:101/+/99.00% +185 100nt, >M01687:476:000000000-LL5F5:1:2119:3017:7758_CONS(2)... at 1:100:2:101/+/98.00% +>Cluster 37 +0 100nt, >M01687:476:000000000-LL5F5:1:1102:24520:4332_CONS(4)... at 1:100:1:101/+/99.00% +1 99nt, >M01687:476:000000000-LL5F5:1:1102:13097:24230_CONS(8)... at 1:99:1:101/+/100.00% +2 100nt, >M01687:476:000000000-LL5F5:1:1101:9964:8086_CONS(1)... at 1:100:1:101/+/99.00% +3 100nt, >M01687:476:000000000-LL5F5:1:1101:28196:16075_CONS(1)... at 1:100:1:101/+/99.00% +4 99nt, >M01687:476:000000000-LL5F5:1:2115:27413:20698_CONS(2)... at 1:99:2:101/+/98.99% +5 100nt, >M01687:476:000000000-LL5F5:1:2115:23170:21839_CONS(1)... at 1:100:1:101/+/99.00% +6 100nt, >M01687:476:000000000-LL5F5:1:2114:23028:8433_CONS(1)... at 1:100:1:101/+/99.00% +7 100nt, >M01687:476:000000000-LL5F5:1:2114:17809:9076_CONS(2)... at 1:100:1:101/+/99.00% +8 101nt, >M01687:476:000000000-LL5F5:1:2114:3414:14009_CONS(1)... * +9 100nt, >M01687:476:000000000-LL5F5:1:2114:12825:15991_CONS(1)... at 1:100:1:101/+/99.00% +10 100nt, >M01687:476:000000000-LL5F5:1:2114:21099:18173_CONS(3)... at 1:100:1:101/+/97.00% +11 100nt, >M01687:476:000000000-LL5F5:1:2113:7543:2912_CONS(1)... at 1:100:1:101/+/99.00% +12 100nt, >M01687:476:000000000-LL5F5:1:2113:4331:6490_CONS(1)... at 1:100:1:101/+/99.00% +13 100nt, >M01687:476:000000000-LL5F5:1:2113:21627:21553_CONS(2)... at 1:100:1:101/+/99.00% +14 100nt, >M01687:476:000000000-LL5F5:1:2113:22214:22893_CONS(1)... at 1:100:1:101/+/99.00% +15 100nt, >M01687:476:000000000-LL5F5:1:2113:10034:23616_CONS(3)... at 1:100:1:101/+/99.00% +16 100nt, >M01687:476:000000000-LL5F5:1:2112:27785:7578_CONS(1)... at 1:100:1:101/+/99.00% +17 100nt, >M01687:476:000000000-LL5F5:1:2112:10834:15261_CONS(2)... at 1:100:1:101/+/99.00% +18 100nt, >M01687:476:000000000-LL5F5:1:2112:18606:19770_CONS(1)... at 1:100:1:101/+/99.00% +19 99nt, >M01687:476:000000000-LL5F5:1:2111:15389:4588_CONS(2)... at 1:99:1:100/+/100.00% +20 100nt, >M01687:476:000000000-LL5F5:1:2111:2583:8386_CONS(1)... at 1:100:1:101/+/99.00% +21 100nt, >M01687:476:000000000-LL5F5:1:2111:13469:17023_CONS(3)... at 1:100:1:101/+/99.00% +22 100nt, >M01687:476:000000000-LL5F5:1:2111:19515:22194_CONS(1)... at 1:100:1:101/+/99.00% +23 100nt, >M01687:476:000000000-LL5F5:1:2110:11780:3424_CONS(1)... at 1:100:1:101/+/99.00% +24 101nt, >M01687:476:000000000-LL5F5:1:2110:6219:14304_CONS(1)... at 1:101:1:101/+/97.03% +25 99nt, >M01687:476:000000000-LL5F5:1:2109:15565:1238_CONS(1)... at 1:99:1:100/+/98.99% +26 100nt, >M01687:476:000000000-LL5F5:1:2109:13780:1715_CONS(2)... at 1:100:1:101/+/99.00% +27 99nt, >M01687:476:000000000-LL5F5:1:2109:20695:3086_CONS(1)... at 1:99:1:101/+/100.00% +28 100nt, >M01687:476:000000000-LL5F5:1:2109:5168:6990_CONS(4)... at 1:100:1:101/+/99.00% +29 101nt, >M01687:476:000000000-LL5F5:1:2109:10237:13517_CONS(1)... at 1:100:1:101/+/98.02% +30 100nt, >M01687:476:000000000-LL5F5:1:2109:24603:19288_CONS(1)... at 1:100:1:101/+/99.00% +31 100nt, >M01687:476:000000000-LL5F5:1:2108:25287:16160_CONS(1)... at 1:100:1:101/+/99.00% +32 100nt, >M01687:476:000000000-LL5F5:1:2106:15855:3540_CONS(1)... at 1:100:1:101/+/99.00% +33 99nt, >M01687:476:000000000-LL5F5:1:2106:11649:7428_CONS(1)... at 1:99:1:101/+/98.99% +34 100nt, >M01687:476:000000000-LL5F5:1:2107:9140:5850_CONS(3)... at 1:100:1:101/+/99.00% +35 100nt, >M01687:476:000000000-LL5F5:1:2107:27233:12065_CONS(1)... at 1:100:1:101/+/99.00% +36 100nt, >M01687:476:000000000-LL5F5:1:2107:23215:18271_CONS(3)... at 1:100:1:101/+/99.00% +37 99nt, >M01687:476:000000000-LL5F5:1:2104:24168:2233_CONS(1)... at 1:99:1:101/+/100.00% +38 99nt, >M01687:476:000000000-LL5F5:1:2105:24285:7383_CONS(5)... at 1:99:2:101/+/100.00% +39 101nt, >M01687:476:000000000-LL5F5:1:2105:21730:15639_CONS(1)... at 1:101:1:101/+/97.03% +40 100nt, >M01687:476:000000000-LL5F5:1:2105:14143:19459_CONS(1)... at 1:100:1:101/+/99.00% +41 100nt, >M01687:476:000000000-LL5F5:1:2102:1861:14413_CONS(2)... at 1:100:1:101/+/99.00% +42 100nt, >M01687:476:000000000-LL5F5:1:2103:11338:11493_CONS(1)... at 1:100:1:101/+/99.00% +43 99nt, >M01687:476:000000000-LL5F5:1:2116:22105:2006_CONS(1)... at 1:99:1:101/+/100.00% +44 99nt, >M01687:476:000000000-LL5F5:1:2116:15983:10912_CONS(1)... at 1:99:1:101/+/98.99% +45 101nt, >M01687:476:000000000-LL5F5:1:2117:6218:20224_CONS(2)... at 1:101:1:101/+/99.01% +46 100nt, >M01687:476:000000000-LL5F5:1:2117:22478:21723_CONS(1)... at 1:100:1:101/+/99.00% +47 99nt, >M01687:476:000000000-LL5F5:1:1119:5626:4908_CONS(1)... at 1:99:1:101/+/100.00% +48 100nt, >M01687:476:000000000-LL5F5:1:2101:25227:8517_CONS(1)... at 1:100:1:101/+/99.00% +49 100nt, >M01687:476:000000000-LL5F5:1:2101:11541:8788_CONS(1)... at 1:100:1:101/+/99.00% +50 100nt, >M01687:476:000000000-LL5F5:1:2101:3240:11959_CONS(1)... at 1:100:1:101/+/99.00% +51 100nt, >M01687:476:000000000-LL5F5:1:1115:11998:4284_CONS(1)... at 1:100:1:101/+/98.00% +52 100nt, >M01687:476:000000000-LL5F5:1:1115:18430:13693_CONS(1)... at 1:100:1:101/+/99.00% +53 100nt, >M01687:476:000000000-LL5F5:1:1115:2179:15433_CONS(1)... at 1:100:1:101/+/99.00% +54 100nt, >M01687:476:000000000-LL5F5:1:1115:21467:16540_CONS(1)... at 1:100:1:101/+/97.00% +55 100nt, >M01687:476:000000000-LL5F5:1:1116:12013:2490_CONS(1)... at 1:100:1:101/+/99.00% +56 100nt, >M01687:476:000000000-LL5F5:1:1114:15073:1521_CONS(1)... at 1:100:1:101/+/99.00% +57 99nt, >M01687:476:000000000-LL5F5:1:1114:13615:12040_CONS(1)... at 1:99:1:100/+/98.99% +58 99nt, >M01687:476:000000000-LL5F5:1:1112:12956:11334_CONS(1)... at 1:99:2:101/+/97.98% +59 100nt, >M01687:476:000000000-LL5F5:1:1112:14333:24169_CONS(1)... at 1:100:1:101/+/99.00% +60 100nt, >M01687:476:000000000-LL5F5:1:1111:5391:6006_CONS(1)... at 1:100:1:101/+/97.00% +61 100nt, >M01687:476:000000000-LL5F5:1:1111:14607:18601_CONS(1)... at 1:100:1:101/+/99.00% +62 100nt, >M01687:476:000000000-LL5F5:1:1111:22897:19086_CONS(2)... at 1:100:1:101/+/99.00% +63 99nt, >M01687:476:000000000-LL5F5:1:1110:25417:9723_CONS(1)... at 1:99:1:101/+/100.00% +64 100nt, >M01687:476:000000000-LL5F5:1:1110:3227:18696_CONS(1)... at 1:100:1:101/+/97.00% +65 101nt, >M01687:476:000000000-LL5F5:1:1109:13766:2233_CONS(1)... at 1:101:1:101/+/99.01% +66 97nt, >M01687:476:000000000-LL5F5:1:1109:28018:9416_CONS(1)... at 1:97:1:101/+/100.00% +67 100nt, >M01687:476:000000000-LL5F5:1:1109:23928:10102_CONS(1)... at 1:100:1:101/+/99.00% +68 100nt, >M01687:476:000000000-LL5F5:1:1109:4360:19547_CONS(1)... at 1:100:1:101/+/97.00% +69 99nt, >M01687:476:000000000-LL5F5:1:1108:27224:15940_CONS(1)... at 1:99:1:101/+/98.99% +70 99nt, >M01687:476:000000000-LL5F5:1:1108:15041:21970_CONS(1)... at 1:99:1:101/+/100.00% +71 99nt, >M01687:476:000000000-LL5F5:1:1107:24011:11121_CONS(1)... at 1:99:1:101/+/100.00% +72 99nt, >M01687:476:000000000-LL5F5:1:1107:18897:14033_CONS(1)... at 1:99:1:101/+/100.00% +73 100nt, >M01687:476:000000000-LL5F5:1:1107:9225:22280_CONS(1)... at 1:100:1:101/+/99.00% +74 100nt, >M01687:476:000000000-LL5F5:1:1106:13828:8915_CONS(1)... at 1:100:1:101/+/99.00% +75 100nt, >M01687:476:000000000-LL5F5:1:1106:8091:12945_CONS(1)... at 1:100:1:101/+/99.00% +76 100nt, >M01687:476:000000000-LL5F5:1:1106:21616:20958_CONS(1)... at 1:100:1:101/+/99.00% +77 100nt, >M01687:476:000000000-LL5F5:1:1105:18995:12146_CONS(1)... at 1:100:1:101/+/99.00% +78 55nt, >M01687:476:000000000-LL5F5:1:1105:12472:12792_CONS(1)... at 1:55:1:55/+/100.00% +79 100nt, >M01687:476:000000000-LL5F5:1:1105:22862:18503_CONS(1)... at 1:100:1:101/+/99.00% +80 99nt, >M01687:476:000000000-LL5F5:1:1104:13520:13179_CONS(1)... at 1:99:1:101/+/98.99% +81 99nt, >M01687:476:000000000-LL5F5:1:1104:22261:16227_CONS(1)... at 1:99:1:101/+/100.00% +82 100nt, >M01687:476:000000000-LL5F5:1:1104:10383:22287_CONS(1)... at 1:100:1:101/+/97.00% +83 99nt, >M01687:476:000000000-LL5F5:1:1103:20712:8229_CONS(1)... at 1:99:1:101/+/100.00% +84 100nt, >M01687:476:000000000-LL5F5:1:1103:8601:14997_CONS(1)... at 1:100:1:101/+/99.00% +85 99nt, >M01687:476:000000000-LL5F5:1:1103:22927:18580_CONS(1)... at 1:99:1:101/+/98.99% +86 100nt, >M01687:476:000000000-LL5F5:1:1117:15684:9152_CONS(1)... at 1:100:1:101/+/99.00% +87 99nt, >M01687:476:000000000-LL5F5:1:1117:27139:12480_CONS(1)... at 1:99:1:101/+/100.00% +88 100nt, >M01687:476:000000000-LL5F5:1:1117:21373:18046_CONS(1)... at 1:100:1:101/+/99.00% +89 100nt, >M01687:476:000000000-LL5F5:1:1117:17897:23170_CONS(2)... at 1:100:1:101/+/99.00% +90 100nt, >M01687:476:000000000-LL5F5:1:2118:20189:22855_CONS(1)... at 1:100:1:101/+/98.00% +91 100nt, >M01687:476:000000000-LL5F5:1:2119:6017:16712_CONS(1)... at 1:100:1:101/+/99.00% +92 99nt, >M01687:476:000000000-LL5F5:1:2119:14170:21384_CONS(1)... at 1:99:1:100/+/97.98% +93 100nt, >M01687:476:000000000-LL5F5:1:2119:6184:21691_CONS(2)... at 1:100:1:101/+/99.00% +94 100nt, >M01687:476:000000000-LL5F5:1:2119:19144:22930_CONS(1)... at 1:100:1:101/+/99.00% +>Cluster 38 +0 101nt, >M01687:476:000000000-LL5F5:1:2104:11863:5665_CONS(1)... * +>Cluster 39 +0 101nt, >M01687:476:000000000-LL5F5:1:1104:20414:2080_CONS(1)... * +>Cluster 40 +0 100nt, >M01687:476:000000000-LL5F5:1:1101:10598:24749_CONS(1)... * +1 99nt, >M01687:476:000000000-LL5F5:1:2103:7026:9546_CONS(1)... at 1:99:1:100/+/98.99% +2 99nt, >M01687:476:000000000-LL5F5:1:1113:5993:7834_CONS(1)... at 1:99:1:100/+/98.99% +3 99nt, >M01687:476:000000000-LL5F5:1:1110:25996:12099_CONS(1)... at 1:99:2:100/+/97.98% +4 100nt, >M01687:476:000000000-LL5F5:1:1108:19691:3967_CONS(1)... at 1:100:1:100/+/97.00% +5 99nt, >M01687:476:000000000-LL5F5:1:1103:16964:3678_CONS(1)... at 1:99:1:100/+/98.99% +6 100nt, >M01687:476:000000000-LL5F5:1:2119:7855:12206_CONS(1)... at 1:100:1:100/+/98.00% +7 100nt, >M01687:476:000000000-LL5F5:1:2119:10715:22010_CONS(1)... at 1:100:1:100/+/98.00% +>Cluster 41 +0 100nt, >M01687:476:000000000-LL5F5:1:2104:9295:1391_CONS(1)... * +>Cluster 42 +0 97nt, >M01687:476:000000000-LL5F5:1:1102:8838:1276_CONS(637)... at 1:97:1:100/+/98.97% +1 97nt, >M01687:476:000000000-LL5F5:1:1102:9859:4519_CONS(22)... at 1:97:1:100/+/100.00% +2 97nt, >M01687:476:000000000-LL5F5:1:1102:18815:10725_CONS(7)... at 1:97:1:100/+/97.94% +3 97nt, >M01687:476:000000000-LL5F5:1:1102:10255:11949_CONS(1)... at 1:97:1:100/+/97.94% +4 97nt, >M01687:476:000000000-LL5F5:1:1102:28032:12737_CONS(2)... at 1:97:1:100/+/97.94% +5 97nt, >M01687:476:000000000-LL5F5:1:1102:12053:14010_CONS(33)... at 1:97:1:100/+/97.94% +6 97nt, >M01687:476:000000000-LL5F5:1:1102:4185:14054_CONS(47)... at 1:97:1:100/+/97.94% +7 97nt, >M01687:476:000000000-LL5F5:1:1101:19014:16715_CONS(1)... at 1:97:1:100/+/98.97% +8 97nt, >M01687:476:000000000-LL5F5:1:1101:22935:16780_CONS(1)... at 1:97:1:100/+/97.94% +9 97nt, >M01687:476:000000000-LL5F5:1:1101:21307:21752_CONS(1)... at 1:97:1:100/+/97.94% +10 97nt, >M01687:476:000000000-LL5F5:1:2115:24435:3890_CONS(8)... at 1:97:1:100/+/97.94% +11 97nt, >M01687:476:000000000-LL5F5:1:2115:20157:11140_CONS(1)... at 1:97:1:100/+/97.94% +12 97nt, >M01687:476:000000000-LL5F5:1:2115:13582:19082_CONS(2)... at 1:97:1:100/+/97.94% +13 97nt, >M01687:476:000000000-LL5F5:1:2114:7722:17247_CONS(1)... at 1:97:1:100/+/97.94% +14 97nt, >M01687:476:000000000-LL5F5:1:2114:17419:21956_CONS(1)... at 1:97:1:100/+/97.94% +15 97nt, >M01687:476:000000000-LL5F5:1:2113:7850:6719_CONS(2)... at 1:97:1:100/+/97.94% +16 98nt, >M01687:476:000000000-LL5F5:1:2112:17278:18840_CONS(1)... at 1:98:1:100/+/97.96% +17 97nt, >M01687:476:000000000-LL5F5:1:2111:15982:3209_CONS(2)... at 1:97:1:100/+/97.94% +18 97nt, >M01687:476:000000000-LL5F5:1:2111:19103:9613_CONS(5)... at 1:97:1:100/+/97.94% +19 97nt, >M01687:476:000000000-LL5F5:1:2111:29314:11465_CONS(1)... at 1:97:1:100/+/97.94% +20 97nt, >M01687:476:000000000-LL5F5:1:2111:10355:13028_CONS(1)... at 1:97:1:100/+/97.94% +21 96nt, >M01687:476:000000000-LL5F5:1:2110:19282:20099_CONS(2)... at 1:96:1:100/+/98.96% +22 97nt, >M01687:476:000000000-LL5F5:1:2109:27448:13400_CONS(2)... at 1:97:1:100/+/97.94% +23 97nt, >M01687:476:000000000-LL5F5:1:2109:14681:14132_CONS(1)... at 1:97:1:100/+/97.94% +24 97nt, >M01687:476:000000000-LL5F5:1:2109:4573:15353_CONS(2)... at 1:97:1:100/+/97.94% +25 97nt, >M01687:476:000000000-LL5F5:1:2109:23841:17023_CONS(1)... at 1:97:1:100/+/97.94% +26 97nt, >M01687:476:000000000-LL5F5:1:2109:5549:19753_CONS(1)... at 1:97:1:100/+/97.94% +27 97nt, >M01687:476:000000000-LL5F5:1:2106:22973:6417_CONS(2)... at 1:97:1:100/+/97.94% +28 97nt, >M01687:476:000000000-LL5F5:1:2106:27658:6473_CONS(2)... at 1:97:1:100/+/97.94% +29 98nt, >M01687:476:000000000-LL5F5:1:2106:12563:24372_CONS(1)... at 1:98:1:100/+/97.96% +30 97nt, >M01687:476:000000000-LL5F5:1:2104:22076:9397_CONS(3)... at 1:97:1:100/+/97.94% +31 97nt, >M01687:476:000000000-LL5F5:1:2105:13635:19849_CONS(1)... at 1:97:1:100/+/97.94% +32 100nt, >M01687:476:000000000-LL5F5:1:2102:9706:2526_CONS(1)... * +33 97nt, >M01687:476:000000000-LL5F5:1:2102:3711:11221_CONS(1)... at 1:97:1:100/+/97.94% +34 96nt, >M01687:476:000000000-LL5F5:1:2102:21475:21121_CONS(2)... at 1:96:1:100/+/98.96% +35 97nt, >M01687:476:000000000-LL5F5:1:2103:11207:7458_CONS(3)... at 1:97:1:100/+/97.94% +36 97nt, >M01687:476:000000000-LL5F5:1:2103:2540:11129_CONS(1)... at 1:97:1:100/+/97.94% +37 97nt, >M01687:476:000000000-LL5F5:1:2103:23099:20604_CONS(1)... at 1:97:1:100/+/97.94% +38 97nt, >M01687:476:000000000-LL5F5:1:2103:6672:22604_CONS(2)... at 1:97:1:100/+/97.94% +39 97nt, >M01687:476:000000000-LL5F5:1:2103:21236:24345_CONS(1)... at 1:97:1:100/+/97.94% +40 97nt, >M01687:476:000000000-LL5F5:1:2116:10260:13854_CONS(1)... at 1:97:1:100/+/97.94% +41 97nt, >M01687:476:000000000-LL5F5:1:2116:13481:18138_CONS(1)... at 1:97:1:100/+/97.94% +42 97nt, >M01687:476:000000000-LL5F5:1:2116:4291:20577_CONS(2)... at 1:97:1:100/+/97.94% +43 97nt, >M01687:476:000000000-LL5F5:1:2117:25948:7839_CONS(1)... at 1:97:1:100/+/97.94% +44 97nt, >M01687:476:000000000-LL5F5:1:2117:19372:20666_CONS(1)... at 1:97:1:100/+/97.94% +45 97nt, >M01687:476:000000000-LL5F5:1:2117:12048:22238_CONS(1)... at 1:97:1:100/+/97.94% +46 97nt, >M01687:476:000000000-LL5F5:1:1119:12129:5000_CONS(1)... at 1:97:1:100/+/97.94% +47 93nt, >M01687:476:000000000-LL5F5:1:1119:15549:6706_CONS(1)... at 1:93:1:96/+/97.85% +48 40nt, >M01687:476:000000000-LL5F5:1:1119:25434:18638_CONS(2)... at 1:40:1:40/+/100.00% +49 97nt, >M01687:476:000000000-LL5F5:1:2101:14557:14850_CONS(1)... at 1:97:1:100/+/97.94% +50 97nt, >M01687:476:000000000-LL5F5:1:2101:18583:19999_CONS(1)... at 1:97:1:100/+/97.94% +51 97nt, >M01687:476:000000000-LL5F5:1:1115:9421:12123_CONS(1)... at 1:97:1:100/+/97.94% +52 97nt, >M01687:476:000000000-LL5F5:1:1115:7801:14629_CONS(1)... at 1:97:1:100/+/97.94% +53 97nt, >M01687:476:000000000-LL5F5:1:1115:4572:20814_CONS(1)... at 1:97:1:100/+/97.94% +54 96nt, >M01687:476:000000000-LL5F5:1:1116:24904:21089_CONS(1)... at 1:96:1:100/+/98.96% +55 97nt, >M01687:476:000000000-LL5F5:1:1114:7407:6001_CONS(1)... at 1:97:1:100/+/97.94% +56 96nt, >M01687:476:000000000-LL5F5:1:1113:17423:3404_CONS(1)... at 1:96:1:100/+/98.96% +57 96nt, >M01687:476:000000000-LL5F5:1:1113:26124:15347_CONS(1)... at 1:96:1:100/+/98.96% +58 97nt, >M01687:476:000000000-LL5F5:1:1113:21230:23890_CONS(1)... at 1:97:1:100/+/98.97% +59 97nt, >M01687:476:000000000-LL5F5:1:1112:8469:3981_CONS(3)... at 1:97:1:100/+/97.94% +60 97nt, >M01687:476:000000000-LL5F5:1:1112:15189:18630_CONS(1)... at 1:97:1:100/+/97.94% +61 97nt, >M01687:476:000000000-LL5F5:1:1111:23057:1356_CONS(1)... at 1:97:1:100/+/97.94% +62 97nt, >M01687:476:000000000-LL5F5:1:1111:19886:19260_CONS(1)... at 1:97:1:100/+/97.94% +63 97nt, >M01687:476:000000000-LL5F5:1:1111:9507:24441_CONS(1)... at 1:97:1:100/+/97.94% +64 97nt, >M01687:476:000000000-LL5F5:1:1109:24062:11536_CONS(2)... at 1:97:1:100/+/97.94% +65 97nt, >M01687:476:000000000-LL5F5:1:1109:8782:24939_CONS(1)... at 1:97:1:100/+/97.94% +66 97nt, >M01687:476:000000000-LL5F5:1:1108:25870:20299_CONS(1)... at 1:97:1:100/+/97.94% +67 97nt, >M01687:476:000000000-LL5F5:1:1107:10611:7290_CONS(1)... at 1:97:1:100/+/98.97% +68 41nt, >M01687:476:000000000-LL5F5:1:1107:16975:12549_CONS(1)... at 1:41:1:42/+/100.00% +69 97nt, >M01687:476:000000000-LL5F5:1:1106:16344:5192_CONS(1)... at 1:97:1:100/+/97.94% +70 97nt, >M01687:476:000000000-LL5F5:1:1106:18583:9418_CONS(1)... at 1:97:1:100/+/97.94% +71 97nt, >M01687:476:000000000-LL5F5:1:1105:7591:4200_CONS(1)... at 1:97:1:100/+/98.97% +72 97nt, >M01687:476:000000000-LL5F5:1:1104:13888:17118_CONS(1)... at 1:97:1:100/+/97.94% +73 97nt, >M01687:476:000000000-LL5F5:1:1103:8568:2596_CONS(1)... at 1:97:1:100/+/97.94% +74 97nt, >M01687:476:000000000-LL5F5:1:1103:16097:7562_CONS(1)... at 1:97:1:100/+/97.94% +75 42nt, >M01687:476:000000000-LL5F5:1:1103:7432:7789_CONS(1)... at 1:42:1:42/+/97.62% +76 97nt, >M01687:476:000000000-LL5F5:1:1103:19018:18816_CONS(1)... at 1:97:1:100/+/97.94% +77 97nt, >M01687:476:000000000-LL5F5:1:1103:17562:21237_CONS(1)... at 1:97:1:100/+/97.94% +78 97nt, >M01687:476:000000000-LL5F5:1:1103:11568:22125_CONS(1)... at 1:97:1:100/+/97.94% +79 97nt, >M01687:476:000000000-LL5F5:1:1117:20419:17668_CONS(1)... at 1:97:1:100/+/97.94% +80 97nt, >M01687:476:000000000-LL5F5:1:1117:17478:20687_CONS(1)... at 1:97:1:100/+/97.94% +81 97nt, >M01687:476:000000000-LL5F5:1:2119:12071:5418_CONS(1)... at 1:97:1:100/+/97.94% +82 97nt, >M01687:476:000000000-LL5F5:1:2119:12939:12295_CONS(1)... at 1:97:1:100/+/97.94% +83 97nt, >M01687:476:000000000-LL5F5:1:2119:6437:19761_CONS(1)... at 1:97:1:100/+/97.94% +>Cluster 43 +0 100nt, >M01687:476:000000000-LL5F5:1:2101:4691:7892_CONS(1)... * +>Cluster 44 +0 100nt, >M01687:476:000000000-LL5F5:1:1111:20363:2818_CONS(1)... * +>Cluster 45 +0 100nt, >M01687:476:000000000-LL5F5:1:1107:26111:7328_CONS(1)... * +>Cluster 46 +0 100nt, >M01687:476:000000000-LL5F5:1:1106:4136:7727_CONS(1)... * +>Cluster 47 +0 100nt, >M01687:476:000000000-LL5F5:1:1117:19765:1948_CONS(1)... * +>Cluster 48 +0 99nt, >M01687:476:000000000-LL5F5:1:2118:13962:20167_CONS(1)... * +>Cluster 49 +0 98nt, >M01687:476:000000000-LL5F5:1:1101:13216:6063_CONS(1)... * +>Cluster 50 +0 98nt, >M01687:476:000000000-LL5F5:1:2107:23738:16980_CONS(1)... * +>Cluster 51 +0 98nt, >M01687:476:000000000-LL5F5:1:1119:9117:4179_CONS(1)... * +>Cluster 52 +0 98nt, >M01687:476:000000000-LL5F5:1:1117:14997:10608_CONS(1)... * +>Cluster 53 +0 97nt, >M01687:476:000000000-LL5F5:1:1101:2978:15910_CONS(1)... * +>Cluster 54 +0 97nt, >M01687:476:000000000-LL5F5:1:2114:18971:19637_CONS(1)... * +1 97nt, >M01687:476:000000000-LL5F5:1:2109:19178:11878_CONS(1)... at 1:97:1:97/+/97.94% +>Cluster 55 +0 97nt, >M01687:476:000000000-LL5F5:1:2112:25719:13923_CONS(1)... * +>Cluster 56 +0 97nt, >M01687:476:000000000-LL5F5:1:2111:8020:13120_CONS(1)... * +>Cluster 57 +0 97nt, >M01687:476:000000000-LL5F5:1:2111:26698:14383_CONS(1)... * +1 96nt, >M01687:476:000000000-LL5F5:1:2107:23740:18658_CONS(1)... at 1:96:1:97/+/97.92% +2 96nt, >M01687:476:000000000-LL5F5:1:2102:26454:13217_CONS(1)... at 1:96:1:97/+/97.92% +3 96nt, >M01687:476:000000000-LL5F5:1:1119:24551:23511_CONS(1)... at 1:96:1:97/+/97.92% +4 96nt, >M01687:476:000000000-LL5F5:1:1115:11373:8265_CONS(1)... at 1:96:1:97/+/97.92% +5 96nt, >M01687:476:000000000-LL5F5:1:1114:18299:24010_CONS(1)... at 1:96:1:97/+/97.92% +6 96nt, >M01687:476:000000000-LL5F5:1:1106:22256:9544_CONS(1)... at 1:96:1:97/+/98.96% +7 96nt, >M01687:476:000000000-LL5F5:1:2119:6152:9472_CONS(1)... at 1:96:1:97/+/97.92% +>Cluster 58 +0 97nt, >M01687:476:000000000-LL5F5:1:2111:22032:20362_CONS(1)... * +1 97nt, >M01687:476:000000000-LL5F5:1:2108:19285:11651_CONS(1)... at 1:97:1:97/+/97.94% +2 97nt, >M01687:476:000000000-LL5F5:1:2103:17434:14437_CONS(1)... at 1:97:1:97/+/97.94% +3 97nt, >M01687:476:000000000-LL5F5:1:2116:23880:8789_CONS(1)... at 1:97:1:97/+/97.94% +4 97nt, >M01687:476:000000000-LL5F5:1:1116:28781:9758_CONS(1)... at 1:97:1:97/+/97.94% +>Cluster 59 +0 97nt, >M01687:476:000000000-LL5F5:1:2110:4039:6669_CONS(1)... * +>Cluster 60 +0 97nt, >M01687:476:000000000-LL5F5:1:2105:27951:18900_CONS(1)... * +1 96nt, >M01687:476:000000000-LL5F5:1:1103:7280:18223_CONS(1)... at 1:96:1:97/+/97.92% +>Cluster 61 +0 97nt, >M01687:476:000000000-LL5F5:1:2101:29675:14313_CONS(1)... * +1 39nt, >M01687:476:000000000-LL5F5:1:1115:20519:5340_CONS(1)... at 1:39:1:39/+/97.44% +>Cluster 62 +0 97nt, >M01687:476:000000000-LL5F5:1:1116:7012:20984_CONS(1)... * +>Cluster 63 +0 97nt, >M01687:476:000000000-LL5F5:1:1114:12663:23204_CONS(1)... * +>Cluster 64 +0 96nt, >M01687:476:000000000-LL5F5:1:2102:8723:14711_CONS(1)... at 1:96:1:97/+/98.96% +1 97nt, >M01687:476:000000000-LL5F5:1:1109:22382:19362_CONS(1)... * +2 97nt, >M01687:476:000000000-LL5F5:1:1108:5017:11195_CONS(1)... at 1:97:1:97/+/97.94% +>Cluster 65 +0 97nt, >M01687:476:000000000-LL5F5:1:1103:7385:10365_CONS(1)... * +>Cluster 66 +0 96nt, >M01687:476:000000000-LL5F5:1:1102:8091:7799_CONS(150)... * +1 96nt, >M01687:476:000000000-LL5F5:1:1102:16094:23546_CONS(1)... at 1:96:1:96/+/98.96% +2 96nt, >M01687:476:000000000-LL5F5:1:2114:12916:10837_CONS(2)... at 1:96:1:96/+/98.96% +3 42nt, >M01687:476:000000000-LL5F5:1:2114:18311:11047_CONS(1)... at 1:42:1:42/+/100.00% +4 96nt, >M01687:476:000000000-LL5F5:1:2113:24576:24010_CONS(1)... at 1:96:1:96/+/98.96% +5 96nt, >M01687:476:000000000-LL5F5:1:2109:12914:22367_CONS(2)... at 1:96:1:96/+/98.96% +6 96nt, >M01687:476:000000000-LL5F5:1:2106:25137:3206_CONS(1)... at 1:96:1:96/+/97.92% +7 96nt, >M01687:476:000000000-LL5F5:1:2107:19167:9786_CONS(1)... at 1:96:1:96/+/98.96% +8 96nt, >M01687:476:000000000-LL5F5:1:2105:27857:14609_CONS(1)... at 1:96:1:96/+/98.96% +9 96nt, >M01687:476:000000000-LL5F5:1:2105:16832:18210_CONS(1)... at 1:96:1:96/+/98.96% +10 96nt, >M01687:476:000000000-LL5F5:1:1116:25007:14056_CONS(1)... at 1:96:1:96/+/98.96% +11 96nt, >M01687:476:000000000-LL5F5:1:1113:15439:14396_CONS(1)... at 1:96:1:96/+/98.96% +12 96nt, >M01687:476:000000000-LL5F5:1:1110:19730:13371_CONS(1)... at 1:96:1:96/+/98.96% +13 96nt, >M01687:476:000000000-LL5F5:1:1110:11644:17385_CONS(1)... at 1:96:1:96/+/98.96% +14 96nt, >M01687:476:000000000-LL5F5:1:1105:23485:23941_CONS(1)... at 1:96:1:96/+/97.92% +15 96nt, >M01687:476:000000000-LL5F5:1:1105:18500:24859_CONS(1)... at 1:96:1:96/+/98.96% +16 96nt, >M01687:476:000000000-LL5F5:1:1104:23592:6102_CONS(1)... at 1:96:1:96/+/98.96% +17 95nt, >M01687:476:000000000-LL5F5:1:2118:11385:10670_CONS(1)... at 1:95:1:96/+/100.00% +>Cluster 67 +0 96nt, >M01687:476:000000000-LL5F5:1:1102:13716:8161_CONS(1)... * +>Cluster 68 +0 93nt, >M01687:476:000000000-LL5F5:1:1101:6531:12236_CONS(14)... at 1:93:1:96/+/100.00% +1 94nt, >M01687:476:000000000-LL5F5:1:1101:23082:15060_CONS(16)... at 1:94:1:96/+/100.00% +2 94nt, >M01687:476:000000000-LL5F5:1:1101:12123:24242_CONS(1)... at 1:94:1:96/+/98.94% +3 93nt, >M01687:476:000000000-LL5F5:1:2112:17801:19423_CONS(1)... at 1:93:1:96/+/98.92% +4 96nt, >M01687:476:000000000-LL5F5:1:2109:20160:2954_CONS(1)... * +5 95nt, >M01687:476:000000000-LL5F5:1:2106:15523:16576_CONS(3)... at 1:95:1:96/+/100.00% +6 93nt, >M01687:476:000000000-LL5F5:1:2105:18820:23340_CONS(1)... at 1:93:1:96/+/98.92% +7 95nt, >M01687:476:000000000-LL5F5:1:1115:25103:18699_CONS(1)... at 1:95:1:96/+/97.89% +8 94nt, >M01687:476:000000000-LL5F5:1:1116:8756:3799_CONS(1)... at 1:94:1:96/+/98.94% +9 93nt, >M01687:476:000000000-LL5F5:1:1114:5834:15797_CONS(1)... at 1:93:1:96/+/98.92% +10 93nt, >M01687:476:000000000-LL5F5:1:1108:12630:23563_CONS(1)... at 1:93:1:95/+/97.85% +11 93nt, >M01687:476:000000000-LL5F5:1:2119:20066:23446_CONS(1)... at 1:93:1:96/+/98.92% +>Cluster 69 +0 93nt, >M01687:476:000000000-LL5F5:1:1102:22561:1308_CONS(475)... at 1:93:1:96/+/100.00% +1 93nt, >M01687:476:000000000-LL5F5:1:1101:14338:8310_CONS(2)... at 1:93:1:96/+/98.92% +2 93nt, >M01687:476:000000000-LL5F5:1:1101:18978:20930_CONS(9)... at 1:93:1:96/+/98.92% +3 93nt, >M01687:476:000000000-LL5F5:1:2115:16146:14327_CONS(8)... at 1:93:1:96/+/98.92% +4 93nt, >M01687:476:000000000-LL5F5:1:2114:17691:6394_CONS(2)... at 1:93:1:96/+/98.92% +5 93nt, >M01687:476:000000000-LL5F5:1:2114:19301:16448_CONS(1)... at 1:93:1:96/+/98.92% +6 93nt, >M01687:476:000000000-LL5F5:1:2113:13868:16157_CONS(1)... at 1:93:1:96/+/98.92% +7 93nt, >M01687:476:000000000-LL5F5:1:2112:17356:9105_CONS(2)... at 1:93:1:96/+/98.92% +8 93nt, >M01687:476:000000000-LL5F5:1:2112:5246:9246_CONS(1)... at 1:93:1:96/+/97.85% +9 93nt, >M01687:476:000000000-LL5F5:1:2111:5948:5750_CONS(1)... at 1:93:1:96/+/97.85% +10 93nt, >M01687:476:000000000-LL5F5:1:2111:10334:6746_CONS(1)... at 1:93:1:96/+/98.92% +11 93nt, >M01687:476:000000000-LL5F5:1:2111:16907:16332_CONS(1)... at 1:93:1:96/+/98.92% +12 96nt, >M01687:476:000000000-LL5F5:1:2109:8622:13555_CONS(1)... * +13 93nt, >M01687:476:000000000-LL5F5:1:2109:9653:17959_CONS(2)... at 1:93:1:96/+/98.92% +14 93nt, >M01687:476:000000000-LL5F5:1:2106:4296:6985_CONS(2)... at 1:93:1:96/+/98.92% +15 93nt, >M01687:476:000000000-LL5F5:1:2106:21431:9724_CONS(1)... at 1:93:1:96/+/98.92% +16 93nt, >M01687:476:000000000-LL5F5:1:2106:13087:14827_CONS(1)... at 1:93:1:96/+/98.92% +17 56nt, >M01687:476:000000000-LL5F5:1:2107:7204:3886_CONS(1)... at 1:56:1:56/+/98.21% +18 92nt, >M01687:476:000000000-LL5F5:1:2107:4340:13070_CONS(1)... at 1:92:2:96/+/100.00% +19 93nt, >M01687:476:000000000-LL5F5:1:2107:11767:13544_CONS(1)... at 1:93:1:96/+/98.92% +20 93nt, >M01687:476:000000000-LL5F5:1:2107:12915:18299_CONS(1)... at 1:93:1:96/+/98.92% +21 93nt, >M01687:476:000000000-LL5F5:1:2104:26806:15359_CONS(1)... at 1:93:1:96/+/98.92% +22 93nt, >M01687:476:000000000-LL5F5:1:2104:13528:18161_CONS(2)... at 1:93:1:96/+/98.92% +23 93nt, >M01687:476:000000000-LL5F5:1:2104:22798:20950_CONS(3)... at 1:93:1:96/+/98.92% +24 92nt, >M01687:476:000000000-LL5F5:1:2105:24643:10246_CONS(1)... at 1:92:1:96/+/100.00% +25 93nt, >M01687:476:000000000-LL5F5:1:2105:22755:10381_CONS(1)... at 1:93:1:96/+/98.92% +26 93nt, >M01687:476:000000000-LL5F5:1:2102:4098:15190_CONS(1)... at 1:93:1:96/+/98.92% +27 93nt, >M01687:476:000000000-LL5F5:1:2117:18215:10728_CONS(1)... at 1:93:1:96/+/98.92% +28 93nt, >M01687:476:000000000-LL5F5:1:2101:10424:1632_CONS(1)... at 1:93:1:96/+/98.92% +29 93nt, >M01687:476:000000000-LL5F5:1:2101:4715:9544_CONS(2)... at 1:93:1:96/+/98.92% +30 93nt, >M01687:476:000000000-LL5F5:1:2101:25174:22835_CONS(1)... at 1:93:1:96/+/98.92% +31 93nt, >M01687:476:000000000-LL5F5:1:1114:6113:12293_CONS(1)... at 1:93:1:96/+/98.92% +32 93nt, >M01687:476:000000000-LL5F5:1:1114:8244:22903_CONS(1)... at 1:93:1:96/+/98.92% +33 93nt, >M01687:476:000000000-LL5F5:1:1112:7071:4044_CONS(1)... at 1:93:1:96/+/98.92% +34 93nt, >M01687:476:000000000-LL5F5:1:1111:22315:8198_CONS(1)... at 1:93:1:96/+/98.92% +35 93nt, >M01687:476:000000000-LL5F5:1:1111:6787:12265_CONS(1)... at 1:93:1:96/+/98.92% +36 93nt, >M01687:476:000000000-LL5F5:1:1110:18987:11298_CONS(1)... at 1:93:1:96/+/98.92% +37 93nt, >M01687:476:000000000-LL5F5:1:1109:16379:19774_CONS(1)... at 1:93:1:96/+/98.92% +38 93nt, >M01687:476:000000000-LL5F5:1:1106:9440:3320_CONS(1)... at 1:93:1:96/+/98.92% +39 92nt, >M01687:476:000000000-LL5F5:1:1106:17108:9920_CONS(1)... at 1:92:1:95/+/97.83% +40 93nt, >M01687:476:000000000-LL5F5:1:1106:17180:10094_CONS(1)... at 1:93:1:96/+/98.92% +41 93nt, >M01687:476:000000000-LL5F5:1:1106:8130:13664_CONS(1)... at 1:93:1:96/+/98.92% +42 92nt, >M01687:476:000000000-LL5F5:1:1106:14389:22664_CONS(1)... at 1:92:1:95/+/97.83% +43 93nt, >M01687:476:000000000-LL5F5:1:1105:13463:2892_CONS(1)... at 1:93:1:96/+/97.85% +44 93nt, >M01687:476:000000000-LL5F5:1:1105:5660:9465_CONS(1)... at 1:93:1:96/+/98.92% +45 92nt, >M01687:476:000000000-LL5F5:1:1105:7828:17023_CONS(1)... at 1:92:1:96/+/100.00% +46 93nt, >M01687:476:000000000-LL5F5:1:1104:26799:9213_CONS(1)... at 1:93:1:96/+/98.92% +47 93nt, >M01687:476:000000000-LL5F5:1:1104:21077:12362_CONS(1)... at 1:93:1:96/+/98.92% +48 93nt, >M01687:476:000000000-LL5F5:1:1103:18139:10987_CONS(1)... at 1:93:1:96/+/98.92% +49 93nt, >M01687:476:000000000-LL5F5:1:1103:24217:11354_CONS(1)... at 1:93:1:96/+/98.92% +50 93nt, >M01687:476:000000000-LL5F5:1:1103:16326:13578_CONS(1)... at 1:93:1:96/+/98.92% +51 94nt, >M01687:476:000000000-LL5F5:1:1118:7158:2780_CONS(1)... at 1:94:1:96/+/98.94% +52 93nt, >M01687:476:000000000-LL5F5:1:1118:15307:17027_CONS(1)... at 1:93:1:96/+/98.92% +53 92nt, >M01687:476:000000000-LL5F5:1:1118:26244:20613_CONS(2)... at 1:92:1:96/+/100.00% +54 93nt, >M01687:476:000000000-LL5F5:1:1117:9563:5886_CONS(1)... at 1:93:1:96/+/98.92% +55 93nt, >M01687:476:000000000-LL5F5:1:2118:9645:4508_CONS(1)... at 1:93:1:96/+/98.92% +56 93nt, >M01687:476:000000000-LL5F5:1:2118:4136:14799_CONS(1)... at 1:93:1:96/+/98.92% +>Cluster 70 +0 96nt, >M01687:476:000000000-LL5F5:1:2109:24426:15423_CONS(1)... * +>Cluster 71 +0 96nt, >M01687:476:000000000-LL5F5:1:2102:23998:20052_CONS(1)... * +>Cluster 72 +0 96nt, >M01687:476:000000000-LL5F5:1:2103:24056:19460_CONS(1)... * +>Cluster 73 +0 96nt, >M01687:476:000000000-LL5F5:1:1115:13017:10109_CONS(1)... * +>Cluster 74 +0 96nt, >M01687:476:000000000-LL5F5:1:1104:20832:5327_CONS(1)... * +>Cluster 75 +0 95nt, >M01687:476:000000000-LL5F5:1:1102:28096:18804_CONS(1)... * +>Cluster 76 +0 95nt, >M01687:476:000000000-LL5F5:1:1101:29533:11437_CONS(1)... * +>Cluster 77 +0 95nt, >M01687:476:000000000-LL5F5:1:1101:25770:22378_CONS(1)... * +>Cluster 78 +0 95nt, >M01687:476:000000000-LL5F5:1:2113:23792:21396_CONS(1)... * +1 49nt, >M01687:476:000000000-LL5F5:1:2112:6801:5357_CONS(1)... at 1:49:1:49/+/97.96% +2 44nt, >M01687:476:000000000-LL5F5:1:1116:26438:19233_CONS(1)... at 1:44:1:44/+/97.73% +>Cluster 79 +0 95nt, >M01687:476:000000000-LL5F5:1:2110:11002:4532_CONS(1)... * +>Cluster 80 +0 95nt, >M01687:476:000000000-LL5F5:1:2109:4282:10568_CONS(1)... * +>Cluster 81 +0 95nt, >M01687:476:000000000-LL5F5:1:2108:25129:23521_CONS(1)... * +>Cluster 82 +0 95nt, >M01687:476:000000000-LL5F5:1:2103:9431:4066_CONS(1)... * +1 29nt, >M01687:476:000000000-LL5F5:1:2119:15714:17269_CONS(1)... at 1:29:1:29/+/100.00% +>Cluster 83 +0 95nt, >M01687:476:000000000-LL5F5:1:2116:24575:23592_CONS(1)... * +>Cluster 84 +0 95nt, >M01687:476:000000000-LL5F5:1:1116:7217:2291_CONS(1)... * +>Cluster 85 +0 95nt, >M01687:476:000000000-LL5F5:1:1114:24213:16552_CONS(1)... * +>Cluster 86 +0 95nt, >M01687:476:000000000-LL5F5:1:1112:22415:23478_CONS(1)... * +>Cluster 87 +0 47nt, >M01687:476:000000000-LL5F5:1:2114:17052:20560_CONS(1)... at 1:47:1:47/+/97.87% +1 95nt, >M01687:476:000000000-LL5F5:1:1111:11223:18887_CONS(1)... * +>Cluster 88 +0 95nt, >M01687:476:000000000-LL5F5:1:1108:8638:2473_CONS(1)... * +>Cluster 89 +0 95nt, >M01687:476:000000000-LL5F5:1:1107:12327:17900_CONS(1)... * +>Cluster 90 +0 95nt, >M01687:476:000000000-LL5F5:1:1106:25386:4561_CONS(1)... * +>Cluster 91 +0 95nt, >M01687:476:000000000-LL5F5:1:1104:14502:20180_CONS(1)... * +>Cluster 92 +0 92nt, >M01687:476:000000000-LL5F5:1:1102:23084:14322_CONS(34)... at 1:92:1:92/+/98.91% +1 92nt, >M01687:476:000000000-LL5F5:1:2114:17299:9790_CONS(43)... at 1:92:1:92/+/100.00% +2 92nt, >M01687:476:000000000-LL5F5:1:2114:17800:19004_CONS(1)... at 1:92:1:92/+/97.83% +3 92nt, >M01687:476:000000000-LL5F5:1:2113:16353:15823_CONS(1)... at 1:92:1:92/+/98.91% +4 92nt, >M01687:476:000000000-LL5F5:1:2111:8765:9739_CONS(2)... at 1:92:1:92/+/97.83% +5 92nt, >M01687:476:000000000-LL5F5:1:2109:7371:8580_CONS(1)... at 1:92:1:92/+/97.83% +6 92nt, >M01687:476:000000000-LL5F5:1:2109:24645:22078_CONS(1)... at 1:92:1:92/+/97.83% +7 92nt, >M01687:476:000000000-LL5F5:1:2107:6200:23434_CONS(1)... at 1:92:1:92/+/98.91% +8 92nt, >M01687:476:000000000-LL5F5:1:2116:24068:11165_CONS(1)... at 1:92:1:92/+/98.91% +9 92nt, >M01687:476:000000000-LL5F5:1:1114:15653:9885_CONS(1)... at 1:92:1:92/+/97.83% +10 92nt, >M01687:476:000000000-LL5F5:1:1110:28414:14308_CONS(1)... at 1:92:1:92/+/97.83% +11 92nt, >M01687:476:000000000-LL5F5:1:1106:15244:10402_CONS(1)... at 1:92:1:92/+/98.91% +12 92nt, >M01687:476:000000000-LL5F5:1:1104:21580:8556_CONS(1)... at 1:92:1:92/+/98.91% +13 92nt, >M01687:476:000000000-LL5F5:1:1103:8737:4978_CONS(1)... at 1:92:1:92/+/97.83% +14 92nt, >M01687:476:000000000-LL5F5:1:1118:14513:12598_CONS(1)... at 1:92:1:92/+/97.83% +15 95nt, >M01687:476:000000000-LL5F5:1:1117:9284:1912_CONS(1)... * +16 91nt, >M01687:476:000000000-LL5F5:1:1117:23527:10030_CONS(1)... at 1:91:1:92/+/100.00% +>Cluster 93 +0 95nt, >M01687:476:000000000-LL5F5:1:1117:4859:5443_CONS(1)... * +>Cluster 94 +0 95nt, >M01687:476:000000000-LL5F5:1:2118:9715:15890_CONS(1)... * +>Cluster 95 +0 95nt, >M01687:476:000000000-LL5F5:1:2119:15516:8585_CONS(1)... * +>Cluster 96 +0 94nt, >M01687:476:000000000-LL5F5:1:1102:7072:6396_CONS(104)... * +1 93nt, >M01687:476:000000000-LL5F5:1:2114:27251:14995_CONS(3)... at 1:93:1:94/+/100.00% +2 94nt, >M01687:476:000000000-LL5F5:1:2112:16361:4636_CONS(1)... at 1:94:1:94/+/98.94% +3 94nt, >M01687:476:000000000-LL5F5:1:2112:13678:12199_CONS(1)... at 1:94:1:94/+/98.94% +4 94nt, >M01687:476:000000000-LL5F5:1:2111:13673:7217_CONS(1)... at 1:94:1:94/+/98.94% +5 93nt, >M01687:476:000000000-LL5F5:1:2107:11289:12481_CONS(1)... at 1:93:1:94/+/100.00% +6 94nt, >M01687:476:000000000-LL5F5:1:2105:12543:8533_CONS(2)... at 1:94:1:94/+/98.94% +7 94nt, >M01687:476:000000000-LL5F5:1:2117:4584:6515_CONS(1)... at 1:94:1:94/+/98.94% +8 94nt, >M01687:476:000000000-LL5F5:1:2101:14395:11691_CONS(1)... at 1:94:1:94/+/98.94% +9 94nt, >M01687:476:000000000-LL5F5:1:1115:4597:13273_CONS(1)... at 1:94:1:94/+/98.94% +10 94nt, >M01687:476:000000000-LL5F5:1:1116:8434:6300_CONS(1)... at 1:94:1:94/+/98.94% +11 94nt, >M01687:476:000000000-LL5F5:1:1113:13200:16424_CONS(1)... at 1:94:1:94/+/98.94% +12 94nt, >M01687:476:000000000-LL5F5:1:1109:14531:13521_CONS(1)... at 1:94:1:94/+/98.94% +13 94nt, >M01687:476:000000000-LL5F5:1:1109:25068:23590_CONS(1)... at 1:94:1:94/+/97.87% +14 93nt, >M01687:476:000000000-LL5F5:1:1108:3445:12897_CONS(1)... at 1:93:1:94/+/100.00% +15 94nt, >M01687:476:000000000-LL5F5:1:1107:10370:6852_CONS(1)... at 1:94:1:94/+/98.94% +16 93nt, >M01687:476:000000000-LL5F5:1:1104:26710:15170_CONS(1)... at 1:93:1:93/+/100.00% +>Cluster 97 +0 94nt, >M01687:476:000000000-LL5F5:1:2114:7539:10497_CONS(1)... * +1 39nt, >M01687:476:000000000-LL5F5:1:2114:27175:16897_CONS(1)... at 1:39:1:40/+/100.00% +2 38nt, >M01687:476:000000000-LL5F5:1:2106:15903:1781_CONS(1)... at 1:38:1:39/+/100.00% +3 40nt, >M01687:476:000000000-LL5F5:1:2103:16273:3532_CONS(1)... at 1:40:1:41/+/97.50% +4 38nt, >M01687:476:000000000-LL5F5:1:1111:19645:18457_CONS(1)... at 1:38:1:39/+/97.37% +>Cluster 98 +0 94nt, >M01687:476:000000000-LL5F5:1:2108:4651:8348_CONS(1)... * +>Cluster 99 +0 94nt, >M01687:476:000000000-LL5F5:1:2106:15378:22249_CONS(1)... * +>Cluster 100 +0 94nt, >M01687:476:000000000-LL5F5:1:2105:21477:7755_CONS(1)... * +>Cluster 101 +0 94nt, >M01687:476:000000000-LL5F5:1:1110:28081:14516_CONS(1)... * +>Cluster 102 +0 94nt, >M01687:476:000000000-LL5F5:1:1107:15100:14562_CONS(1)... * +>Cluster 103 +0 94nt, >M01687:476:000000000-LL5F5:1:2118:7625:5661_CONS(1)... * +>Cluster 104 +0 93nt, >M01687:476:000000000-LL5F5:1:2115:10701:6398_CONS(1)... * +1 92nt, >M01687:476:000000000-LL5F5:1:2114:5735:8312_CONS(1)... at 1:92:1:93/+/100.00% +2 93nt, >M01687:476:000000000-LL5F5:1:2112:23316:24158_CONS(3)... at 1:93:1:93/+/97.85% +3 93nt, >M01687:476:000000000-LL5F5:1:2111:22228:9288_CONS(22)... at 1:93:1:93/+/98.92% +4 93nt, >M01687:476:000000000-LL5F5:1:2106:17161:6624_CONS(1)... at 1:93:1:93/+/97.85% +5 93nt, >M01687:476:000000000-LL5F5:1:1112:22459:14661_CONS(1)... at 1:93:1:93/+/97.85% +6 93nt, >M01687:476:000000000-LL5F5:1:1104:18641:3400_CONS(1)... at 1:93:1:93/+/97.85% +>Cluster 105 +0 93nt, >M01687:476:000000000-LL5F5:1:2112:26359:12114_CONS(1)... * +>Cluster 106 +0 93nt, >M01687:476:000000000-LL5F5:1:2109:13043:4850_CONS(1)... * +>Cluster 107 +0 93nt, >M01687:476:000000000-LL5F5:1:2117:27501:20301_CONS(1)... * +1 93nt, >M01687:476:000000000-LL5F5:1:1115:18296:19118_CONS(1)... at 1:93:1:93/+/97.85% +>Cluster 108 +0 93nt, >M01687:476:000000000-LL5F5:1:1119:7420:14205_CONS(1)... * +>Cluster 109 +0 93nt, >M01687:476:000000000-LL5F5:1:1113:11314:6716_CONS(1)... * +>Cluster 110 +0 93nt, >M01687:476:000000000-LL5F5:1:1111:26007:15176_CONS(1)... * +>Cluster 111 +0 93nt, >M01687:476:000000000-LL5F5:1:1109:24268:21598_CONS(1)... * +>Cluster 112 +0 92nt, >M01687:476:000000000-LL5F5:1:1102:9098:4091_CONS(7)... * +1 92nt, >M01687:476:000000000-LL5F5:1:2112:9282:5603_CONS(1)... at 1:92:1:92/+/97.83% +2 92nt, >M01687:476:000000000-LL5F5:1:2116:23434:6791_CONS(1)... at 1:92:1:92/+/98.91% +3 92nt, >M01687:476:000000000-LL5F5:1:1114:26134:11822_CONS(1)... at 1:92:1:92/+/98.91% +>Cluster 113 +0 92nt, >M01687:476:000000000-LL5F5:1:1102:19789:5918_CONS(1)... * +1 46nt, >M01687:476:000000000-LL5F5:1:2112:22899:12665_CONS(1)... at 1:46:1:46/+/97.83% +>Cluster 114 +0 92nt, >M01687:476:000000000-LL5F5:1:1102:7895:9309_CONS(1)... * +>Cluster 115 +0 92nt, >M01687:476:000000000-LL5F5:1:1102:9985:13867_CONS(1)... * +1 92nt, >M01687:476:000000000-LL5F5:1:1102:20826:15558_CONS(1)... at 1:92:1:92/+/97.83% +2 92nt, >M01687:476:000000000-LL5F5:1:1101:28066:13038_CONS(1)... at 1:92:1:92/+/97.83% +3 92nt, >M01687:476:000000000-LL5F5:1:2115:10878:21521_CONS(1)... at 1:92:1:92/+/97.83% +4 92nt, >M01687:476:000000000-LL5F5:1:2110:22028:17573_CONS(1)... at 1:92:1:92/+/97.83% +5 92nt, >M01687:476:000000000-LL5F5:1:2110:25135:20507_CONS(2)... at 1:92:1:92/+/97.83% +6 92nt, >M01687:476:000000000-LL5F5:1:2107:3436:7443_CONS(1)... at 1:92:1:92/+/97.83% +7 91nt, >M01687:476:000000000-LL5F5:1:2103:22013:23331_CONS(2)... at 1:91:2:92/+/97.80% +8 92nt, >M01687:476:000000000-LL5F5:1:2117:10154:5989_CONS(1)... at 1:92:1:92/+/97.83% +9 92nt, >M01687:476:000000000-LL5F5:1:2117:14047:19825_CONS(1)... at 1:92:1:92/+/97.83% +10 92nt, >M01687:476:000000000-LL5F5:1:1119:10501:14047_CONS(1)... at 1:92:1:92/+/97.83% +11 92nt, >M01687:476:000000000-LL5F5:1:2101:13683:15038_CONS(1)... at 1:92:1:92/+/97.83% +12 92nt, >M01687:476:000000000-LL5F5:1:1116:13633:17157_CONS(2)... at 1:92:1:92/+/97.83% +13 92nt, >M01687:476:000000000-LL5F5:1:1114:6185:11393_CONS(1)... at 1:92:1:92/+/97.83% +14 92nt, >M01687:476:000000000-LL5F5:1:1113:8342:3016_CONS(1)... at 1:92:1:92/+/97.83% +15 91nt, >M01687:476:000000000-LL5F5:1:1112:19277:23345_CONS(1)... at 1:91:1:92/+/97.80% +16 92nt, >M01687:476:000000000-LL5F5:1:1109:15226:9775_CONS(1)... at 1:92:1:92/+/97.83% +17 92nt, >M01687:476:000000000-LL5F5:1:1107:5358:4362_CONS(1)... at 1:92:1:92/+/97.83% +18 91nt, >M01687:476:000000000-LL5F5:1:1106:11576:1213_CONS(1)... at 1:91:1:92/+/97.80% +19 92nt, >M01687:476:000000000-LL5F5:1:1104:14189:22693_CONS(1)... at 1:92:1:92/+/97.83% +20 92nt, >M01687:476:000000000-LL5F5:1:1103:20456:4709_CONS(1)... at 1:92:1:92/+/97.83% +21 92nt, >M01687:476:000000000-LL5F5:1:2118:14409:1044_CONS(1)... at 1:92:1:92/+/97.83% +22 92nt, >M01687:476:000000000-LL5F5:1:2118:11150:6944_CONS(1)... at 1:92:1:92/+/97.83% +23 92nt, >M01687:476:000000000-LL5F5:1:2118:29668:13254_CONS(1)... at 1:92:1:92/+/97.83% +>Cluster 116 +0 92nt, >M01687:476:000000000-LL5F5:1:1102:8986:13896_CONS(1)... * +>Cluster 117 +0 92nt, >M01687:476:000000000-LL5F5:1:2114:3311:16644_CONS(1)... * +>Cluster 118 +0 92nt, >M01687:476:000000000-LL5F5:1:2110:25239:8373_CONS(1)... * +>Cluster 119 +0 92nt, >M01687:476:000000000-LL5F5:1:2110:24142:13465_CONS(1)... * +>Cluster 120 +0 92nt, >M01687:476:000000000-LL5F5:1:2106:9935:2386_CONS(1)... * +>Cluster 121 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:8926:6561_CONS(12)... at 1:90:1:92/+/97.78% +1 90nt, >M01687:476:000000000-LL5F5:1:2113:8838:14585_CONS(15)... at 1:90:1:92/+/98.89% +2 92nt, >M01687:476:000000000-LL5F5:1:2102:19228:18539_CONS(4)... * +3 90nt, >M01687:476:000000000-LL5F5:1:2116:8494:4954_CONS(1)... at 1:90:1:92/+/97.78% +4 90nt, >M01687:476:000000000-LL5F5:1:2117:23525:8615_CONS(1)... at 1:90:1:92/+/97.78% +5 89nt, >M01687:476:000000000-LL5F5:1:1111:15313:18896_CONS(1)... at 1:89:1:92/+/97.75% +6 90nt, >M01687:476:000000000-LL5F5:1:1107:18684:12768_CONS(1)... at 1:90:1:92/+/97.78% +7 92nt, >M01687:476:000000000-LL5F5:1:1105:9129:15313_CONS(1)... at 1:92:1:92/+/98.91% +8 91nt, >M01687:476:000000000-LL5F5:1:1118:15898:1915_CONS(1)... at 1:91:1:92/+/97.80% +9 89nt, >M01687:476:000000000-LL5F5:1:1117:8336:6666_CONS(1)... at 1:89:1:92/+/97.75% +>Cluster 122 +0 92nt, >M01687:476:000000000-LL5F5:1:2103:26556:12074_CONS(1)... * +1 91nt, >M01687:476:000000000-LL5F5:1:2103:7231:18553_CONS(2)... at 1:91:1:92/+/97.80% +>Cluster 123 +0 92nt, >M01687:476:000000000-LL5F5:1:2103:6860:17400_CONS(1)... * +1 30nt, >M01687:476:000000000-LL5F5:1:2116:3716:20266_CONS(1)... at 1:30:1:30/+/100.00% +>Cluster 124 +0 91nt, >M01687:476:000000000-LL5F5:1:2111:19482:4499_CONS(2)... at 1:91:1:91/+/97.80% +1 92nt, >M01687:476:000000000-LL5F5:1:2116:9813:12700_CONS(1)... * +>Cluster 125 +0 92nt, >M01687:476:000000000-LL5F5:1:1119:27763:18407_CONS(1)... * +>Cluster 126 +0 92nt, >M01687:476:000000000-LL5F5:1:1119:22406:19930_CONS(1)... * +>Cluster 127 +0 92nt, >M01687:476:000000000-LL5F5:1:1116:5818:9649_CONS(1)... * +>Cluster 128 +0 91nt, >M01687:476:000000000-LL5F5:1:2114:16432:22446_CONS(19)... at 1:91:1:92/+/100.00% +1 91nt, >M01687:476:000000000-LL5F5:1:2104:12495:15870_CONS(1)... at 1:91:1:92/+/98.90% +2 92nt, >M01687:476:000000000-LL5F5:1:1116:12375:10613_CONS(1)... * +>Cluster 129 +0 89nt, >M01687:476:000000000-LL5F5:1:1101:14411:22799_CONS(1)... at 1:89:1:92/+/98.88% +1 90nt, >M01687:476:000000000-LL5F5:1:2115:27621:20367_CONS(4)... at 1:90:1:92/+/100.00% +2 90nt, >M01687:476:000000000-LL5F5:1:2114:22716:6382_CONS(1)... at 1:90:1:92/+/98.89% +3 89nt, >M01687:476:000000000-LL5F5:1:2110:16738:4775_CONS(1)... at 1:89:1:92/+/100.00% +4 91nt, >M01687:476:000000000-LL5F5:1:2117:2824:12503_CONS(4)... at 1:91:1:92/+/100.00% +5 89nt, >M01687:476:000000000-LL5F5:1:1114:13241:20832_CONS(1)... at 1:89:1:92/+/98.88% +6 92nt, >M01687:476:000000000-LL5F5:1:1110:26771:7466_CONS(1)... * +>Cluster 130 +0 92nt, >M01687:476:000000000-LL5F5:1:1108:4312:7734_CONS(1)... * +>Cluster 131 +0 91nt, >M01687:476:000000000-LL5F5:1:1113:19888:22895_CONS(1)... at 1:91:2:92/+/97.80% +1 92nt, >M01687:476:000000000-LL5F5:1:1108:9324:10962_CONS(1)... * +>Cluster 132 +0 92nt, >M01687:476:000000000-LL5F5:1:1105:28008:8286_CONS(1)... * +>Cluster 133 +0 92nt, >M01687:476:000000000-LL5F5:1:1103:17101:1463_CONS(1)... * +>Cluster 134 +0 92nt, >M01687:476:000000000-LL5F5:1:1103:11709:19222_CONS(1)... * +>Cluster 135 +0 92nt, >M01687:476:000000000-LL5F5:1:1117:29705:13585_CONS(1)... * +>Cluster 136 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:8317:1337_CONS(1132)... at 1:90:1:91/+/97.78% +1 90nt, >M01687:476:000000000-LL5F5:1:1102:2406:11759_CONS(24)... at 1:90:1:91/+/97.78% +2 91nt, >M01687:476:000000000-LL5F5:1:1102:14474:15844_CONS(113)... * +3 89nt, >M01687:476:000000000-LL5F5:1:1101:6206:10070_CONS(1)... at 1:89:1:91/+/98.88% +4 91nt, >M01687:476:000000000-LL5F5:1:1101:16597:16612_CONS(1)... at 1:91:1:91/+/98.90% +5 90nt, >M01687:476:000000000-LL5F5:1:2114:28082:6642_CONS(2)... at 1:90:1:91/+/100.00% +6 90nt, >M01687:476:000000000-LL5F5:1:2114:6457:17633_CONS(1)... at 1:90:1:91/+/100.00% +7 85nt, >M01687:476:000000000-LL5F5:1:2113:20691:5207_CONS(1)... at 1:85:1:86/+/97.65% +8 89nt, >M01687:476:000000000-LL5F5:1:2113:7899:16789_CONS(2)... at 1:89:1:90/+/97.75% +9 91nt, >M01687:476:000000000-LL5F5:1:2112:6364:23370_CONS(1)... at 1:91:1:91/+/98.90% +10 90nt, >M01687:476:000000000-LL5F5:1:2110:10548:5740_CONS(1)... at 1:90:1:91/+/100.00% +11 90nt, >M01687:476:000000000-LL5F5:1:2109:9631:10416_CONS(1)... at 1:90:1:91/+/97.78% +12 89nt, >M01687:476:000000000-LL5F5:1:2109:25719:16853_CONS(3)... at 1:89:1:91/+/97.75% +13 89nt, >M01687:476:000000000-LL5F5:1:2106:12097:12380_CONS(1)... at 1:89:1:90/+/100.00% +14 91nt, >M01687:476:000000000-LL5F5:1:2104:12161:6570_CONS(1)... at 1:91:1:91/+/98.90% +15 89nt, >M01687:476:000000000-LL5F5:1:2105:17449:14110_CONS(1)... at 1:89:2:91/+/97.75% +16 89nt, >M01687:476:000000000-LL5F5:1:2105:12635:20163_CONS(1)... at 1:89:1:91/+/97.75% +17 90nt, >M01687:476:000000000-LL5F5:1:2105:22520:22584_CONS(1)... at 1:90:1:91/+/100.00% +18 91nt, >M01687:476:000000000-LL5F5:1:2102:5645:20295_CONS(1)... at 1:91:1:91/+/98.90% +19 89nt, >M01687:476:000000000-LL5F5:1:2116:17892:21158_CONS(1)... at 1:89:1:91/+/98.88% +20 90nt, >M01687:476:000000000-LL5F5:1:2116:6801:23789_CONS(1)... at 1:90:1:91/+/97.78% +21 89nt, >M01687:476:000000000-LL5F5:1:2117:8545:18409_CONS(1)... at 1:89:1:91/+/98.88% +22 91nt, >M01687:476:000000000-LL5F5:1:1119:9143:13903_CONS(1)... at 1:91:1:91/+/98.90% +23 91nt, >M01687:476:000000000-LL5F5:1:2101:10672:8432_CONS(1)... at 1:91:1:91/+/98.90% +24 91nt, >M01687:476:000000000-LL5F5:1:1112:16357:7980_CONS(1)... at 1:91:1:91/+/98.90% +25 91nt, >M01687:476:000000000-LL5F5:1:1112:22478:20700_CONS(1)... at 1:91:1:91/+/98.90% +26 91nt, >M01687:476:000000000-LL5F5:1:1111:6596:6415_CONS(1)... at 1:91:1:91/+/98.90% +27 90nt, >M01687:476:000000000-LL5F5:1:1110:14182:6489_CONS(1)... at 1:90:1:91/+/100.00% +28 90nt, >M01687:476:000000000-LL5F5:1:1108:6073:13398_CONS(1)... at 1:90:1:91/+/98.89% +29 91nt, >M01687:476:000000000-LL5F5:1:1107:13973:24827_CONS(1)... at 1:91:1:91/+/97.80% +>Cluster 137 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:20050:22415_CONS(1)... at 1:90:1:91/+/98.89% +1 90nt, >M01687:476:000000000-LL5F5:1:1101:26027:19575_CONS(1)... at 1:90:1:91/+/98.89% +2 90nt, >M01687:476:000000000-LL5F5:1:1101:14448:22314_CONS(3)... at 1:90:1:91/+/98.89% +3 90nt, >M01687:476:000000000-LL5F5:1:2115:24295:6358_CONS(1)... at 1:90:1:91/+/98.89% +4 71nt, >M01687:476:000000000-LL5F5:1:2115:6565:8692_CONS(1)... at 1:71:1:71/+/98.59% +5 91nt, >M01687:476:000000000-LL5F5:1:2115:28231:19069_CONS(1)... * +6 89nt, >M01687:476:000000000-LL5F5:1:2114:6381:9986_CONS(7)... at 1:89:1:91/+/100.00% +7 90nt, >M01687:476:000000000-LL5F5:1:2114:24916:13464_CONS(1)... at 1:90:1:91/+/98.89% +8 90nt, >M01687:476:000000000-LL5F5:1:2114:19506:22368_CONS(1)... at 1:90:1:91/+/98.89% +9 90nt, >M01687:476:000000000-LL5F5:1:2114:20451:22530_CONS(1)... at 1:90:1:91/+/98.89% +10 90nt, >M01687:476:000000000-LL5F5:1:2114:13778:23324_CONS(1)... at 1:90:1:91/+/98.89% +11 90nt, >M01687:476:000000000-LL5F5:1:2114:12838:24944_CONS(11)... at 1:90:1:91/+/98.89% +12 90nt, >M01687:476:000000000-LL5F5:1:2113:11536:2907_CONS(1)... at 1:90:1:91/+/98.89% +13 90nt, >M01687:476:000000000-LL5F5:1:2113:6913:5299_CONS(2)... at 1:90:1:91/+/98.89% +14 90nt, >M01687:476:000000000-LL5F5:1:2113:9148:7070_CONS(1)... at 1:90:1:91/+/98.89% +15 89nt, >M01687:476:000000000-LL5F5:1:2113:5821:16213_CONS(1)... at 1:89:1:91/+/100.00% +16 90nt, >M01687:476:000000000-LL5F5:1:2113:2817:17781_CONS(1)... at 1:90:1:91/+/98.89% +17 90nt, >M01687:476:000000000-LL5F5:1:2112:24380:18013_CONS(1)... at 1:90:1:91/+/98.89% +18 90nt, >M01687:476:000000000-LL5F5:1:2111:21086:3850_CONS(1)... at 1:90:1:91/+/98.89% +19 89nt, >M01687:476:000000000-LL5F5:1:2110:18595:7850_CONS(1)... at 1:89:1:91/+/98.88% +20 90nt, >M01687:476:000000000-LL5F5:1:2110:11460:17606_CONS(2)... at 1:90:1:91/+/98.89% +21 90nt, >M01687:476:000000000-LL5F5:1:2109:22461:17018_CONS(6)... at 1:90:1:91/+/98.89% +22 90nt, >M01687:476:000000000-LL5F5:1:2109:5403:17958_CONS(2)... at 1:90:1:91/+/98.89% +23 90nt, >M01687:476:000000000-LL5F5:1:2109:14546:19689_CONS(1)... at 1:90:1:91/+/98.89% +24 90nt, >M01687:476:000000000-LL5F5:1:2109:12871:23318_CONS(1)... at 1:90:1:91/+/98.89% +25 90nt, >M01687:476:000000000-LL5F5:1:2108:20698:2215_CONS(1)... at 1:90:1:91/+/98.89% +26 89nt, >M01687:476:000000000-LL5F5:1:2108:27368:7921_CONS(1)... at 1:89:1:91/+/98.88% +27 90nt, >M01687:476:000000000-LL5F5:1:2106:24518:10345_CONS(2)... at 1:90:1:91/+/98.89% +28 90nt, >M01687:476:000000000-LL5F5:1:2107:17220:1829_CONS(1)... at 1:90:1:91/+/98.89% +29 90nt, >M01687:476:000000000-LL5F5:1:2107:27729:8388_CONS(3)... at 1:90:1:91/+/98.89% +30 90nt, >M01687:476:000000000-LL5F5:1:2107:25670:12497_CONS(1)... at 1:90:1:91/+/98.89% +31 90nt, >M01687:476:000000000-LL5F5:1:2107:19407:20500_CONS(1)... at 1:90:1:91/+/98.89% +32 90nt, >M01687:476:000000000-LL5F5:1:2107:15902:23940_CONS(2)... at 1:90:1:91/+/98.89% +33 90nt, >M01687:476:000000000-LL5F5:1:2104:10874:5368_CONS(1)... at 1:90:1:91/+/98.89% +34 89nt, >M01687:476:000000000-LL5F5:1:2104:28676:10278_CONS(1)... at 1:89:1:91/+/100.00% +35 90nt, >M01687:476:000000000-LL5F5:1:2105:26489:10593_CONS(1)... at 1:90:1:91/+/98.89% +36 89nt, >M01687:476:000000000-LL5F5:1:2105:7491:11150_CONS(1)... at 1:89:1:90/+/98.88% +37 90nt, >M01687:476:000000000-LL5F5:1:2105:2367:15240_CONS(1)... at 1:90:1:91/+/98.89% +38 90nt, >M01687:476:000000000-LL5F5:1:2102:15665:6167_CONS(1)... at 1:90:1:91/+/98.89% +39 90nt, >M01687:476:000000000-LL5F5:1:2102:2981:8153_CONS(2)... at 1:90:1:91/+/98.89% +40 90nt, >M01687:476:000000000-LL5F5:1:2103:9582:20695_CONS(1)... at 1:90:1:91/+/98.89% +41 90nt, >M01687:476:000000000-LL5F5:1:2116:19521:16674_CONS(3)... at 1:90:1:91/+/98.89% +42 90nt, >M01687:476:000000000-LL5F5:1:2117:23680:8792_CONS(1)... at 1:90:1:91/+/98.89% +43 89nt, >M01687:476:000000000-LL5F5:1:2117:13652:18261_CONS(2)... at 1:89:1:91/+/100.00% +44 90nt, >M01687:476:000000000-LL5F5:1:1119:21074:18310_CONS(1)... at 1:90:1:91/+/98.89% +45 90nt, >M01687:476:000000000-LL5F5:1:1119:8621:21721_CONS(2)... at 1:90:1:91/+/98.89% +46 90nt, >M01687:476:000000000-LL5F5:1:2101:3855:14682_CONS(1)... at 1:90:1:91/+/98.89% +47 90nt, >M01687:476:000000000-LL5F5:1:2101:12095:15959_CONS(1)... at 1:90:1:91/+/98.89% +48 90nt, >M01687:476:000000000-LL5F5:1:2101:6487:20069_CONS(2)... at 1:90:1:91/+/98.89% +49 90nt, >M01687:476:000000000-LL5F5:1:2101:14189:20526_CONS(1)... at 1:90:1:91/+/98.89% +50 91nt, >M01687:476:000000000-LL5F5:1:1115:12930:5073_CONS(1)... at 1:91:1:91/+/98.90% +51 88nt, >M01687:476:000000000-LL5F5:1:1114:12182:3164_CONS(1)... at 1:88:1:90/+/100.00% +52 90nt, >M01687:476:000000000-LL5F5:1:1114:27090:11084_CONS(1)... at 1:90:1:91/+/98.89% +53 91nt, >M01687:476:000000000-LL5F5:1:1113:13476:7483_CONS(1)... at 1:91:1:91/+/98.90% +54 90nt, >M01687:476:000000000-LL5F5:1:1113:6906:17212_CONS(1)... at 1:90:1:91/+/97.78% +55 90nt, >M01687:476:000000000-LL5F5:1:1112:23311:9891_CONS(1)... at 1:90:1:91/+/98.89% +56 89nt, >M01687:476:000000000-LL5F5:1:1112:2234:13510_CONS(1)... at 1:89:1:91/+/98.88% +57 90nt, >M01687:476:000000000-LL5F5:1:1112:1888:15033_CONS(2)... at 1:90:1:91/+/98.89% +58 90nt, >M01687:476:000000000-LL5F5:1:1111:9162:9311_CONS(1)... at 1:90:1:91/+/98.89% +59 90nt, >M01687:476:000000000-LL5F5:1:1111:18932:20431_CONS(2)... at 1:90:1:91/+/98.89% +60 90nt, >M01687:476:000000000-LL5F5:1:1111:17529:23203_CONS(1)... at 1:90:1:91/+/98.89% +61 90nt, >M01687:476:000000000-LL5F5:1:1111:17637:24613_CONS(1)... at 1:90:1:91/+/98.89% +62 90nt, >M01687:476:000000000-LL5F5:1:1110:25529:17166_CONS(1)... at 1:90:1:91/+/98.89% +63 90nt, >M01687:476:000000000-LL5F5:1:1109:21730:13212_CONS(1)... at 1:90:1:91/+/98.89% +64 90nt, >M01687:476:000000000-LL5F5:1:1109:15147:20079_CONS(1)... at 1:90:1:91/+/98.89% +65 90nt, >M01687:476:000000000-LL5F5:1:1109:16787:20910_CONS(1)... at 1:90:1:91/+/98.89% +66 90nt, >M01687:476:000000000-LL5F5:1:1109:16708:22871_CONS(1)... at 1:90:1:91/+/98.89% +67 90nt, >M01687:476:000000000-LL5F5:1:1108:8571:10716_CONS(1)... at 1:90:1:91/+/98.89% +68 90nt, >M01687:476:000000000-LL5F5:1:1108:3683:12011_CONS(1)... at 1:90:1:91/+/98.89% +69 89nt, >M01687:476:000000000-LL5F5:1:1108:17623:19250_CONS(1)... at 1:89:1:91/+/98.88% +70 90nt, >M01687:476:000000000-LL5F5:1:1107:21329:2523_CONS(1)... at 1:90:1:91/+/98.89% +71 91nt, >M01687:476:000000000-LL5F5:1:1107:20419:21360_CONS(1)... at 1:91:1:91/+/97.80% +72 90nt, >M01687:476:000000000-LL5F5:1:1107:25081:22326_CONS(1)... at 1:90:1:91/+/98.89% +73 90nt, >M01687:476:000000000-LL5F5:1:1106:27542:9771_CONS(3)... at 1:90:1:91/+/98.89% +74 90nt, >M01687:476:000000000-LL5F5:1:1105:24710:9611_CONS(1)... at 1:90:1:91/+/98.89% +75 89nt, >M01687:476:000000000-LL5F5:1:1105:17397:11006_CONS(1)... at 1:89:1:91/+/100.00% +76 90nt, >M01687:476:000000000-LL5F5:1:1105:11007:11776_CONS(1)... at 1:90:1:91/+/98.89% +77 89nt, >M01687:476:000000000-LL5F5:1:1104:7718:1724_CONS(1)... at 1:89:1:91/+/98.88% +78 90nt, >M01687:476:000000000-LL5F5:1:1103:22621:20186_CONS(1)... at 1:90:1:91/+/98.89% +79 90nt, >M01687:476:000000000-LL5F5:1:1118:9997:23769_CONS(1)... at 1:90:1:91/+/98.89% +80 90nt, >M01687:476:000000000-LL5F5:1:2118:10824:17258_CONS(1)... at 1:90:1:91/+/98.89% +81 90nt, >M01687:476:000000000-LL5F5:1:2119:13982:16416_CONS(1)... at 1:90:1:91/+/98.89% +>Cluster 138 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:20154:3884_CONS(336)... at 1:90:1:91/+/100.00% +1 90nt, >M01687:476:000000000-LL5F5:1:1102:15429:4458_CONS(71)... at 1:90:1:91/+/98.89% +2 89nt, >M01687:476:000000000-LL5F5:1:1102:7303:12418_CONS(1)... at 1:89:1:91/+/100.00% +3 91nt, >M01687:476:000000000-LL5F5:1:2113:18410:13353_CONS(1)... * +4 91nt, >M01687:476:000000000-LL5F5:1:2113:17588:18267_CONS(1)... at 1:91:1:91/+/98.90% +5 38nt, >M01687:476:000000000-LL5F5:1:2113:10787:19017_CONS(1)... at 1:38:1:39/+/97.37% +6 90nt, >M01687:476:000000000-LL5F5:1:2111:18031:4278_CONS(1)... at 1:90:1:91/+/98.89% +7 89nt, >M01687:476:000000000-LL5F5:1:2111:22157:6712_CONS(1)... at 1:89:1:91/+/98.88% +8 88nt, >M01687:476:000000000-LL5F5:1:2111:2312:13213_CONS(1)... at 1:88:1:91/+/100.00% +9 89nt, >M01687:476:000000000-LL5F5:1:2111:22208:19305_CONS(1)... at 1:89:1:91/+/100.00% +10 90nt, >M01687:476:000000000-LL5F5:1:2110:7336:8925_CONS(1)... at 1:90:1:91/+/98.89% +11 91nt, >M01687:476:000000000-LL5F5:1:2109:10986:3856_CONS(1)... at 1:91:1:91/+/98.90% +12 90nt, >M01687:476:000000000-LL5F5:1:2109:20308:20276_CONS(1)... at 1:90:1:91/+/98.89% +13 89nt, >M01687:476:000000000-LL5F5:1:2108:29198:14828_CONS(2)... at 1:89:1:91/+/100.00% +14 89nt, >M01687:476:000000000-LL5F5:1:2108:22562:20838_CONS(2)... at 1:89:1:90/+/100.00% +15 90nt, >M01687:476:000000000-LL5F5:1:2106:6038:5052_CONS(1)... at 1:90:1:91/+/98.89% +16 90nt, >M01687:476:000000000-LL5F5:1:2106:8381:11435_CONS(1)... at 1:90:1:91/+/97.78% +17 90nt, >M01687:476:000000000-LL5F5:1:2105:12957:5850_CONS(2)... at 1:90:1:91/+/98.89% +18 90nt, >M01687:476:000000000-LL5F5:1:2105:23944:7940_CONS(1)... at 1:90:1:91/+/98.89% +19 89nt, >M01687:476:000000000-LL5F5:1:2102:2441:17317_CONS(1)... at 1:89:1:91/+/100.00% +20 90nt, >M01687:476:000000000-LL5F5:1:2102:9310:22949_CONS(2)... at 1:90:1:91/+/98.89% +21 90nt, >M01687:476:000000000-LL5F5:1:2103:14602:4676_CONS(1)... at 1:90:1:91/+/98.89% +22 90nt, >M01687:476:000000000-LL5F5:1:1119:26099:8853_CONS(1)... at 1:90:1:91/+/98.89% +23 89nt, >M01687:476:000000000-LL5F5:1:2101:25763:11874_CONS(2)... at 1:89:1:91/+/100.00% +24 38nt, >M01687:476:000000000-LL5F5:1:2101:2626:16461_CONS(1)... at 1:38:1:38/+/97.37% +25 89nt, >M01687:476:000000000-LL5F5:1:2101:24468:16997_CONS(1)... at 1:89:2:91/+/100.00% +26 90nt, >M01687:476:000000000-LL5F5:1:1115:3351:13300_CONS(1)... at 1:90:1:91/+/98.89% +27 90nt, >M01687:476:000000000-LL5F5:1:1114:20042:5223_CONS(1)... at 1:90:1:91/+/98.89% +28 90nt, >M01687:476:000000000-LL5F5:1:1114:13610:5945_CONS(1)... at 1:90:1:91/+/98.89% +29 90nt, >M01687:476:000000000-LL5F5:1:1113:4200:17037_CONS(1)... at 1:90:1:91/+/98.89% +30 90nt, >M01687:476:000000000-LL5F5:1:1112:9776:7554_CONS(1)... at 1:90:1:91/+/98.89% +31 90nt, >M01687:476:000000000-LL5F5:1:1111:29126:15035_CONS(1)... at 1:90:1:91/+/97.78% +32 90nt, >M01687:476:000000000-LL5F5:1:1111:4096:17481_CONS(1)... at 1:90:1:91/+/98.89% +33 90nt, >M01687:476:000000000-LL5F5:1:1110:7305:6012_CONS(1)... at 1:90:1:91/+/98.89% +34 90nt, >M01687:476:000000000-LL5F5:1:1110:10591:11912_CONS(1)... at 1:90:1:91/+/98.89% +35 90nt, >M01687:476:000000000-LL5F5:1:1110:28470:14907_CONS(2)... at 1:90:1:91/+/98.89% +36 90nt, >M01687:476:000000000-LL5F5:1:1108:23673:14850_CONS(1)... at 1:90:1:91/+/98.89% +37 90nt, >M01687:476:000000000-LL5F5:1:1108:7728:19803_CONS(1)... at 1:90:1:91/+/98.89% +38 90nt, >M01687:476:000000000-LL5F5:1:1104:26041:17093_CONS(1)... at 1:90:1:91/+/98.89% +39 90nt, >M01687:476:000000000-LL5F5:1:1103:16343:5203_CONS(1)... at 1:90:1:91/+/97.78% +40 90nt, >M01687:476:000000000-LL5F5:1:1118:4987:6490_CONS(1)... at 1:90:1:91/+/98.89% +41 90nt, >M01687:476:000000000-LL5F5:1:1118:22936:10958_CONS(1)... at 1:90:1:91/+/98.89% +42 90nt, >M01687:476:000000000-LL5F5:1:1118:6512:17373_CONS(1)... at 1:90:1:91/+/98.89% +43 90nt, >M01687:476:000000000-LL5F5:1:1118:18007:21067_CONS(1)... at 1:90:1:91/+/98.89% +44 89nt, >M01687:476:000000000-LL5F5:1:1118:8582:23104_CONS(1)... at 1:89:1:90/+/98.88% +45 90nt, >M01687:476:000000000-LL5F5:1:2119:26924:8930_CONS(1)... at 1:90:1:91/+/98.89% +46 90nt, >M01687:476:000000000-LL5F5:1:2119:29646:12814_CONS(1)... at 1:90:1:91/+/98.89% +>Cluster 139 +0 91nt, >M01687:476:000000000-LL5F5:1:2104:10545:6189_CONS(1)... * +>Cluster 140 +0 91nt, >M01687:476:000000000-LL5F5:1:2105:10871:2764_CONS(2)... * +>Cluster 141 +0 40nt, >M01687:476:000000000-LL5F5:1:2114:4044:6427_CONS(1)... at 1:40:1:40/+/97.50% +1 91nt, >M01687:476:000000000-LL5F5:1:2103:10051:7040_CONS(1)... * +>Cluster 142 +0 91nt, >M01687:476:000000000-LL5F5:1:1110:18340:8222_CONS(1)... * +>Cluster 143 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:13690:2465_CONS(1)... at 1:90:1:91/+/98.89% +1 90nt, >M01687:476:000000000-LL5F5:1:1102:21772:9185_CONS(103)... at 1:90:1:91/+/100.00% +2 90nt, >M01687:476:000000000-LL5F5:1:1101:14513:12075_CONS(2)... at 1:90:1:91/+/98.89% +3 90nt, >M01687:476:000000000-LL5F5:1:2114:26155:8350_CONS(1)... at 1:90:1:91/+/98.89% +4 90nt, >M01687:476:000000000-LL5F5:1:2113:15964:19966_CONS(3)... at 1:90:1:91/+/98.89% +5 90nt, >M01687:476:000000000-LL5F5:1:2113:12823:24214_CONS(1)... at 1:90:1:91/+/98.89% +6 90nt, >M01687:476:000000000-LL5F5:1:2112:18447:17954_CONS(1)... at 1:90:1:91/+/98.89% +7 88nt, >M01687:476:000000000-LL5F5:1:2111:26586:4380_CONS(1)... at 1:88:1:89/+/100.00% +8 90nt, >M01687:476:000000000-LL5F5:1:2108:18060:21166_CONS(1)... at 1:90:1:91/+/98.89% +9 90nt, >M01687:476:000000000-LL5F5:1:2106:9109:3691_CONS(1)... at 1:90:1:91/+/98.89% +10 89nt, >M01687:476:000000000-LL5F5:1:2103:21987:22386_CONS(2)... at 1:89:1:91/+/100.00% +11 90nt, >M01687:476:000000000-LL5F5:1:1119:9923:17992_CONS(1)... at 1:90:1:91/+/98.89% +12 90nt, >M01687:476:000000000-LL5F5:1:1107:2925:17958_CONS(1)... at 1:90:1:91/+/98.89% +13 90nt, >M01687:476:000000000-LL5F5:1:1106:20932:22746_CONS(1)... at 1:90:1:91/+/98.89% +14 90nt, >M01687:476:000000000-LL5F5:1:1118:9083:8610_CONS(1)... at 1:90:1:91/+/98.89% +15 91nt, >M01687:476:000000000-LL5F5:1:2119:7371:3198_CONS(2)... * +>Cluster 144 +0 90nt, >M01687:476:000000000-LL5F5:1:1102:24074:19862_CONS(19)... * +>Cluster 145 +0 89nt, >M01687:476:000000000-LL5F5:1:1102:9723:6126_CONS(89)... at 1:89:1:90/+/97.75% +1 90nt, >M01687:476:000000000-LL5F5:1:2115:23318:3844_CONS(8)... * +2 90nt, >M01687:476:000000000-LL5F5:1:2114:17618:20620_CONS(1)... at 1:90:1:90/+/98.89% +3 90nt, >M01687:476:000000000-LL5F5:1:2109:26310:5570_CONS(1)... at 1:90:1:90/+/98.89% +4 88nt, >M01687:476:000000000-LL5F5:1:2109:15790:6804_CONS(3)... at 1:88:1:90/+/97.73% +5 90nt, >M01687:476:000000000-LL5F5:1:1105:16314:17050_CONS(1)... at 1:90:1:90/+/97.78% +>Cluster 146 +0 90nt, >M01687:476:000000000-LL5F5:1:2114:19108:14053_CONS(2)... * +>Cluster 147 +0 90nt, >M01687:476:000000000-LL5F5:1:2114:16883:18620_CONS(1)... * +>Cluster 148 +0 90nt, >M01687:476:000000000-LL5F5:1:2113:21491:17225_CONS(1)... * +1 89nt, >M01687:476:000000000-LL5F5:1:2112:20623:12916_CONS(2)... at 1:89:2:90/+/98.88% +2 90nt, >M01687:476:000000000-LL5F5:1:2109:14390:23944_CONS(1)... at 1:90:1:90/+/97.78% +3 90nt, >M01687:476:000000000-LL5F5:1:1119:16901:14263_CONS(1)... at 1:90:1:90/+/97.78% +4 89nt, >M01687:476:000000000-LL5F5:1:1119:12245:19892_CONS(2)... at 1:89:1:89/+/97.75% +5 90nt, >M01687:476:000000000-LL5F5:1:1115:5363:21787_CONS(1)... at 1:90:1:90/+/97.78% +6 89nt, >M01687:476:000000000-LL5F5:1:1113:17546:24872_CONS(1)... at 1:89:1:90/+/98.88% +7 89nt, >M01687:476:000000000-LL5F5:1:1110:10290:6509_CONS(1)... at 1:89:1:90/+/98.88% +8 89nt, >M01687:476:000000000-LL5F5:1:1110:15757:19702_CONS(1)... at 1:89:1:90/+/98.88% +9 89nt, >M01687:476:000000000-LL5F5:1:1108:9559:21007_CONS(1)... at 1:89:2:90/+/97.75% +10 90nt, >M01687:476:000000000-LL5F5:1:1103:19434:17343_CONS(1)... at 1:90:1:90/+/97.78% +>Cluster 149 +0 89nt, >M01687:476:000000000-LL5F5:1:1102:17295:1141_CONS(309)... at 1:89:1:90/+/100.00% +1 89nt, >M01687:476:000000000-LL5F5:1:1101:22353:12908_CONS(1)... at 1:89:1:90/+/98.88% +2 89nt, >M01687:476:000000000-LL5F5:1:2115:8143:2467_CONS(10)... at 1:89:1:90/+/98.88% +3 90nt, >M01687:476:000000000-LL5F5:1:2112:22007:16014_CONS(1)... * +4 89nt, >M01687:476:000000000-LL5F5:1:2111:21126:23458_CONS(1)... at 1:89:1:90/+/98.88% +5 89nt, >M01687:476:000000000-LL5F5:1:2110:8912:4925_CONS(1)... at 1:89:1:90/+/98.88% +6 88nt, >M01687:476:000000000-LL5F5:1:2110:9098:21000_CONS(2)... at 1:88:1:90/+/100.00% +7 87nt, >M01687:476:000000000-LL5F5:1:2107:26651:8029_CONS(1)... at 1:87:1:90/+/100.00% +8 89nt, >M01687:476:000000000-LL5F5:1:2107:10286:15306_CONS(1)... at 1:89:1:90/+/98.88% +9 89nt, >M01687:476:000000000-LL5F5:1:2104:21038:3177_CONS(1)... at 1:89:1:90/+/98.88% +10 88nt, >M01687:476:000000000-LL5F5:1:2104:24185:12384_CONS(2)... at 1:88:1:90/+/100.00% +11 89nt, >M01687:476:000000000-LL5F5:1:2104:29120:16100_CONS(2)... at 1:89:1:90/+/98.88% +12 89nt, >M01687:476:000000000-LL5F5:1:2104:26669:18296_CONS(1)... at 1:89:1:90/+/98.88% +13 88nt, >M01687:476:000000000-LL5F5:1:2117:21162:6625_CONS(2)... at 1:88:1:89/+/100.00% +14 89nt, >M01687:476:000000000-LL5F5:1:2117:7225:8248_CONS(1)... at 1:89:1:90/+/98.88% +15 88nt, >M01687:476:000000000-LL5F5:1:2117:5700:9918_CONS(2)... at 1:88:1:90/+/100.00% +16 89nt, >M01687:476:000000000-LL5F5:1:1119:22770:19723_CONS(2)... at 1:89:1:90/+/98.88% +17 88nt, >M01687:476:000000000-LL5F5:1:1119:8219:24262_CONS(1)... at 1:88:1:90/+/100.00% +18 89nt, >M01687:476:000000000-LL5F5:1:1115:23053:9000_CONS(1)... at 1:89:1:90/+/98.88% +19 89nt, >M01687:476:000000000-LL5F5:1:1116:3644:19621_CONS(1)... at 1:89:1:90/+/98.88% +20 89nt, >M01687:476:000000000-LL5F5:1:1114:16774:13964_CONS(1)... at 1:89:1:90/+/98.88% +21 88nt, >M01687:476:000000000-LL5F5:1:1112:10502:11735_CONS(1)... at 1:88:1:90/+/100.00% +22 89nt, >M01687:476:000000000-LL5F5:1:1112:13751:12611_CONS(1)... at 1:89:1:90/+/97.75% +23 89nt, >M01687:476:000000000-LL5F5:1:1110:25844:9317_CONS(1)... at 1:89:1:90/+/98.88% +24 88nt, >M01687:476:000000000-LL5F5:1:1109:8987:20933_CONS(1)... at 1:88:1:90/+/100.00% +25 89nt, >M01687:476:000000000-LL5F5:1:1108:18730:4073_CONS(1)... at 1:89:1:90/+/98.88% +26 89nt, >M01687:476:000000000-LL5F5:1:1108:7694:7051_CONS(1)... at 1:89:1:90/+/98.88% +27 89nt, >M01687:476:000000000-LL5F5:1:1103:7135:6526_CONS(1)... at 1:89:1:90/+/98.88% +28 89nt, >M01687:476:000000000-LL5F5:1:1118:12837:23296_CONS(1)... at 1:89:1:90/+/97.75% +>Cluster 150 +0 90nt, >M01687:476:000000000-LL5F5:1:2108:2913:12437_CONS(1)... * +>Cluster 151 +0 90nt, >M01687:476:000000000-LL5F5:1:2102:10712:11391_CONS(1)... * +>Cluster 152 +0 90nt, >M01687:476:000000000-LL5F5:1:2103:6349:14123_CONS(1)... * +1 89nt, >M01687:476:000000000-LL5F5:1:1109:5350:10562_CONS(1)... at 1:89:1:90/+/98.88% +>Cluster 153 +0 90nt, >M01687:476:000000000-LL5F5:1:2101:22575:18405_CONS(1)... * +1 90nt, >M01687:476:000000000-LL5F5:1:2119:26444:4940_CONS(1)... at 1:90:1:90/+/97.78% +>Cluster 154 +0 90nt, >M01687:476:000000000-LL5F5:1:1114:4514:11972_CONS(1)... * +1 39nt, >M01687:476:000000000-LL5F5:1:1107:4595:8845_CONS(1)... at 1:39:1:40/+/97.44% +>Cluster 155 +0 90nt, >M01687:476:000000000-LL5F5:1:1111:25164:17114_CONS(4)... * +>Cluster 156 +0 90nt, >M01687:476:000000000-LL5F5:1:1110:21885:16160_CONS(1)... * +>Cluster 157 +0 90nt, >M01687:476:000000000-LL5F5:1:1104:4893:4403_CONS(1)... * +>Cluster 158 +0 88nt, >M01687:476:000000000-LL5F5:1:2108:12990:15570_CONS(1)... at 1:88:1:90/+/98.86% +1 87nt, >M01687:476:000000000-LL5F5:1:2101:12712:13393_CONS(1)... at 1:87:1:90/+/98.85% +2 87nt, >M01687:476:000000000-LL5F5:1:1106:28732:12595_CONS(1)... at 1:87:1:88/+/97.70% +3 90nt, >M01687:476:000000000-LL5F5:1:1104:24402:7089_CONS(1)... * +>Cluster 159 +0 90nt, >M01687:476:000000000-LL5F5:1:1117:6723:22983_CONS(1)... * +>Cluster 160 +0 90nt, >M01687:476:000000000-LL5F5:1:2118:5373:14749_CONS(1)... * +>Cluster 161 +0 89nt, >M01687:476:000000000-LL5F5:1:1102:12338:5835_CONS(46)... * +1 89nt, >M01687:476:000000000-LL5F5:1:2111:23213:24407_CONS(1)... at 1:89:1:89/+/97.75% +2 89nt, >M01687:476:000000000-LL5F5:1:2110:24967:11172_CONS(1)... at 1:89:1:89/+/98.88% +3 89nt, >M01687:476:000000000-LL5F5:1:2108:8446:7038_CONS(1)... at 1:89:1:89/+/97.75% +4 89nt, >M01687:476:000000000-LL5F5:1:2103:25715:4463_CONS(1)... at 1:89:1:89/+/98.88% +5 89nt, >M01687:476:000000000-LL5F5:1:2118:10559:12708_CONS(1)... at 1:89:1:89/+/97.75% +>Cluster 162 +0 89nt, >M01687:476:000000000-LL5F5:1:1101:18288:4851_CONS(1)... * +>Cluster 163 +0 89nt, >M01687:476:000000000-LL5F5:1:2115:25568:5850_CONS(1)... * +>Cluster 164 +0 89nt, >M01687:476:000000000-LL5F5:1:2115:21748:8980_CONS(1)... * +1 41nt, >M01687:476:000000000-LL5F5:1:2113:14705:17247_CONS(1)... at 1:41:1:41/+/97.56% +2 40nt, >M01687:476:000000000-LL5F5:1:2108:2858:18680_CONS(1)... at 1:40:1:40/+/97.50% +3 40nt, >M01687:476:000000000-LL5F5:1:2106:8444:18007_CONS(1)... at 1:40:1:40/+/97.50% +4 41nt, >M01687:476:000000000-LL5F5:1:1111:9033:13787_CONS(1)... at 1:41:1:41/+/97.56% +5 41nt, >M01687:476:000000000-LL5F5:1:1104:8948:24660_CONS(1)... at 1:41:1:41/+/97.56% +>Cluster 165 +0 89nt, >M01687:476:000000000-LL5F5:1:2115:17808:15531_CONS(1)... * +>Cluster 166 +0 89nt, >M01687:476:000000000-LL5F5:1:2114:19155:4308_CONS(13)... * +1 89nt, >M01687:476:000000000-LL5F5:1:1117:11316:6653_CONS(1)... at 1:89:1:89/+/98.88% +>Cluster 167 +0 89nt, >M01687:476:000000000-LL5F5:1:2112:22419:21546_CONS(10)... * +1 89nt, >M01687:476:000000000-LL5F5:1:2105:21261:13466_CONS(2)... at 1:89:1:89/+/98.88% +>Cluster 168 +0 89nt, >M01687:476:000000000-LL5F5:1:2111:12219:21086_CONS(1)... * +1 87nt, >M01687:476:000000000-LL5F5:1:1114:7806:5609_CONS(1)... at 1:87:1:89/+/98.85% +2 88nt, >M01687:476:000000000-LL5F5:1:1109:5507:20678_CONS(1)... at 1:88:1:89/+/98.86% +>Cluster 169 +0 89nt, >M01687:476:000000000-LL5F5:1:2117:7751:22216_CONS(1)... * +>Cluster 170 +0 89nt, >M01687:476:000000000-LL5F5:1:1119:2358:11708_CONS(1)... * +>Cluster 171 +0 89nt, >M01687:476:000000000-LL5F5:1:1115:8321:16152_CONS(1)... * +1 89nt, >M01687:476:000000000-LL5F5:1:1104:9166:21665_CONS(1)... at 1:89:1:89/+/97.75% +>Cluster 172 +0 89nt, >M01687:476:000000000-LL5F5:1:1114:17149:24500_CONS(1)... * +>Cluster 173 +0 89nt, >M01687:476:000000000-LL5F5:1:1113:5624:4755_CONS(1)... * +>Cluster 174 +0 89nt, >M01687:476:000000000-LL5F5:1:1103:11867:7678_CONS(1)... * +>Cluster 175 +0 89nt, >M01687:476:000000000-LL5F5:1:1117:21368:1166_CONS(1)... * +>Cluster 176 +0 89nt, >M01687:476:000000000-LL5F5:1:1117:16245:10953_CONS(1)... * +>Cluster 177 +0 89nt, >M01687:476:000000000-LL5F5:1:2118:16530:22379_CONS(1)... * +>Cluster 178 +0 88nt, >M01687:476:000000000-LL5F5:1:1102:24581:20577_CONS(36)... * +1 87nt, >M01687:476:000000000-LL5F5:1:2115:28104:19037_CONS(1)... at 1:87:1:88/+/100.00% +2 88nt, >M01687:476:000000000-LL5F5:1:2109:24720:6726_CONS(1)... at 1:88:1:88/+/98.86% +3 87nt, >M01687:476:000000000-LL5F5:1:2102:13915:5457_CONS(1)... at 1:87:1:88/+/100.00% +4 88nt, >M01687:476:000000000-LL5F5:1:2103:25959:11773_CONS(4)... at 1:88:1:88/+/98.86% +5 88nt, >M01687:476:000000000-LL5F5:1:1112:23608:10089_CONS(1)... at 1:88:1:88/+/98.86% +6 88nt, >M01687:476:000000000-LL5F5:1:1107:28367:7721_CONS(1)... at 1:88:1:88/+/98.86% +>Cluster 179 +0 88nt, >M01687:476:000000000-LL5F5:1:1101:23682:8775_CONS(62)... * +1 87nt, >M01687:476:000000000-LL5F5:1:2115:26362:12021_CONS(10)... at 1:87:1:88/+/100.00% +2 87nt, >M01687:476:000000000-LL5F5:1:2111:22809:7851_CONS(1)... at 1:87:1:88/+/98.85% +3 87nt, >M01687:476:000000000-LL5F5:1:2105:2091:14577_CONS(1)... at 1:87:1:88/+/100.00% +4 88nt, >M01687:476:000000000-LL5F5:1:2102:8124:16182_CONS(1)... at 1:88:1:88/+/98.86% +5 87nt, >M01687:476:000000000-LL5F5:1:2103:27498:10079_CONS(1)... at 1:87:1:88/+/100.00% +6 88nt, >M01687:476:000000000-LL5F5:1:2117:11276:10309_CONS(1)... at 1:88:1:88/+/98.86% +7 88nt, >M01687:476:000000000-LL5F5:1:1114:9169:8288_CONS(1)... at 1:88:1:88/+/98.86% +8 87nt, >M01687:476:000000000-LL5F5:1:1104:12659:4655_CONS(1)... at 1:87:1:88/+/100.00% +9 88nt, >M01687:476:000000000-LL5F5:1:1104:7656:17102_CONS(1)... at 1:88:1:88/+/98.86% +10 88nt, >M01687:476:000000000-LL5F5:1:1117:4911:20163_CONS(1)... at 1:88:1:88/+/98.86% +>Cluster 180 +0 88nt, >M01687:476:000000000-LL5F5:1:1101:27966:12695_CONS(1)... * +>Cluster 181 +0 87nt, >M01687:476:000000000-LL5F5:1:1102:7960:5218_CONS(478)... at 1:87:1:88/+/100.00% +1 86nt, >M01687:476:000000000-LL5F5:1:1102:19044:8227_CONS(1)... at 1:86:1:88/+/98.84% +2 86nt, >M01687:476:000000000-LL5F5:1:2115:11801:2132_CONS(1)... at 1:86:1:88/+/100.00% +3 88nt, >M01687:476:000000000-LL5F5:1:2115:7045:2959_CONS(1)... * +4 85nt, >M01687:476:000000000-LL5F5:1:2115:18460:5530_CONS(1)... at 1:85:1:88/+/100.00% +5 87nt, >M01687:476:000000000-LL5F5:1:2115:12723:10271_CONS(1)... at 1:87:1:88/+/98.85% +6 87nt, >M01687:476:000000000-LL5F5:1:2115:26492:18069_CONS(1)... at 1:87:1:88/+/98.85% +7 87nt, >M01687:476:000000000-LL5F5:1:2113:14436:15632_CONS(1)... at 1:87:1:88/+/97.70% +8 87nt, >M01687:476:000000000-LL5F5:1:2113:7253:23427_CONS(3)... at 1:87:1:88/+/98.85% +9 86nt, >M01687:476:000000000-LL5F5:1:2111:15575:2648_CONS(1)... at 1:86:1:88/+/100.00% +10 86nt, >M01687:476:000000000-LL5F5:1:2111:9046:3261_CONS(3)... at 1:86:2:88/+/100.00% +11 87nt, >M01687:476:000000000-LL5F5:1:2110:28010:16265_CONS(1)... at 1:87:1:88/+/98.85% +12 87nt, >M01687:476:000000000-LL5F5:1:2109:8945:5788_CONS(1)... at 1:87:1:88/+/98.85% +13 87nt, >M01687:476:000000000-LL5F5:1:2109:11100:13305_CONS(5)... at 1:87:1:88/+/98.85% +14 87nt, >M01687:476:000000000-LL5F5:1:2109:7490:19987_CONS(1)... at 1:87:1:88/+/98.85% +15 87nt, >M01687:476:000000000-LL5F5:1:2109:21772:20450_CONS(5)... at 1:87:1:88/+/98.85% +16 87nt, >M01687:476:000000000-LL5F5:1:2109:16804:21307_CONS(1)... at 1:87:1:88/+/98.85% +17 87nt, >M01687:476:000000000-LL5F5:1:2108:11748:2883_CONS(1)... at 1:87:1:88/+/97.70% +18 87nt, >M01687:476:000000000-LL5F5:1:2107:15951:7621_CONS(1)... at 1:87:1:88/+/98.85% +19 87nt, >M01687:476:000000000-LL5F5:1:2107:11495:21848_CONS(1)... at 1:87:1:88/+/98.85% +20 87nt, >M01687:476:000000000-LL5F5:1:2104:8781:11441_CONS(1)... at 1:87:1:88/+/98.85% +21 87nt, >M01687:476:000000000-LL5F5:1:2105:8919:22537_CONS(1)... at 1:87:1:88/+/98.85% +22 86nt, >M01687:476:000000000-LL5F5:1:2102:22991:24811_CONS(1)... at 1:86:1:88/+/100.00% +23 87nt, >M01687:476:000000000-LL5F5:1:2116:27242:8391_CONS(1)... at 1:87:1:88/+/98.85% +24 87nt, >M01687:476:000000000-LL5F5:1:2116:23072:9030_CONS(1)... at 1:87:1:88/+/98.85% +25 87nt, >M01687:476:000000000-LL5F5:1:2116:22229:21848_CONS(1)... at 1:87:1:88/+/98.85% +26 87nt, >M01687:476:000000000-LL5F5:1:1119:6706:23438_CONS(1)... at 1:87:1:88/+/98.85% +27 87nt, >M01687:476:000000000-LL5F5:1:2101:5394:4035_CONS(2)... at 1:87:1:88/+/98.85% +28 87nt, >M01687:476:000000000-LL5F5:1:2101:8167:7626_CONS(1)... at 1:87:1:88/+/98.85% +29 87nt, >M01687:476:000000000-LL5F5:1:1115:19092:3446_CONS(1)... at 1:87:1:88/+/98.85% +30 87nt, >M01687:476:000000000-LL5F5:1:1115:24572:14476_CONS(2)... at 1:87:1:88/+/98.85% +31 87nt, >M01687:476:000000000-LL5F5:1:1114:8614:2995_CONS(1)... at 1:87:1:88/+/98.85% +32 87nt, >M01687:476:000000000-LL5F5:1:1114:12135:16330_CONS(1)... at 1:87:1:88/+/98.85% +33 85nt, >M01687:476:000000000-LL5F5:1:1113:16854:4591_CONS(1)... at 1:85:1:88/+/100.00% +34 86nt, >M01687:476:000000000-LL5F5:1:1112:25650:15428_CONS(1)... at 1:86:1:88/+/100.00% +35 87nt, >M01687:476:000000000-LL5F5:1:1112:19305:23763_CONS(1)... at 1:87:1:88/+/98.85% +36 87nt, >M01687:476:000000000-LL5F5:1:1111:10208:12724_CONS(1)... at 1:87:1:88/+/98.85% +37 86nt, >M01687:476:000000000-LL5F5:1:1110:13500:11832_CONS(1)... at 1:86:1:88/+/100.00% +38 87nt, >M01687:476:000000000-LL5F5:1:1110:22671:13197_CONS(1)... at 1:87:1:88/+/98.85% +39 87nt, >M01687:476:000000000-LL5F5:1:1110:21839:15500_CONS(1)... at 1:87:1:88/+/98.85% +40 86nt, >M01687:476:000000000-LL5F5:1:1108:13160:14387_CONS(1)... at 1:86:1:88/+/100.00% +41 87nt, >M01687:476:000000000-LL5F5:1:1108:20280:16965_CONS(1)... at 1:87:1:88/+/98.85% +42 86nt, >M01687:476:000000000-LL5F5:1:1108:8521:24894_CONS(1)... at 1:86:1:88/+/100.00% +43 87nt, >M01687:476:000000000-LL5F5:1:1107:6066:23289_CONS(1)... at 1:87:1:88/+/98.85% +44 87nt, >M01687:476:000000000-LL5F5:1:1106:9629:6148_CONS(1)... at 1:87:1:88/+/98.85% +45 86nt, >M01687:476:000000000-LL5F5:1:1104:13414:1647_CONS(1)... at 1:86:1:88/+/100.00% +46 87nt, >M01687:476:000000000-LL5F5:1:1103:16301:2802_CONS(1)... at 1:87:1:88/+/97.70% +47 87nt, >M01687:476:000000000-LL5F5:1:1118:7548:17629_CONS(1)... at 1:87:1:88/+/98.85% +48 87nt, >M01687:476:000000000-LL5F5:1:1117:24192:21821_CONS(1)... at 1:87:1:88/+/98.85% +49 87nt, >M01687:476:000000000-LL5F5:1:2118:7911:5285_CONS(1)... at 1:87:1:88/+/97.70% +50 87nt, >M01687:476:000000000-LL5F5:1:2119:12835:6248_CONS(1)... at 1:87:1:88/+/98.85% +51 87nt, >M01687:476:000000000-LL5F5:1:2119:22709:11562_CONS(1)... at 1:87:1:88/+/98.85% +>Cluster 182 +0 41nt, >M01687:476:000000000-LL5F5:1:2112:13430:18266_CONS(1)... at 1:41:1:41/+/97.56% +1 88nt, >M01687:476:000000000-LL5F5:1:2104:29101:14245_CONS(1)... * +2 40nt, >M01687:476:000000000-LL5F5:1:1117:10786:20028_CONS(1)... at 1:40:1:41/+/97.50% +>Cluster 183 +0 88nt, >M01687:476:000000000-LL5F5:1:1115:3495:15801_CONS(1)... * +>Cluster 184 +0 85nt, >M01687:476:000000000-LL5F5:1:2113:20526:8758_CONS(1)... at 1:85:1:88/+/97.65% +1 86nt, >M01687:476:000000000-LL5F5:1:2105:18289:22836_CONS(1)... at 1:85:1:88/+/97.67% +2 88nt, >M01687:476:000000000-LL5F5:1:1115:7047:15973_CONS(1)... * +>Cluster 185 +0 87nt, >M01687:476:000000000-LL5F5:1:1101:17323:10380_CONS(1)... * +>Cluster 186 +0 87nt, >M01687:476:000000000-LL5F5:1:2114:22964:1422_CONS(1)... * +1 87nt, >M01687:476:000000000-LL5F5:1:2111:20475:9775_CONS(1)... at 1:87:1:87/+/98.85% +2 87nt, >M01687:476:000000000-LL5F5:1:2105:16038:17101_CONS(1)... at 1:87:1:87/+/97.70% +3 39nt, >M01687:476:000000000-LL5F5:1:2118:25040:3614_CONS(1)... at 1:39:1:39/+/100.00% +>Cluster 187 +0 87nt, >M01687:476:000000000-LL5F5:1:2111:13344:11720_CONS(7)... * +1 87nt, >M01687:476:000000000-LL5F5:1:1110:21734:10851_CONS(1)... at 1:87:1:87/+/97.70% +2 86nt, >M01687:476:000000000-LL5F5:1:1105:19154:16733_CONS(1)... at 1:86:1:86/+/100.00% +3 87nt, >M01687:476:000000000-LL5F5:1:1103:24507:20529_CONS(1)... at 1:87:1:87/+/98.85% +>Cluster 188 +0 87nt, >M01687:476:000000000-LL5F5:1:2109:14371:3462_CONS(1)... * +>Cluster 189 +0 87nt, >M01687:476:000000000-LL5F5:1:2101:6363:15273_CONS(1)... * +1 30nt, >M01687:476:000000000-LL5F5:1:1106:17790:5433_CONS(1)... at 1:30:1:30/+/100.00% +>Cluster 190 +0 87nt, >M01687:476:000000000-LL5F5:1:1111:19260:8133_CONS(3)... * +>Cluster 191 +0 87nt, >M01687:476:000000000-LL5F5:1:1110:29143:16887_CONS(1)... * +>Cluster 192 +0 87nt, >M01687:476:000000000-LL5F5:1:1109:15294:5344_CONS(1)... * +>Cluster 193 +0 87nt, >M01687:476:000000000-LL5F5:1:1109:17771:13674_CONS(1)... * +>Cluster 194 +0 85nt, >M01687:476:000000000-LL5F5:1:1102:21882:2229_CONS(12)... at 1:85:1:86/+/100.00% +1 86nt, >M01687:476:000000000-LL5F5:1:1102:10362:3235_CONS(26)... * +2 84nt, >M01687:476:000000000-LL5F5:1:2114:2221:14837_CONS(1)... at 1:84:1:86/+/100.00% +3 85nt, >M01687:476:000000000-LL5F5:1:2113:7046:7410_CONS(1)... at 1:85:1:86/+/98.82% +4 86nt, >M01687:476:000000000-LL5F5:1:2113:17379:10495_CONS(1)... at 1:86:1:86/+/98.84% +>Cluster 195 +0 86nt, >M01687:476:000000000-LL5F5:1:2115:14295:3687_CONS(1)... * +1 85nt, >M01687:476:000000000-LL5F5:1:2114:11299:20808_CONS(1)... at 1:85:1:86/+/98.82% +2 85nt, >M01687:476:000000000-LL5F5:1:2104:28090:16181_CONS(1)... at 1:85:1:86/+/98.82% +3 85nt, >M01687:476:000000000-LL5F5:1:1117:6061:6355_CONS(1)... at 1:85:1:86/+/97.65% +>Cluster 196 +0 84nt, >M01687:476:000000000-LL5F5:1:1102:21018:2224_CONS(84)... at 1:84:1:86/+/97.62% +1 83nt, >M01687:476:000000000-LL5F5:1:1102:20658:7882_CONS(29)... at 1:83:1:86/+/97.59% +2 83nt, >M01687:476:000000000-LL5F5:1:1102:3453:17892_CONS(179)... at 1:83:1:86/+/98.80% +3 82nt, >M01687:476:000000000-LL5F5:1:1101:16634:16511_CONS(1)... at 1:82:1:86/+/98.78% +4 86nt, >M01687:476:000000000-LL5F5:1:2115:21470:12945_CONS(19)... * +5 83nt, >M01687:476:000000000-LL5F5:1:2112:14183:11900_CONS(1)... at 1:83:1:86/+/97.59% +6 83nt, >M01687:476:000000000-LL5F5:1:2110:22907:13900_CONS(1)... at 1:83:1:86/+/97.59% +7 83nt, >M01687:476:000000000-LL5F5:1:2108:6794:16457_CONS(1)... at 1:83:1:86/+/97.59% +8 83nt, >M01687:476:000000000-LL5F5:1:2106:13140:2961_CONS(1)... at 1:83:1:86/+/97.59% +9 86nt, >M01687:476:000000000-LL5F5:1:2104:17071:7133_CONS(1)... at 1:86:1:86/+/98.84% +10 83nt, >M01687:476:000000000-LL5F5:1:2104:23380:22266_CONS(1)... at 1:83:1:86/+/97.59% +11 83nt, >M01687:476:000000000-LL5F5:1:2105:25744:8015_CONS(2)... at 1:83:1:86/+/97.59% +12 83nt, >M01687:476:000000000-LL5F5:1:2105:22812:11390_CONS(1)... at 1:83:1:86/+/97.59% +13 83nt, >M01687:476:000000000-LL5F5:1:2103:19857:15772_CONS(1)... at 1:83:1:86/+/97.59% +14 83nt, >M01687:476:000000000-LL5F5:1:2103:8402:20417_CONS(1)... at 1:83:1:86/+/97.59% +15 83nt, >M01687:476:000000000-LL5F5:1:2116:21428:23673_CONS(1)... at 1:83:1:86/+/97.59% +16 83nt, >M01687:476:000000000-LL5F5:1:2117:6682:12959_CONS(1)... at 1:83:1:86/+/97.59% +17 83nt, >M01687:476:000000000-LL5F5:1:1119:24034:6835_CONS(1)... at 1:83:1:86/+/97.59% +18 83nt, >M01687:476:000000000-LL5F5:1:2101:8981:10394_CONS(1)... at 1:83:1:86/+/97.59% +19 83nt, >M01687:476:000000000-LL5F5:1:1115:6974:8019_CONS(1)... at 1:83:1:86/+/97.59% +20 83nt, >M01687:476:000000000-LL5F5:1:1114:22629:21432_CONS(1)... at 1:83:1:86/+/97.59% +21 83nt, >M01687:476:000000000-LL5F5:1:1112:19591:3320_CONS(1)... at 1:83:1:85/+/97.59% +22 84nt, >M01687:476:000000000-LL5F5:1:1111:14929:5725_CONS(1)... at 1:84:1:86/+/97.62% +23 83nt, >M01687:476:000000000-LL5F5:1:1111:25625:19683_CONS(1)... at 1:83:1:86/+/97.59% +24 83nt, >M01687:476:000000000-LL5F5:1:1110:15343:21085_CONS(1)... at 1:83:1:86/+/97.59% +25 82nt, >M01687:476:000000000-LL5F5:1:1109:25911:12082_CONS(1)... at 1:82:2:86/+/97.56% +26 83nt, >M01687:476:000000000-LL5F5:1:1108:23116:24736_CONS(2)... at 1:83:1:86/+/97.59% +27 83nt, >M01687:476:000000000-LL5F5:1:1107:16549:23828_CONS(1)... at 1:83:1:86/+/97.59% +28 83nt, >M01687:476:000000000-LL5F5:1:1105:8190:2803_CONS(1)... at 1:83:1:86/+/97.59% +29 83nt, >M01687:476:000000000-LL5F5:1:1104:9108:19542_CONS(1)... at 1:83:1:86/+/97.59% +30 86nt, >M01687:476:000000000-LL5F5:1:1117:13433:6483_CONS(1)... at 1:86:1:86/+/98.84% +31 82nt, >M01687:476:000000000-LL5F5:1:1117:22337:8432_CONS(1)... at 1:82:1:86/+/98.78% +32 83nt, >M01687:476:000000000-LL5F5:1:2118:27794:17733_CONS(1)... at 1:83:1:86/+/97.59% +33 83nt, >M01687:476:000000000-LL5F5:1:2119:17933:8491_CONS(1)... at 1:83:1:86/+/97.59% +>Cluster 197 +0 42nt, >M01687:476:000000000-LL5F5:1:2112:17637:16274_CONS(1)... at 1:42:1:42/+/97.62% +1 86nt, >M01687:476:000000000-LL5F5:1:2110:21345:23412_CONS(1)... * +>Cluster 198 +0 85nt, >M01687:476:000000000-LL5F5:1:1102:9369:9680_CONS(1)... at 1:85:1:86/+/97.65% +1 86nt, >M01687:476:000000000-LL5F5:1:2108:5246:17368_CONS(1)... * +>Cluster 199 +0 86nt, >M01687:476:000000000-LL5F5:1:2106:24227:6579_CONS(1)... * +>Cluster 200 +0 86nt, >M01687:476:000000000-LL5F5:1:2107:27996:13775_CONS(1)... * +1 38nt, >M01687:476:000000000-LL5F5:1:2101:19984:16379_CONS(1)... at 1:38:1:40/+/97.37% +>Cluster 201 +0 86nt, >M01687:476:000000000-LL5F5:1:2104:5005:5289_CONS(1)... * +>Cluster 202 +0 85nt, >M01687:476:000000000-LL5F5:1:2107:25541:6138_CONS(1)... at 1:85:1:86/+/98.82% +1 85nt, >M01687:476:000000000-LL5F5:1:2104:25475:10442_CONS(1)... at 1:85:1:86/+/98.82% +2 86nt, >M01687:476:000000000-LL5F5:1:2105:8396:23941_CONS(1)... * +3 85nt, >M01687:476:000000000-LL5F5:1:1116:8094:4913_CONS(2)... at 1:85:1:86/+/98.82% +>Cluster 203 +0 85nt, >M01687:476:000000000-LL5F5:1:2109:4113:18498_CONS(1)... at 1:85:1:86/+/98.82% +1 86nt, >M01687:476:000000000-LL5F5:1:2103:5378:4979_CONS(1)... * +2 49nt, >M01687:476:000000000-LL5F5:1:1111:27035:14738_CONS(1)... at 1:49:1:50/+/97.96% +>Cluster 204 +0 86nt, >M01687:476:000000000-LL5F5:1:1112:9914:12917_CONS(1)... * +>Cluster 205 +0 86nt, >M01687:476:000000000-LL5F5:1:1109:21821:24164_CONS(1)... * +>Cluster 206 +0 86nt, >M01687:476:000000000-LL5F5:1:1108:22333:17134_CONS(1)... * +>Cluster 207 +0 86nt, >M01687:476:000000000-LL5F5:1:1118:7172:22234_CONS(1)... * +>Cluster 208 +0 86nt, >M01687:476:000000000-LL5F5:1:1117:10208:24706_CONS(1)... * +>Cluster 209 +0 85nt, >M01687:476:000000000-LL5F5:1:1102:24945:12537_CONS(11)... * +1 85nt, >M01687:476:000000000-LL5F5:1:1102:18889:14411_CONS(2)... at 1:85:1:85/+/97.65% +2 85nt, >M01687:476:000000000-LL5F5:1:1102:19385:15895_CONS(1)... at 1:85:1:85/+/97.65% +3 85nt, >M01687:476:000000000-LL5F5:1:1101:12605:3303_CONS(1)... at 1:85:1:85/+/97.65% +4 85nt, >M01687:476:000000000-LL5F5:1:1101:15976:5608_CONS(1)... at 1:85:1:85/+/97.65% +5 85nt, >M01687:476:000000000-LL5F5:1:2115:22887:10383_CONS(1)... at 1:85:1:85/+/97.65% +6 85nt, >M01687:476:000000000-LL5F5:1:2115:15552:18423_CONS(1)... at 1:85:1:85/+/97.65% +7 85nt, >M01687:476:000000000-LL5F5:1:2115:8252:22741_CONS(3)... at 1:85:1:85/+/97.65% +8 85nt, >M01687:476:000000000-LL5F5:1:2114:12576:18149_CONS(1)... at 1:85:1:85/+/97.65% +9 84nt, >M01687:476:000000000-LL5F5:1:2113:11165:21674_CONS(8)... at 1:84:1:85/+/98.81% +10 85nt, >M01687:476:000000000-LL5F5:1:2112:6787:3040_CONS(2)... at 1:85:1:85/+/97.65% +11 85nt, >M01687:476:000000000-LL5F5:1:2112:15939:6939_CONS(1)... at 1:85:1:85/+/97.65% +12 85nt, >M01687:476:000000000-LL5F5:1:2112:6713:22894_CONS(2)... at 1:85:1:85/+/97.65% +13 41nt, >M01687:476:000000000-LL5F5:1:2111:13759:19301_CONS(1)... at 1:41:1:41/+/100.00% +14 85nt, >M01687:476:000000000-LL5F5:1:2110:7440:12303_CONS(2)... at 1:85:1:85/+/97.65% +15 85nt, >M01687:476:000000000-LL5F5:1:2110:18547:12785_CONS(1)... at 1:85:1:85/+/97.65% +16 85nt, >M01687:476:000000000-LL5F5:1:2110:11318:15467_CONS(2)... at 1:85:1:85/+/97.65% +17 85nt, >M01687:476:000000000-LL5F5:1:2109:23274:24401_CONS(1)... at 1:85:1:85/+/97.65% +18 85nt, >M01687:476:000000000-LL5F5:1:2106:26749:12537_CONS(2)... at 1:85:1:85/+/97.65% +19 85nt, >M01687:476:000000000-LL5F5:1:2104:16188:6116_CONS(2)... at 1:85:1:85/+/97.65% +20 85nt, >M01687:476:000000000-LL5F5:1:2102:17506:5192_CONS(1)... at 1:85:1:85/+/97.65% +21 85nt, >M01687:476:000000000-LL5F5:1:2102:13825:18237_CONS(1)... at 1:85:1:85/+/97.65% +22 85nt, >M01687:476:000000000-LL5F5:1:2116:8179:23657_CONS(1)... at 1:85:1:85/+/98.82% +23 84nt, >M01687:476:000000000-LL5F5:1:2117:23719:9146_CONS(1)... at 1:84:1:85/+/98.81% +24 48nt, >M01687:476:000000000-LL5F5:1:1119:28320:13977_CONS(1)... at 1:48:1:48/+/100.00% +25 85nt, >M01687:476:000000000-LL5F5:1:2101:15364:22266_CONS(1)... at 1:85:1:85/+/97.65% +26 85nt, >M01687:476:000000000-LL5F5:1:1115:26774:12060_CONS(2)... at 1:85:1:85/+/97.65% +27 84nt, >M01687:476:000000000-LL5F5:1:1115:2279:13965_CONS(1)... at 1:84:1:85/+/98.81% +28 85nt, >M01687:476:000000000-LL5F5:1:1113:11680:20908_CONS(3)... at 1:85:1:85/+/97.65% +29 85nt, >M01687:476:000000000-LL5F5:1:1111:22087:20125_CONS(1)... at 1:85:1:85/+/98.82% +30 85nt, >M01687:476:000000000-LL5F5:1:1110:27340:18241_CONS(1)... at 1:85:1:85/+/97.65% +31 85nt, >M01687:476:000000000-LL5F5:1:1107:21081:3530_CONS(1)... at 1:85:1:85/+/97.65% +32 85nt, >M01687:476:000000000-LL5F5:1:1104:6039:7942_CONS(1)... at 1:85:1:85/+/97.65% +33 85nt, >M01687:476:000000000-LL5F5:1:1104:23991:11022_CONS(1)... at 1:85:1:85/+/97.65% +34 85nt, >M01687:476:000000000-LL5F5:1:1104:8625:24655_CONS(1)... at 1:85:1:85/+/97.65% +35 85nt, >M01687:476:000000000-LL5F5:1:1118:24450:13664_CONS(1)... at 1:85:1:85/+/97.65% +36 85nt, >M01687:476:000000000-LL5F5:1:1118:18607:24363_CONS(1)... at 1:85:1:85/+/97.65% +37 85nt, >M01687:476:000000000-LL5F5:1:1117:10381:21639_CONS(2)... at 1:85:1:85/+/97.65% +38 85nt, >M01687:476:000000000-LL5F5:1:2118:24417:4264_CONS(1)... at 1:85:1:85/+/97.65% +39 85nt, >M01687:476:000000000-LL5F5:1:2119:10393:1311_CONS(1)... at 1:85:1:85/+/97.65% +>Cluster 210 +0 85nt, >M01687:476:000000000-LL5F5:1:1102:8209:23583_CONS(1)... * +>Cluster 211 +0 85nt, >M01687:476:000000000-LL5F5:1:1102:10891:24727_CONS(1)... * +1 46nt, >M01687:476:000000000-LL5F5:1:1113:11281:18040_CONS(1)... at 1:46:1:46/+/97.83% +2 40nt, >M01687:476:000000000-LL5F5:1:1110:5633:10681_CONS(1)... at 1:40:1:40/+/97.50% +>Cluster 212 +0 85nt, >M01687:476:000000000-LL5F5:1:1101:25803:4153_CONS(1)... * +>Cluster 213 +0 85nt, >M01687:476:000000000-LL5F5:1:1101:14688:11711_CONS(1)... * +>Cluster 214 +0 85nt, >M01687:476:000000000-LL5F5:1:1101:21477:15198_CONS(1)... * +>Cluster 215 +0 85nt, >M01687:476:000000000-LL5F5:1:1101:20641:22217_CONS(1)... * +>Cluster 216 +0 85nt, >M01687:476:000000000-LL5F5:1:2115:6599:14147_CONS(1)... * +1 39nt, >M01687:476:000000000-LL5F5:1:2117:13356:10094_CONS(1)... at 1:39:1:39/+/97.44% +2 85nt, >M01687:476:000000000-LL5F5:1:1113:11601:15725_CONS(1)... at 1:85:1:85/+/97.65% +3 40nt, >M01687:476:000000000-LL5F5:1:1110:26390:17179_CONS(2)... at 1:40:1:40/+/97.50% +4 40nt, >M01687:476:000000000-LL5F5:1:1103:25878:3790_CONS(1)... at 1:40:1:40/+/97.50% +>Cluster 217 +0 85nt, >M01687:476:000000000-LL5F5:1:2114:22204:8998_CONS(1)... * +>Cluster 218 +0 44nt, >M01687:476:000000000-LL5F5:1:2115:20802:5066_CONS(1)... at 1:44:1:44/+/97.73% +1 85nt, >M01687:476:000000000-LL5F5:1:2114:28631:18293_CONS(1)... * +>Cluster 219 +0 85nt, >M01687:476:000000000-LL5F5:1:2114:7463:21973_CONS(1)... * +>Cluster 220 +0 85nt, >M01687:476:000000000-LL5F5:1:2113:24261:5964_CONS(1)... * +>Cluster 221 +0 85nt, >M01687:476:000000000-LL5F5:1:2113:24855:20908_CONS(1)... * +>Cluster 222 +0 85nt, >M01687:476:000000000-LL5F5:1:2112:23389:5039_CONS(1)... * +1 35nt, >M01687:476:000000000-LL5F5:1:1105:11401:2016_CONS(1)... at 1:35:1:35/+/97.14% +>Cluster 223 +0 85nt, >M01687:476:000000000-LL5F5:1:2112:18868:7780_CONS(1)... * +>Cluster 224 +0 85nt, >M01687:476:000000000-LL5F5:1:2112:23840:13464_CONS(6)... * +1 85nt, >M01687:476:000000000-LL5F5:1:2110:15173:24560_CONS(1)... at 1:85:1:85/+/98.82% +2 85nt, >M01687:476:000000000-LL5F5:1:1103:15225:4737_CONS(1)... at 1:85:1:85/+/98.82% +3 85nt, >M01687:476:000000000-LL5F5:1:2118:13743:3028_CONS(1)... at 1:85:1:85/+/98.82% +>Cluster 225 +0 85nt, >M01687:476:000000000-LL5F5:1:2112:5596:20594_CONS(1)... * +>Cluster 226 +0 85nt, >M01687:476:000000000-LL5F5:1:2112:21084:23919_CONS(1)... * +>Cluster 227 +0 85nt, >M01687:476:000000000-LL5F5:1:2111:22567:6728_CONS(1)... * +>Cluster 228 +0 85nt, >M01687:476:000000000-LL5F5:1:2111:16234:10560_CONS(1)... * +1 27nt, >M01687:476:000000000-LL5F5:1:2119:4932:19812_CONS(1)... at 1:27:1:27/+/100.00% +>Cluster 229 +0 85nt, >M01687:476:000000000-LL5F5:1:2111:18347:15597_CONS(1)... * +1 85nt, >M01687:476:000000000-LL5F5:1:1107:12880:3089_CONS(1)... at 1:85:1:85/+/97.65% +>Cluster 230 +0 85nt, >M01687:476:000000000-LL5F5:1:2110:26986:18507_CONS(1)... * +>Cluster 231 +0 85nt, >M01687:476:000000000-LL5F5:1:2110:4543:20846_CONS(1)... * +1 47nt, >M01687:476:000000000-LL5F5:1:2118:19585:10563_CONS(1)... at 1:47:1:47/+/97.87% +>Cluster 232 +0 85nt, >M01687:476:000000000-LL5F5:1:2109:21398:8758_CONS(1)... * +>Cluster 233 +0 85nt, >M01687:476:000000000-LL5F5:1:2109:15783:14329_CONS(1)... * +1 84nt, >M01687:476:000000000-LL5F5:1:1107:15915:9993_CONS(4)... at 1:84:1:85/+/98.81% +>Cluster 234 +0 40nt, >M01687:476:000000000-LL5F5:1:2114:2200:14918_CONS(1)... at 1:40:1:40/+/97.50% +1 85nt, >M01687:476:000000000-LL5F5:1:2109:22164:17037_CONS(1)... * +>Cluster 235 +0 85nt, >M01687:476:000000000-LL5F5:1:2108:6796:15643_CONS(1)... * +>Cluster 236 +0 85nt, >M01687:476:000000000-LL5F5:1:2108:24829:20378_CONS(2)... * +1 85nt, >M01687:476:000000000-LL5F5:1:2107:16041:14240_CONS(1)... at 1:85:1:85/+/97.65% +2 49nt, >M01687:476:000000000-LL5F5:1:1105:19439:23447_CONS(1)... at 1:49:1:49/+/100.00% +3 85nt, >M01687:476:000000000-LL5F5:1:1117:11690:11965_CONS(1)... at 1:85:1:85/+/97.65% +4 50nt, >M01687:476:000000000-LL5F5:1:2118:7473:6419_CONS(1)... at 1:50:1:50/+/98.00% +>Cluster 237 +0 85nt, >M01687:476:000000000-LL5F5:1:2108:8287:21902_CONS(1)... * +>Cluster 238 +0 85nt, >M01687:476:000000000-LL5F5:1:2106:21750:6657_CONS(1)... * +>Cluster 239 +0 85nt, >M01687:476:000000000-LL5F5:1:2106:4205:18870_CONS(1)... * +>Cluster 240 +0 85nt, >M01687:476:000000000-LL5F5:1:2107:22403:4703_CONS(1)... * +1 85nt, >M01687:476:000000000-LL5F5:1:1118:8762:5876_CONS(1)... at 1:85:1:85/+/97.65% +>Cluster 241 +0 49nt, >M01687:476:000000000-LL5F5:1:2109:8285:3778_CONS(1)... at 1:49:1:49/+/97.96% +1 85nt, >M01687:476:000000000-LL5F5:1:2107:14291:20317_CONS(1)... * +>Cluster 242 +0 85nt, >M01687:476:000000000-LL5F5:1:2104:21042:5472_CONS(1)... * +>Cluster 243 +0 85nt, >M01687:476:000000000-LL5F5:1:2104:8718:19250_CONS(1)... * +>Cluster 244 +0 85nt, >M01687:476:000000000-LL5F5:1:2104:9902:23387_CONS(1)... * +>Cluster 245 +0 85nt, >M01687:476:000000000-LL5F5:1:2105:16790:1424_CONS(1)... * +1 41nt, >M01687:476:000000000-LL5F5:1:1118:13330:5644_CONS(1)... at 1:41:1:41/+/97.56% +>Cluster 246 +0 85nt, >M01687:476:000000000-LL5F5:1:2105:26567:5338_CONS(1)... * +>Cluster 247 +0 85nt, >M01687:476:000000000-LL5F5:1:2105:18663:5931_CONS(1)... * +>Cluster 248 +0 85nt, >M01687:476:000000000-LL5F5:1:2105:16143:23023_CONS(1)... * +1 40nt, >M01687:476:000000000-LL5F5:1:1106:16818:1966_CONS(1)... at 1:40:1:42/+/97.50% +>Cluster 249 +0 85nt, >M01687:476:000000000-LL5F5:1:2105:22486:23923_CONS(1)... * +>Cluster 250 +0 85nt, >M01687:476:000000000-LL5F5:1:2103:18900:20636_CONS(1)... * +1 85nt, >M01687:476:000000000-LL5F5:1:2117:14508:10260_CONS(1)... at 1:85:1:85/+/97.65% +2 85nt, >M01687:476:000000000-LL5F5:1:1104:23785:24487_CONS(1)... at 1:85:1:85/+/97.65% +>Cluster 251 +0 85nt, >M01687:476:000000000-LL5F5:1:2116:22006:6609_CONS(1)... * +>Cluster 252 +0 85nt, >M01687:476:000000000-LL5F5:1:2116:29152:9746_CONS(1)... * +>Cluster 253 +0 85nt, >M01687:476:000000000-LL5F5:1:2116:29151:10914_CONS(1)... * +>Cluster 254 +0 85nt, >M01687:476:000000000-LL5F5:1:2116:11350:12402_CONS(1)... * +>Cluster 255 +0 85nt, >M01687:476:000000000-LL5F5:1:2117:26566:4988_CONS(1)... * +>Cluster 256 +0 85nt, >M01687:476:000000000-LL5F5:1:2117:16574:19148_CONS(1)... * +>Cluster 257 +0 85nt, >M01687:476:000000000-LL5F5:1:1119:22820:2144_CONS(1)... * +>Cluster 258 +0 85nt, >M01687:476:000000000-LL5F5:1:1119:26260:11342_CONS(1)... * +>Cluster 259 +0 85nt, >M01687:476:000000000-LL5F5:1:2101:7950:18168_CONS(1)... * +>Cluster 260 +0 85nt, >M01687:476:000000000-LL5F5:1:2101:13208:19074_CONS(1)... * +>Cluster 261 +0 85nt, >M01687:476:000000000-LL5F5:1:2101:21820:20123_CONS(1)... * +>Cluster 262 +0 85nt, >M01687:476:000000000-LL5F5:1:2101:15697:24748_CONS(1)... * +>Cluster 263 +0 85nt, >M01687:476:000000000-LL5F5:1:1115:7440:12342_CONS(1)... * +>Cluster 264 +0 84nt, >M01687:476:000000000-LL5F5:1:1102:21041:3093_CONS(15)... at 1:84:1:85/+/97.62% +1 83nt, >M01687:476:000000000-LL5F5:1:1101:28969:9188_CONS(1)... at 1:83:1:85/+/98.80% +2 83nt, >M01687:476:000000000-LL5F5:1:2114:17828:12028_CONS(1)... at 1:83:1:85/+/97.59% +3 84nt, >M01687:476:000000000-LL5F5:1:2114:3392:18432_CONS(2)... at 1:84:1:85/+/98.81% +4 84nt, >M01687:476:000000000-LL5F5:1:2113:12816:10448_CONS(1)... at 1:84:1:85/+/98.81% +5 82nt, >M01687:476:000000000-LL5F5:1:2111:4883:10991_CONS(1)... at 1:82:1:85/+/98.78% +6 84nt, >M01687:476:000000000-LL5F5:1:2111:17217:19366_CONS(1)... at 1:84:1:85/+/98.81% +7 83nt, >M01687:476:000000000-LL5F5:1:2110:8695:2292_CONS(1)... at 1:83:1:85/+/100.00% +8 82nt, >M01687:476:000000000-LL5F5:1:2108:25995:16533_CONS(5)... at 1:82:1:85/+/100.00% +9 82nt, >M01687:476:000000000-LL5F5:1:2104:14210:22088_CONS(1)... at 1:82:1:85/+/98.78% +10 84nt, >M01687:476:000000000-LL5F5:1:2105:23396:17639_CONS(1)... at 1:84:1:85/+/98.81% +11 82nt, >M01687:476:000000000-LL5F5:1:2105:22015:24084_CONS(1)... at 1:82:1:85/+/100.00% +12 83nt, >M01687:476:000000000-LL5F5:1:2103:27281:11447_CONS(1)... at 1:83:1:85/+/97.59% +13 82nt, >M01687:476:000000000-LL5F5:1:2103:6888:18487_CONS(1)... at 1:82:1:85/+/98.78% +14 83nt, >M01687:476:000000000-LL5F5:1:2116:15519:3344_CONS(1)... at 1:83:1:85/+/97.59% +15 83nt, >M01687:476:000000000-LL5F5:1:1119:29160:16896_CONS(1)... at 1:83:1:85/+/97.59% +16 85nt, >M01687:476:000000000-LL5F5:1:1116:26989:7055_CONS(1)... * +17 84nt, >M01687:476:000000000-LL5F5:1:1114:20661:4105_CONS(1)... at 1:84:1:85/+/98.81% +18 82nt, >M01687:476:000000000-LL5F5:1:1114:20957:7310_CONS(1)... at 1:82:1:85/+/100.00% +19 83nt, >M01687:476:000000000-LL5F5:1:1111:16445:11650_CONS(1)... at 1:83:1:85/+/97.59% +20 84nt, >M01687:476:000000000-LL5F5:1:1110:12510:4380_CONS(1)... at 1:84:1:85/+/98.81% +21 82nt, >M01687:476:000000000-LL5F5:1:1109:8821:10119_CONS(1)... at 1:82:1:85/+/100.00% +22 82nt, >M01687:476:000000000-LL5F5:1:1109:7649:18565_CONS(1)... at 1:82:1:84/+/97.56% +23 84nt, >M01687:476:000000000-LL5F5:1:1105:12644:12352_CONS(1)... at 1:84:1:85/+/97.62% +24 83nt, >M01687:476:000000000-LL5F5:1:1104:6908:8317_CONS(1)... at 1:83:1:85/+/97.59% +25 83nt, >M01687:476:000000000-LL5F5:1:1117:19848:13402_CONS(1)... at 1:83:1:85/+/97.59% +>Cluster 265 +0 85nt, >M01687:476:000000000-LL5F5:1:1116:9425:24124_CONS(1)... * +>Cluster 266 +0 85nt, >M01687:476:000000000-LL5F5:1:1114:14646:1437_CONS(1)... * +>Cluster 267 +0 85nt, >M01687:476:000000000-LL5F5:1:1114:5521:4259_CONS(1)... * +>Cluster 268 +0 85nt, >M01687:476:000000000-LL5F5:1:1114:9738:5934_CONS(1)... * +>Cluster 269 +0 85nt, >M01687:476:000000000-LL5F5:1:1114:16057:6798_CONS(1)... * +>Cluster 270 +0 85nt, >M01687:476:000000000-LL5F5:1:1114:16253:11457_CONS(1)... * +>Cluster 271 +0 85nt, >M01687:476:000000000-LL5F5:1:1113:25330:6862_CONS(1)... * +1 85nt, >M01687:476:000000000-LL5F5:1:1110:11985:21164_CONS(1)... at 1:85:1:85/+/97.65% +>Cluster 272 +0 85nt, >M01687:476:000000000-LL5F5:1:1113:16990:16277_CONS(1)... * +>Cluster 273 +0 48nt, >M01687:476:000000000-LL5F5:1:1102:11099:12174_CONS(1)... at 1:48:1:48/+/97.92% +1 85nt, >M01687:476:000000000-LL5F5:1:1113:8371:16675_CONS(1)... * +>Cluster 274 +0 85nt, >M01687:476:000000000-LL5F5:1:1113:7003:20846_CONS(1)... * +>Cluster 275 +0 85nt, >M01687:476:000000000-LL5F5:1:1112:19560:5910_CONS(1)... * +>Cluster 276 +0 85nt, >M01687:476:000000000-LL5F5:1:1112:2201:9820_CONS(1)... * +>Cluster 277 +0 85nt, >M01687:476:000000000-LL5F5:1:1111:29577:14932_CONS(1)... * +>Cluster 278 +0 85nt, >M01687:476:000000000-LL5F5:1:1110:3962:7595_CONS(1)... * +>Cluster 279 +0 85nt, >M01687:476:000000000-LL5F5:1:1110:11524:14242_CONS(1)... * +>Cluster 280 +0 85nt, >M01687:476:000000000-LL5F5:1:1109:23445:4416_CONS(1)... * +>Cluster 281 +0 85nt, >M01687:476:000000000-LL5F5:1:1109:12701:4924_CONS(1)... * +>Cluster 282 +0 85nt, >M01687:476:000000000-LL5F5:1:1108:12520:5181_CONS(1)... * +>Cluster 283 +0 85nt, >M01687:476:000000000-LL5F5:1:1108:16912:5647_CONS(1)... * +>Cluster 284 +0 85nt, >M01687:476:000000000-LL5F5:1:1108:25215:9212_CONS(1)... * +>Cluster 285 +0 50nt, >M01687:476:000000000-LL5F5:1:2108:9172:14021_CONS(1)... at 1:50:1:50/+/98.00% +1 85nt, >M01687:476:000000000-LL5F5:1:1108:6972:13685_CONS(1)... * +>Cluster 286 +0 85nt, >M01687:476:000000000-LL5F5:1:1108:8200:16386_CONS(1)... * +>Cluster 287 +0 50nt, >M01687:476:000000000-LL5F5:1:1113:18121:19491_CONS(1)... at 1:50:1:50/+/100.00% +1 85nt, >M01687:476:000000000-LL5F5:1:1107:9095:2873_CONS(1)... * +>Cluster 288 +0 85nt, >M01687:476:000000000-LL5F5:1:1107:29129:17176_CONS(1)... * +>Cluster 289 +0 85nt, >M01687:476:000000000-LL5F5:1:1107:7063:22326_CONS(1)... * +>Cluster 290 +0 85nt, >M01687:476:000000000-LL5F5:1:1106:10398:6883_CONS(1)... * +>Cluster 291 +0 40nt, >M01687:476:000000000-LL5F5:1:2117:7704:11894_CONS(1)... at 1:40:1:40/+/97.50% +1 85nt, >M01687:476:000000000-LL5F5:1:1105:2775:9681_CONS(1)... * +>Cluster 292 +0 85nt, >M01687:476:000000000-LL5F5:1:1104:2129:14958_CONS(1)... * +>Cluster 293 +0 85nt, >M01687:476:000000000-LL5F5:1:1104:24515:18912_CONS(1)... * +>Cluster 294 +0 85nt, >M01687:476:000000000-LL5F5:1:1104:20938:20455_CONS(1)... * +>Cluster 295 +0 85nt, >M01687:476:000000000-LL5F5:1:1103:19037:8472_CONS(1)... * +>Cluster 296 +0 85nt, >M01687:476:000000000-LL5F5:1:1103:5858:15555_CONS(1)... * +>Cluster 297 +0 85nt, >M01687:476:000000000-LL5F5:1:1118:4528:20482_CONS(1)... * +>Cluster 298 +0 85nt, >M01687:476:000000000-LL5F5:1:1117:21531:2632_CONS(1)... * +>Cluster 299 +0 85nt, >M01687:476:000000000-LL5F5:1:1117:5710:3697_CONS(1)... * +>Cluster 300 +0 85nt, >M01687:476:000000000-LL5F5:1:1117:28597:13602_CONS(1)... * +>Cluster 301 +0 85nt, >M01687:476:000000000-LL5F5:1:2118:23923:6706_CONS(1)... * +>Cluster 302 +0 85nt, >M01687:476:000000000-LL5F5:1:2118:14886:10415_CONS(1)... * +>Cluster 303 +0 85nt, >M01687:476:000000000-LL5F5:1:2119:28766:10135_CONS(1)... * +>Cluster 304 +0 85nt, >M01687:476:000000000-LL5F5:1:2119:29133:10259_CONS(1)... * +>Cluster 305 +0 85nt, >M01687:476:000000000-LL5F5:1:2119:27773:12799_CONS(1)... * +>Cluster 306 +0 47nt, >M01687:476:000000000-LL5F5:1:1110:13221:9250_CONS(1)... at 1:47:1:47/+/97.87% +1 85nt, >M01687:476:000000000-LL5F5:1:2119:20904:13368_CONS(1)... * +>Cluster 307 +0 85nt, >M01687:476:000000000-LL5F5:1:2119:24507:19008_CONS(1)... * +>Cluster 308 +0 84nt, >M01687:476:000000000-LL5F5:1:1101:12854:4432_CONS(1)... * +1 83nt, >M01687:476:000000000-LL5F5:1:2114:22357:6023_CONS(1)... at 1:83:1:84/+/97.59% +2 84nt, >M01687:476:000000000-LL5F5:1:2108:27339:8767_CONS(1)... at 1:84:1:84/+/97.62% +>Cluster 309 +0 84nt, >M01687:476:000000000-LL5F5:1:1101:8056:13265_CONS(43)... * +1 83nt, >M01687:476:000000000-LL5F5:1:2110:11806:4533_CONS(1)... at 1:83:1:84/+/100.00% +2 83nt, >M01687:476:000000000-LL5F5:1:1109:12268:6133_CONS(1)... at 1:83:1:84/+/100.00% +3 83nt, >M01687:476:000000000-LL5F5:1:1117:18127:19606_CONS(1)... at 1:83:2:84/+/98.80% +4 83nt, >M01687:476:000000000-LL5F5:1:2118:15321:10887_CONS(1)... at 1:83:1:84/+/98.80% +5 84nt, >M01687:476:000000000-LL5F5:1:2118:11820:14728_CONS(1)... at 1:84:1:84/+/98.81% +>Cluster 310 +0 84nt, >M01687:476:000000000-LL5F5:1:1101:18349:23960_CONS(5)... * +>Cluster 311 +0 84nt, >M01687:476:000000000-LL5F5:1:2115:4640:14935_CONS(15)... * +1 84nt, >M01687:476:000000000-LL5F5:1:2111:6838:7271_CONS(1)... at 1:84:1:84/+/98.81% +2 83nt, >M01687:476:000000000-LL5F5:1:2102:7903:16159_CONS(1)... at 1:83:1:84/+/100.00% +3 84nt, >M01687:476:000000000-LL5F5:1:2101:7282:15612_CONS(1)... at 1:84:1:84/+/98.81% +4 84nt, >M01687:476:000000000-LL5F5:1:1118:11456:1454_CONS(1)... at 1:84:1:84/+/98.81% +>Cluster 312 +0 84nt, >M01687:476:000000000-LL5F5:1:2114:28645:18571_CONS(1)... * +>Cluster 313 +0 84nt, >M01687:476:000000000-LL5F5:1:2112:18065:2898_CONS(1)... * +>Cluster 314 +0 42nt, >M01687:476:000000000-LL5F5:1:2112:28205:18299_CONS(1)... at 1:42:1:42/+/97.62% +1 84nt, >M01687:476:000000000-LL5F5:1:2108:21106:24919_CONS(1)... * +>Cluster 315 +0 84nt, >M01687:476:000000000-LL5F5:1:2107:2665:16163_CONS(1)... * +>Cluster 316 +0 84nt, >M01687:476:000000000-LL5F5:1:2116:10870:21176_CONS(1)... * +>Cluster 317 +0 84nt, >M01687:476:000000000-LL5F5:1:1115:17118:6088_CONS(1)... * +>Cluster 318 +0 84nt, >M01687:476:000000000-LL5F5:1:1116:9762:11774_CONS(1)... * +>Cluster 319 +0 84nt, >M01687:476:000000000-LL5F5:1:1114:28149:17442_CONS(1)... * +>Cluster 320 +0 84nt, >M01687:476:000000000-LL5F5:1:1107:16111:20311_CONS(1)... * +>Cluster 321 +0 84nt, >M01687:476:000000000-LL5F5:1:1103:26271:6423_CONS(1)... * +>Cluster 322 +0 84nt, >M01687:476:000000000-LL5F5:1:1118:27699:13782_CONS(1)... * +>Cluster 323 +0 84nt, >M01687:476:000000000-LL5F5:1:1117:14299:2610_CONS(1)... * +>Cluster 324 +0 83nt, >M01687:476:000000000-LL5F5:1:1102:7058:2262_CONS(114)... * +1 82nt, >M01687:476:000000000-LL5F5:1:2115:13240:24975_CONS(6)... at 1:82:1:83/+/100.00% +2 83nt, >M01687:476:000000000-LL5F5:1:2113:14382:3771_CONS(1)... at 1:83:1:83/+/97.59% +3 83nt, >M01687:476:000000000-LL5F5:1:2113:11854:24135_CONS(2)... at 1:83:1:83/+/98.80% +4 83nt, >M01687:476:000000000-LL5F5:1:2103:17315:18987_CONS(1)... at 1:83:1:83/+/98.80% +5 83nt, >M01687:476:000000000-LL5F5:1:2117:7263:12953_CONS(1)... at 1:83:1:83/+/98.80% +6 82nt, >M01687:476:000000000-LL5F5:1:1119:27044:6653_CONS(1)... at 1:82:1:83/+/98.78% +7 81nt, >M01687:476:000000000-LL5F5:1:1109:2464:14257_CONS(1)... at 1:81:1:83/+/100.00% +8 83nt, >M01687:476:000000000-LL5F5:1:1106:26123:11458_CONS(1)... at 1:83:1:83/+/98.80% +9 83nt, >M01687:476:000000000-LL5F5:1:1106:4402:19005_CONS(1)... at 1:83:1:83/+/98.80% +10 82nt, >M01687:476:000000000-LL5F5:1:1118:3736:15662_CONS(1)... at 1:82:1:83/+/100.00% +>Cluster 325 +0 82nt, >M01687:476:000000000-LL5F5:1:1102:24894:11107_CONS(34)... at 1:82:1:83/+/98.78% +1 83nt, >M01687:476:000000000-LL5F5:1:1102:4428:19995_CONS(1)... * +2 82nt, >M01687:476:000000000-LL5F5:1:1101:21285:5912_CONS(1)... at 1:82:1:83/+/97.56% +3 83nt, >M01687:476:000000000-LL5F5:1:2115:22036:11292_CONS(2)... at 1:83:1:83/+/98.80% +4 82nt, >M01687:476:000000000-LL5F5:1:2114:10622:1215_CONS(44)... at 1:82:1:83/+/100.00% +5 82nt, >M01687:476:000000000-LL5F5:1:2112:26507:13047_CONS(1)... at 1:82:1:83/+/97.56% +6 42nt, >M01687:476:000000000-LL5F5:1:2106:12123:22470_CONS(1)... at 1:42:1:42/+/97.62% +7 82nt, >M01687:476:000000000-LL5F5:1:2102:4893:12446_CONS(1)... at 1:82:1:83/+/97.56% +8 80nt, >M01687:476:000000000-LL5F5:1:2116:13632:18917_CONS(1)... at 1:80:1:83/+/98.75% +9 81nt, >M01687:476:000000000-LL5F5:1:1116:11424:19026_CONS(2)... at 1:81:1:83/+/98.77% +10 82nt, >M01687:476:000000000-LL5F5:1:1110:16291:4012_CONS(1)... at 1:82:1:83/+/98.78% +11 82nt, >M01687:476:000000000-LL5F5:1:1108:19992:1620_CONS(1)... at 1:82:1:83/+/97.56% +12 81nt, >M01687:476:000000000-LL5F5:1:1108:27661:9079_CONS(1)... at 1:81:1:83/+/97.53% +13 82nt, >M01687:476:000000000-LL5F5:1:1107:17253:4744_CONS(1)... at 1:82:1:83/+/97.56% +>Cluster 326 +0 82nt, >M01687:476:000000000-LL5F5:1:1102:12299:1165_CONS(1758)... at 1:82:1:83/+/100.00% +1 82nt, >M01687:476:000000000-LL5F5:1:1102:14975:10360_CONS(45)... at 1:82:1:83/+/98.78% +2 82nt, >M01687:476:000000000-LL5F5:1:1102:21967:18347_CONS(1)... at 1:82:1:83/+/97.56% +3 82nt, >M01687:476:000000000-LL5F5:1:1101:23805:4117_CONS(33)... at 1:82:1:83/+/98.78% +4 80nt, >M01687:476:000000000-LL5F5:1:1101:23146:10509_CONS(1)... at 1:80:1:83/+/100.00% +5 82nt, >M01687:476:000000000-LL5F5:1:1101:8234:11825_CONS(2)... at 1:82:1:83/+/98.78% +6 82nt, >M01687:476:000000000-LL5F5:1:1101:7531:13092_CONS(1)... at 1:82:1:83/+/97.56% +7 82nt, >M01687:476:000000000-LL5F5:1:1101:23798:14913_CONS(3)... at 1:82:1:83/+/98.78% +8 82nt, >M01687:476:000000000-LL5F5:1:1101:3096:18552_CONS(6)... at 1:82:1:83/+/98.78% +9 82nt, >M01687:476:000000000-LL5F5:1:2115:20453:3936_CONS(14)... at 1:82:1:83/+/98.78% +10 82nt, >M01687:476:000000000-LL5F5:1:2115:25990:4276_CONS(2)... at 1:82:1:83/+/98.78% +11 82nt, >M01687:476:000000000-LL5F5:1:2115:13680:6224_CONS(7)... at 1:82:1:83/+/98.78% +12 82nt, >M01687:476:000000000-LL5F5:1:2115:27687:6261_CONS(3)... at 1:82:1:83/+/98.78% +13 82nt, >M01687:476:000000000-LL5F5:1:2115:23041:6585_CONS(3)... at 1:82:1:83/+/98.78% +14 82nt, >M01687:476:000000000-LL5F5:1:2115:20355:7518_CONS(3)... at 1:82:1:83/+/98.78% +15 82nt, >M01687:476:000000000-LL5F5:1:2115:17017:8208_CONS(1)... at 1:82:1:83/+/98.78% +16 82nt, >M01687:476:000000000-LL5F5:1:2115:3526:18173_CONS(1)... at 1:82:1:83/+/98.78% +17 83nt, >M01687:476:000000000-LL5F5:1:2114:9117:2922_CONS(1)... * +18 82nt, >M01687:476:000000000-LL5F5:1:2114:14681:6195_CONS(2)... at 1:82:1:83/+/98.78% +19 81nt, >M01687:476:000000000-LL5F5:1:2114:10485:10422_CONS(4)... at 1:81:2:83/+/100.00% +20 82nt, >M01687:476:000000000-LL5F5:1:2114:26101:11865_CONS(2)... at 1:82:1:83/+/98.78% +21 82nt, >M01687:476:000000000-LL5F5:1:2114:9885:13169_CONS(4)... at 1:82:1:83/+/98.78% +22 82nt, >M01687:476:000000000-LL5F5:1:2114:8345:13384_CONS(1)... at 1:82:1:83/+/98.78% +23 82nt, >M01687:476:000000000-LL5F5:1:2114:6311:15676_CONS(5)... at 1:82:1:83/+/98.78% +24 82nt, >M01687:476:000000000-LL5F5:1:2114:24686:19300_CONS(2)... at 1:82:1:83/+/97.56% +25 82nt, >M01687:476:000000000-LL5F5:1:2114:10536:23128_CONS(4)... at 1:82:1:83/+/98.78% +26 82nt, >M01687:476:000000000-LL5F5:1:2113:22622:1746_CONS(12)... at 1:82:1:83/+/98.78% +27 82nt, >M01687:476:000000000-LL5F5:1:2113:15893:10044_CONS(3)... at 1:82:1:83/+/98.78% +28 82nt, >M01687:476:000000000-LL5F5:1:2113:9081:21624_CONS(4)... at 1:82:1:83/+/98.78% +29 82nt, >M01687:476:000000000-LL5F5:1:2112:15640:3226_CONS(2)... at 1:82:1:83/+/98.78% +30 82nt, >M01687:476:000000000-LL5F5:1:2112:6669:3360_CONS(1)... at 1:82:1:83/+/98.78% +31 82nt, >M01687:476:000000000-LL5F5:1:2112:23370:6667_CONS(5)... at 1:82:1:83/+/98.78% +32 82nt, >M01687:476:000000000-LL5F5:1:2112:4024:6930_CONS(2)... at 1:82:1:83/+/98.78% +33 82nt, >M01687:476:000000000-LL5F5:1:2112:26984:7752_CONS(1)... at 1:82:1:83/+/97.56% +34 81nt, >M01687:476:000000000-LL5F5:1:2112:21189:9514_CONS(2)... at 1:81:1:83/+/100.00% +35 82nt, >M01687:476:000000000-LL5F5:1:2112:15847:15034_CONS(3)... at 1:82:1:83/+/98.78% +36 82nt, >M01687:476:000000000-LL5F5:1:2112:13439:24497_CONS(1)... at 1:82:1:83/+/98.78% +37 82nt, >M01687:476:000000000-LL5F5:1:2111:12153:1091_CONS(2)... at 1:82:1:83/+/98.78% +38 82nt, >M01687:476:000000000-LL5F5:1:2111:12564:12009_CONS(1)... at 1:82:1:83/+/98.78% +39 82nt, >M01687:476:000000000-LL5F5:1:2111:11230:16846_CONS(1)... at 1:82:1:83/+/98.78% +40 82nt, >M01687:476:000000000-LL5F5:1:2111:19762:17031_CONS(1)... at 1:82:1:83/+/98.78% +41 82nt, >M01687:476:000000000-LL5F5:1:2111:10675:19333_CONS(1)... at 1:82:1:83/+/98.78% +42 82nt, >M01687:476:000000000-LL5F5:1:2111:8158:24160_CONS(3)... at 1:82:1:83/+/98.78% +43 82nt, >M01687:476:000000000-LL5F5:1:2110:15448:8419_CONS(2)... at 1:82:1:83/+/98.78% +44 82nt, >M01687:476:000000000-LL5F5:1:2110:10035:13350_CONS(3)... at 1:82:1:83/+/98.78% +45 81nt, >M01687:476:000000000-LL5F5:1:2110:11191:23149_CONS(1)... at 1:81:1:83/+/100.00% +46 82nt, >M01687:476:000000000-LL5F5:1:2109:4599:16169_CONS(2)... at 1:82:1:83/+/98.78% +47 82nt, >M01687:476:000000000-LL5F5:1:2109:11348:17565_CONS(1)... at 1:82:1:83/+/97.56% +48 82nt, >M01687:476:000000000-LL5F5:1:2108:24662:4994_CONS(3)... at 1:82:1:83/+/98.78% +49 82nt, >M01687:476:000000000-LL5F5:1:2108:25271:20864_CONS(2)... at 1:82:1:83/+/98.78% +50 81nt, >M01687:476:000000000-LL5F5:1:2106:17820:6371_CONS(2)... at 1:81:1:83/+/100.00% +51 82nt, >M01687:476:000000000-LL5F5:1:2106:23210:9720_CONS(1)... at 1:82:1:83/+/98.78% +52 82nt, >M01687:476:000000000-LL5F5:1:2106:10832:14660_CONS(1)... at 1:82:1:83/+/98.78% +53 82nt, >M01687:476:000000000-LL5F5:1:2106:25172:20610_CONS(2)... at 1:82:1:83/+/98.78% +54 82nt, >M01687:476:000000000-LL5F5:1:2107:19145:13598_CONS(1)... at 1:82:1:83/+/98.78% +55 82nt, >M01687:476:000000000-LL5F5:1:2107:5117:15797_CONS(1)... at 1:82:1:83/+/98.78% +56 82nt, >M01687:476:000000000-LL5F5:1:2107:26886:17656_CONS(1)... at 1:82:1:83/+/98.78% +57 82nt, >M01687:476:000000000-LL5F5:1:2107:21584:19702_CONS(2)... at 1:82:1:83/+/98.78% +58 82nt, >M01687:476:000000000-LL5F5:1:2107:9534:21110_CONS(1)... at 1:82:1:83/+/97.56% +59 80nt, >M01687:476:000000000-LL5F5:1:2107:7900:21529_CONS(1)... at 1:80:1:82/+/98.75% +60 82nt, >M01687:476:000000000-LL5F5:1:2104:5109:9635_CONS(1)... at 1:82:1:83/+/98.78% +61 80nt, >M01687:476:000000000-LL5F5:1:2104:26748:12510_CONS(1)... at 1:80:2:83/+/100.00% +62 81nt, >M01687:476:000000000-LL5F5:1:2104:3711:15011_CONS(1)... at 1:81:1:83/+/98.77% +63 82nt, >M01687:476:000000000-LL5F5:1:2104:8314:15611_CONS(1)... at 1:82:1:83/+/98.78% +64 81nt, >M01687:476:000000000-LL5F5:1:2104:24122:18947_CONS(1)... at 1:81:1:83/+/98.77% +65 82nt, >M01687:476:000000000-LL5F5:1:2105:12421:3780_CONS(1)... at 1:82:1:83/+/98.78% +66 82nt, >M01687:476:000000000-LL5F5:1:2105:9715:6651_CONS(1)... at 1:82:1:83/+/98.78% +67 81nt, >M01687:476:000000000-LL5F5:1:2105:7118:9506_CONS(3)... at 1:81:1:83/+/98.77% +68 82nt, >M01687:476:000000000-LL5F5:1:2105:26885:10383_CONS(1)... at 1:82:1:83/+/97.56% +69 81nt, >M01687:476:000000000-LL5F5:1:2105:25586:10806_CONS(1)... at 1:81:1:83/+/100.00% +70 80nt, >M01687:476:000000000-LL5F5:1:2105:5663:12034_CONS(1)... at 1:80:1:82/+/100.00% +71 81nt, >M01687:476:000000000-LL5F5:1:2105:28290:13382_CONS(1)... at 1:81:1:83/+/100.00% +72 82nt, >M01687:476:000000000-LL5F5:1:2105:22129:17128_CONS(2)... at 1:82:1:83/+/98.78% +73 82nt, >M01687:476:000000000-LL5F5:1:2105:20758:18856_CONS(2)... at 1:82:1:83/+/98.78% +74 82nt, >M01687:476:000000000-LL5F5:1:2105:23911:19662_CONS(2)... at 1:82:1:83/+/98.78% +75 82nt, >M01687:476:000000000-LL5F5:1:2105:5048:21241_CONS(2)... at 1:82:1:83/+/98.78% +76 82nt, >M01687:476:000000000-LL5F5:1:2102:20164:2950_CONS(1)... at 1:82:1:83/+/98.78% +77 81nt, >M01687:476:000000000-LL5F5:1:2102:6468:16541_CONS(1)... at 1:81:1:83/+/98.77% +78 81nt, >M01687:476:000000000-LL5F5:1:2102:20873:24435_CONS(3)... at 1:81:2:83/+/98.77% +79 81nt, >M01687:476:000000000-LL5F5:1:2103:19983:2087_CONS(2)... at 1:81:1:83/+/100.00% +80 82nt, >M01687:476:000000000-LL5F5:1:2103:15429:3674_CONS(2)... at 1:82:1:83/+/98.78% +81 82nt, >M01687:476:000000000-LL5F5:1:2103:16045:7446_CONS(1)... at 1:82:1:83/+/98.78% +82 81nt, >M01687:476:000000000-LL5F5:1:2103:29128:9950_CONS(1)... at 1:81:1:83/+/98.77% +83 82nt, >M01687:476:000000000-LL5F5:1:2103:16219:15932_CONS(1)... at 1:82:1:83/+/98.78% +84 82nt, >M01687:476:000000000-LL5F5:1:2103:17572:24730_CONS(2)... at 1:82:1:83/+/98.78% +85 80nt, >M01687:476:000000000-LL5F5:1:2116:20403:6409_CONS(1)... at 1:80:1:83/+/97.50% +86 82nt, >M01687:476:000000000-LL5F5:1:2116:20378:6438_CONS(1)... at 1:82:1:83/+/98.78% +87 82nt, >M01687:476:000000000-LL5F5:1:2116:10000:7477_CONS(2)... at 1:82:1:83/+/98.78% +88 82nt, >M01687:476:000000000-LL5F5:1:2116:21480:11212_CONS(2)... at 1:82:1:83/+/98.78% +89 82nt, >M01687:476:000000000-LL5F5:1:2116:11743:11328_CONS(1)... at 1:82:1:83/+/97.56% +90 82nt, >M01687:476:000000000-LL5F5:1:2116:22625:13714_CONS(1)... at 1:82:1:83/+/98.78% +91 82nt, >M01687:476:000000000-LL5F5:1:2117:6573:3526_CONS(1)... at 1:82:1:83/+/98.78% +92 82nt, >M01687:476:000000000-LL5F5:1:2117:11077:6349_CONS(1)... at 1:82:1:83/+/98.78% +93 82nt, >M01687:476:000000000-LL5F5:1:2117:5144:8123_CONS(1)... at 1:82:1:83/+/98.78% +94 82nt, >M01687:476:000000000-LL5F5:1:2117:8107:11045_CONS(2)... at 1:82:1:83/+/98.78% +95 82nt, >M01687:476:000000000-LL5F5:1:2117:23778:12899_CONS(1)... at 1:82:1:83/+/97.56% +96 82nt, >M01687:476:000000000-LL5F5:1:2117:10611:21573_CONS(1)... at 1:82:1:83/+/98.78% +97 82nt, >M01687:476:000000000-LL5F5:1:2117:12662:24619_CONS(2)... at 1:82:1:83/+/98.78% +98 81nt, >M01687:476:000000000-LL5F5:1:1119:24103:6560_CONS(1)... at 1:81:1:83/+/100.00% +99 82nt, >M01687:476:000000000-LL5F5:1:1119:27226:9914_CONS(2)... at 1:82:1:83/+/98.78% +100 82nt, >M01687:476:000000000-LL5F5:1:1119:11271:10660_CONS(3)... at 1:82:1:83/+/98.78% +101 82nt, >M01687:476:000000000-LL5F5:1:1119:22985:12513_CONS(1)... at 1:82:1:83/+/98.78% +102 82nt, >M01687:476:000000000-LL5F5:1:1119:27506:14492_CONS(2)... at 1:82:1:83/+/98.78% +103 83nt, >M01687:476:000000000-LL5F5:1:1119:18862:16079_CONS(2)... at 1:83:1:83/+/97.59% +104 82nt, >M01687:476:000000000-LL5F5:1:2101:17826:10407_CONS(1)... at 1:82:1:83/+/98.78% +105 82nt, >M01687:476:000000000-LL5F5:1:2101:29141:10991_CONS(1)... at 1:82:1:83/+/98.78% +106 82nt, >M01687:476:000000000-LL5F5:1:2101:8232:23109_CONS(2)... at 1:82:1:83/+/98.78% +107 82nt, >M01687:476:000000000-LL5F5:1:1115:20810:16075_CONS(2)... at 1:82:1:83/+/98.78% +108 81nt, >M01687:476:000000000-LL5F5:1:1116:16630:16871_CONS(1)... at 1:81:1:83/+/98.77% +109 81nt, >M01687:476:000000000-LL5F5:1:1114:7824:5761_CONS(1)... at 1:81:2:83/+/98.77% +110 82nt, >M01687:476:000000000-LL5F5:1:1113:18793:3262_CONS(3)... at 1:82:1:83/+/98.78% +111 82nt, >M01687:476:000000000-LL5F5:1:1113:12536:7353_CONS(1)... at 1:82:1:83/+/98.78% +112 81nt, >M01687:476:000000000-LL5F5:1:1113:24448:16676_CONS(2)... at 1:81:1:83/+/100.00% +113 82nt, >M01687:476:000000000-LL5F5:1:1113:8510:17272_CONS(2)... at 1:82:1:83/+/98.78% +114 81nt, >M01687:476:000000000-LL5F5:1:1113:24532:18827_CONS(1)... at 1:81:1:82/+/100.00% +115 81nt, >M01687:476:000000000-LL5F5:1:1112:21774:3243_CONS(1)... at 1:81:1:83/+/98.77% +116 82nt, >M01687:476:000000000-LL5F5:1:1112:25527:3768_CONS(1)... at 1:82:1:83/+/97.56% +117 82nt, >M01687:476:000000000-LL5F5:1:1112:3409:10915_CONS(1)... at 1:82:1:83/+/98.78% +118 82nt, >M01687:476:000000000-LL5F5:1:1112:24917:11562_CONS(1)... at 1:82:1:83/+/98.78% +119 81nt, >M01687:476:000000000-LL5F5:1:1112:16473:17437_CONS(2)... at 1:81:1:83/+/100.00% +120 82nt, >M01687:476:000000000-LL5F5:1:1112:10297:17921_CONS(1)... at 1:82:1:83/+/98.78% +121 82nt, >M01687:476:000000000-LL5F5:1:1111:26500:8229_CONS(1)... at 1:82:1:83/+/98.78% +122 82nt, >M01687:476:000000000-LL5F5:1:1111:3467:15141_CONS(1)... at 1:82:1:83/+/97.56% +123 81nt, >M01687:476:000000000-LL5F5:1:1110:10095:5058_CONS(1)... at 1:81:1:83/+/100.00% +124 82nt, >M01687:476:000000000-LL5F5:1:1110:18430:12092_CONS(2)... at 1:82:1:83/+/98.78% +125 81nt, >M01687:476:000000000-LL5F5:1:1110:15943:12265_CONS(1)... at 1:81:1:82/+/98.77% +126 82nt, >M01687:476:000000000-LL5F5:1:1110:5830:14664_CONS(1)... at 1:82:1:83/+/98.78% +127 81nt, >M01687:476:000000000-LL5F5:1:1110:11975:20395_CONS(1)... at 1:81:1:83/+/98.77% +128 82nt, >M01687:476:000000000-LL5F5:1:1110:14219:20845_CONS(1)... at 1:82:1:83/+/98.78% +129 82nt, >M01687:476:000000000-LL5F5:1:1109:13032:8228_CONS(2)... at 1:82:1:83/+/98.78% +130 82nt, >M01687:476:000000000-LL5F5:1:1109:22513:19412_CONS(2)... at 1:82:1:83/+/98.78% +131 82nt, >M01687:476:000000000-LL5F5:1:1108:14242:5598_CONS(1)... at 1:82:1:83/+/98.78% +132 82nt, >M01687:476:000000000-LL5F5:1:1108:10892:8787_CONS(1)... at 1:82:1:83/+/98.78% +133 82nt, >M01687:476:000000000-LL5F5:1:1108:14437:22161_CONS(1)... at 1:82:1:83/+/98.78% +134 82nt, >M01687:476:000000000-LL5F5:1:1108:14070:23853_CONS(1)... at 1:82:1:83/+/97.56% +135 82nt, >M01687:476:000000000-LL5F5:1:1107:13403:2686_CONS(1)... at 1:82:1:83/+/98.78% +136 82nt, >M01687:476:000000000-LL5F5:1:1107:6215:15129_CONS(1)... at 1:82:1:83/+/98.78% +137 82nt, >M01687:476:000000000-LL5F5:1:1107:14663:20917_CONS(1)... at 1:82:1:83/+/97.56% +138 82nt, >M01687:476:000000000-LL5F5:1:1106:11353:8188_CONS(1)... at 1:82:1:83/+/97.56% +139 82nt, >M01687:476:000000000-LL5F5:1:1105:12511:10367_CONS(1)... at 1:82:1:83/+/98.78% +140 82nt, >M01687:476:000000000-LL5F5:1:1105:5025:17045_CONS(1)... at 1:82:1:83/+/98.78% +141 82nt, >M01687:476:000000000-LL5F5:1:1104:25127:14735_CONS(1)... at 1:82:1:83/+/98.78% +142 82nt, >M01687:476:000000000-LL5F5:1:1104:11208:16193_CONS(1)... at 1:82:1:83/+/98.78% +143 82nt, >M01687:476:000000000-LL5F5:1:1104:22449:19429_CONS(1)... at 1:82:1:83/+/98.78% +144 82nt, >M01687:476:000000000-LL5F5:1:1104:9716:23853_CONS(1)... at 1:82:1:83/+/98.78% +145 82nt, >M01687:476:000000000-LL5F5:1:1103:16408:12855_CONS(1)... at 1:82:1:83/+/98.78% +146 82nt, >M01687:476:000000000-LL5F5:1:1118:21107:20143_CONS(1)... at 1:82:1:83/+/98.78% +147 82nt, >M01687:476:000000000-LL5F5:1:2118:21548:10474_CONS(1)... at 1:82:1:83/+/97.56% +148 81nt, >M01687:476:000000000-LL5F5:1:2119:13464:4420_CONS(1)... at 1:81:1:83/+/98.77% +149 81nt, >M01687:476:000000000-LL5F5:1:2119:11470:8994_CONS(1)... at 1:81:1:83/+/100.00% +150 82nt, >M01687:476:000000000-LL5F5:1:2119:28427:11033_CONS(1)... at 1:82:1:83/+/98.78% +151 82nt, >M01687:476:000000000-LL5F5:1:2119:17524:14026_CONS(1)... at 1:82:1:83/+/98.78% +152 81nt, >M01687:476:000000000-LL5F5:1:2119:21913:17250_CONS(1)... at 1:81:1:83/+/98.77% +153 82nt, >M01687:476:000000000-LL5F5:1:2119:10672:23747_CONS(1)... at 1:82:1:83/+/98.78% +>Cluster 327 +0 83nt, >M01687:476:000000000-LL5F5:1:2108:26947:18809_CONS(1)... * +>Cluster 328 +0 83nt, >M01687:476:000000000-LL5F5:1:1109:26622:9385_CONS(1)... * +>Cluster 329 +0 82nt, >M01687:476:000000000-LL5F5:1:1102:24192:2612_CONS(57)... at 1:82:1:83/+/100.00% +1 82nt, >M01687:476:000000000-LL5F5:1:1101:3287:7104_CONS(31)... at 1:82:1:83/+/97.56% +2 82nt, >M01687:476:000000000-LL5F5:1:1119:25945:15805_CONS(1)... at 1:82:1:83/+/100.00% +3 81nt, >M01687:476:000000000-LL5F5:1:2101:18324:1369_CONS(1)... at 1:81:1:83/+/97.53% +4 82nt, >M01687:476:000000000-LL5F5:1:1114:22011:5634_CONS(1)... at 1:82:1:83/+/98.78% +5 82nt, >M01687:476:000000000-LL5F5:1:1113:7299:17932_CONS(1)... at 1:82:1:83/+/98.78% +6 82nt, >M01687:476:000000000-LL5F5:1:1112:17658:20582_CONS(1)... at 1:82:1:83/+/98.78% +7 81nt, >M01687:476:000000000-LL5F5:1:1110:27353:13936_CONS(1)... at 1:81:1:82/+/97.53% +8 83nt, >M01687:476:000000000-LL5F5:1:1109:14578:19732_CONS(5)... * +9 81nt, >M01687:476:000000000-LL5F5:1:1107:11102:24573_CONS(1)... at 1:81:1:83/+/100.00% +10 81nt, >M01687:476:000000000-LL5F5:1:1106:19397:15631_CONS(3)... at 1:81:1:83/+/100.00% +11 81nt, >M01687:476:000000000-LL5F5:1:1105:27275:13447_CONS(1)... at 1:81:1:83/+/100.00% +12 82nt, >M01687:476:000000000-LL5F5:1:1105:8217:20790_CONS(1)... at 1:82:1:83/+/97.56% +13 82nt, >M01687:476:000000000-LL5F5:1:2118:24493:11932_CONS(1)... at 1:82:1:83/+/98.78% +14 82nt, >M01687:476:000000000-LL5F5:1:2119:13495:22053_CONS(1)... at 1:82:1:83/+/98.78% +>Cluster 330 +0 83nt, >M01687:476:000000000-LL5F5:1:1108:11334:5573_CONS(1)... * +>Cluster 331 +0 83nt, >M01687:476:000000000-LL5F5:1:1107:15118:18731_CONS(1)... * +>Cluster 332 +0 83nt, >M01687:476:000000000-LL5F5:1:1106:2411:15590_CONS(1)... * +>Cluster 333 +0 83nt, >M01687:476:000000000-LL5F5:1:1106:19650:22888_CONS(1)... * +>Cluster 334 +0 80nt, >M01687:476:000000000-LL5F5:1:1102:17077:1828_CONS(1347)... at 1:80:1:82/+/97.50% +1 82nt, >M01687:476:000000000-LL5F5:1:1102:16592:4871_CONS(186)... * +2 82nt, >M01687:476:000000000-LL5F5:1:2115:23045:4608_CONS(1)... at 1:82:1:82/+/98.78% +3 82nt, >M01687:476:000000000-LL5F5:1:2115:17269:9021_CONS(1)... at 1:82:1:82/+/98.78% +4 82nt, >M01687:476:000000000-LL5F5:1:2115:16608:9244_CONS(2)... at 1:82:1:82/+/98.78% +5 79nt, >M01687:476:000000000-LL5F5:1:2115:4497:9722_CONS(2)... at 1:79:1:82/+/97.47% +6 79nt, >M01687:476:000000000-LL5F5:1:2115:21346:21484_CONS(5)... at 1:79:2:82/+/97.47% +7 41nt, >M01687:476:000000000-LL5F5:1:2113:11169:2460_CONS(1)... at 1:41:1:41/+/100.00% +8 82nt, >M01687:476:000000000-LL5F5:1:2112:23535:6777_CONS(1)... at 1:82:1:82/+/98.78% +9 79nt, >M01687:476:000000000-LL5F5:1:2112:28995:15195_CONS(4)... at 1:79:1:82/+/97.47% +10 82nt, >M01687:476:000000000-LL5F5:1:2112:18073:18254_CONS(2)... at 1:82:1:82/+/98.78% +11 80nt, >M01687:476:000000000-LL5F5:1:2112:9563:19045_CONS(4)... at 1:80:1:82/+/97.50% +12 82nt, >M01687:476:000000000-LL5F5:1:2111:21312:5752_CONS(1)... at 1:82:1:82/+/98.78% +13 82nt, >M01687:476:000000000-LL5F5:1:2111:23224:6589_CONS(1)... at 1:82:1:82/+/98.78% +14 82nt, >M01687:476:000000000-LL5F5:1:2111:26864:7587_CONS(1)... at 1:82:1:82/+/98.78% +15 82nt, >M01687:476:000000000-LL5F5:1:2110:6279:5158_CONS(1)... at 1:82:1:82/+/98.78% +16 79nt, >M01687:476:000000000-LL5F5:1:2110:13273:9091_CONS(7)... at 1:79:1:82/+/97.47% +17 82nt, >M01687:476:000000000-LL5F5:1:2110:23180:13740_CONS(2)... at 1:82:1:82/+/98.78% +18 82nt, >M01687:476:000000000-LL5F5:1:2110:18547:20977_CONS(3)... at 1:82:1:82/+/98.78% +19 81nt, >M01687:476:000000000-LL5F5:1:2109:8977:10637_CONS(1)... at 1:81:1:82/+/100.00% +20 82nt, >M01687:476:000000000-LL5F5:1:2109:15860:12753_CONS(1)... at 1:82:1:82/+/97.56% +21 82nt, >M01687:476:000000000-LL5F5:1:2109:11557:19289_CONS(1)... at 1:82:1:82/+/98.78% +22 38nt, >M01687:476:000000000-LL5F5:1:2104:5737:15255_CONS(1)... at 1:38:1:38/+/100.00% +23 80nt, >M01687:476:000000000-LL5F5:1:2102:13012:10823_CONS(1)... at 1:80:1:82/+/98.75% +24 79nt, >M01687:476:000000000-LL5F5:1:2116:21081:2849_CONS(1)... at 1:79:1:82/+/97.47% +25 82nt, >M01687:476:000000000-LL5F5:1:2116:19294:19129_CONS(1)... at 1:82:1:82/+/98.78% +26 79nt, >M01687:476:000000000-LL5F5:1:2117:12632:4365_CONS(2)... at 1:79:1:81/+/97.47% +27 80nt, >M01687:476:000000000-LL5F5:1:2117:6743:5351_CONS(1)... at 1:80:1:82/+/97.50% +28 82nt, >M01687:476:000000000-LL5F5:1:1113:14729:20180_CONS(1)... at 1:82:1:82/+/98.78% +29 79nt, >M01687:476:000000000-LL5F5:1:1112:24014:19137_CONS(1)... at 1:79:1:82/+/97.47% +30 81nt, >M01687:476:000000000-LL5F5:1:1111:16546:3512_CONS(1)... at 1:81:1:82/+/100.00% +31 82nt, >M01687:476:000000000-LL5F5:1:1111:25302:14913_CONS(1)... at 1:82:1:82/+/98.78% +32 82nt, >M01687:476:000000000-LL5F5:1:1110:17307:3726_CONS(1)... at 1:82:1:82/+/98.78% +33 80nt, >M01687:476:000000000-LL5F5:1:1107:8272:9242_CONS(1)... at 1:80:1:82/+/97.50% +34 78nt, >M01687:476:000000000-LL5F5:1:1107:25079:16791_CONS(1)... at 1:78:1:80/+/97.44% +35 81nt, >M01687:476:000000000-LL5F5:1:1107:4280:17982_CONS(1)... at 1:81:1:82/+/100.00% +36 82nt, >M01687:476:000000000-LL5F5:1:1105:13367:12218_CONS(1)... at 1:82:1:82/+/98.78% +37 82nt, >M01687:476:000000000-LL5F5:1:1104:11716:20897_CONS(1)... at 1:82:1:82/+/98.78% +38 42nt, >M01687:476:000000000-LL5F5:1:1118:3980:15050_CONS(1)... at 1:42:1:42/+/97.62% +39 80nt, >M01687:476:000000000-LL5F5:1:2118:25876:20465_CONS(1)... at 1:80:1:82/+/97.50% +>Cluster 335 +0 82nt, >M01687:476:000000000-LL5F5:1:2113:9400:16786_CONS(13)... * +1 82nt, >M01687:476:000000000-LL5F5:1:1114:5283:18995_CONS(1)... at 1:82:1:82/+/97.56% +>Cluster 336 +0 80nt, >M01687:476:000000000-LL5F5:1:1101:4821:14647_CONS(4)... at 1:80:1:82/+/97.50% +1 82nt, >M01687:476:000000000-LL5F5:1:2112:18984:8010_CONS(9)... * +2 79nt, >M01687:476:000000000-LL5F5:1:2103:12002:4294_CONS(3)... at 1:79:1:82/+/97.47% +>Cluster 337 +0 82nt, >M01687:476:000000000-LL5F5:1:2112:8142:17214_CONS(1)... * +>Cluster 338 +0 82nt, >M01687:476:000000000-LL5F5:1:2105:16670:20814_CONS(1)... * +>Cluster 339 +0 81nt, >M01687:476:000000000-LL5F5:1:1102:14163:6839_CONS(97)... at 1:81:2:82/+/100.00% +1 81nt, >M01687:476:000000000-LL5F5:1:1102:12741:13646_CONS(1)... at 1:81:2:82/+/98.77% +2 81nt, >M01687:476:000000000-LL5F5:1:2108:15899:6096_CONS(1)... at 1:81:2:82/+/98.77% +3 80nt, >M01687:476:000000000-LL5F5:1:2108:16674:7087_CONS(1)... at 1:80:2:82/+/98.75% +4 81nt, >M01687:476:000000000-LL5F5:1:2107:7639:5376_CONS(1)... at 1:81:2:82/+/98.77% +5 81nt, >M01687:476:000000000-LL5F5:1:2102:22535:16051_CONS(1)... at 1:81:2:82/+/98.77% +6 82nt, >M01687:476:000000000-LL5F5:1:2117:17305:13649_CONS(1)... * +7 80nt, >M01687:476:000000000-LL5F5:1:1114:12124:21157_CONS(1)... at 1:80:2:82/+/100.00% +8 81nt, >M01687:476:000000000-LL5F5:1:1112:15510:13801_CONS(1)... at 1:81:2:82/+/98.77% +9 80nt, >M01687:476:000000000-LL5F5:1:1111:12329:10836_CONS(1)... at 1:80:2:82/+/100.00% +10 81nt, >M01687:476:000000000-LL5F5:1:1107:22469:2629_CONS(1)... at 1:81:2:82/+/98.77% +11 80nt, >M01687:476:000000000-LL5F5:1:1107:8079:17388_CONS(1)... at 1:80:2:82/+/100.00% +12 81nt, >M01687:476:000000000-LL5F5:1:1106:11513:14128_CONS(1)... at 1:81:2:82/+/98.77% +>Cluster 340 +0 82nt, >M01687:476:000000000-LL5F5:1:1119:15745:11238_CONS(1)... * +>Cluster 341 +0 82nt, >M01687:476:000000000-LL5F5:1:2101:17467:17330_CONS(1)... * +1 82nt, >M01687:476:000000000-LL5F5:1:1106:4266:11244_CONS(1)... at 1:82:1:82/+/97.56% +2 82nt, >M01687:476:000000000-LL5F5:1:2118:14219:23273_CONS(1)... at 1:82:1:82/+/97.56% +>Cluster 342 +0 82nt, >M01687:476:000000000-LL5F5:1:1115:6666:4924_CONS(1)... * +>Cluster 343 +0 82nt, >M01687:476:000000000-LL5F5:1:1114:17344:19018_CONS(1)... * +>Cluster 344 +0 82nt, >M01687:476:000000000-LL5F5:1:1112:11761:19437_CONS(1)... * +>Cluster 345 +0 82nt, >M01687:476:000000000-LL5F5:1:1111:29100:11554_CONS(1)... * +>Cluster 346 +0 82nt, >M01687:476:000000000-LL5F5:1:1109:22453:19220_CONS(1)... * +>Cluster 347 +0 82nt, >M01687:476:000000000-LL5F5:1:1108:15311:8427_CONS(1)... * +>Cluster 348 +0 82nt, >M01687:476:000000000-LL5F5:1:1105:23220:2285_CONS(1)... * +>Cluster 349 +0 82nt, >M01687:476:000000000-LL5F5:1:1104:14825:19686_CONS(1)... * +>Cluster 350 +0 82nt, >M01687:476:000000000-LL5F5:1:2118:14303:11533_CONS(1)... * +>Cluster 351 +0 80nt, >M01687:476:000000000-LL5F5:1:1102:24990:3037_CONS(3)... at 1:80:1:81/+/98.75% +1 80nt, >M01687:476:000000000-LL5F5:1:1102:27895:18854_CONS(1)... at 1:80:1:81/+/97.50% +2 79nt, >M01687:476:000000000-LL5F5:1:1101:27220:5897_CONS(1)... at 1:79:1:81/+/98.73% +3 80nt, >M01687:476:000000000-LL5F5:1:1101:27901:15741_CONS(1)... at 1:80:1:81/+/98.75% +4 81nt, >M01687:476:000000000-LL5F5:1:1101:17974:15985_CONS(1)... * +5 80nt, >M01687:476:000000000-LL5F5:1:2115:22383:5465_CONS(2)... at 1:80:1:81/+/98.75% +6 80nt, >M01687:476:000000000-LL5F5:1:2115:23503:6537_CONS(1)... at 1:80:1:81/+/98.75% +7 80nt, >M01687:476:000000000-LL5F5:1:2115:20464:11961_CONS(2)... at 1:80:1:81/+/98.75% +8 80nt, >M01687:476:000000000-LL5F5:1:2115:8169:18035_CONS(2)... at 1:80:1:81/+/98.75% +9 80nt, >M01687:476:000000000-LL5F5:1:2115:9607:23138_CONS(2)... at 1:80:1:81/+/98.75% +10 78nt, >M01687:476:000000000-LL5F5:1:2114:7383:2695_CONS(1)... at 1:78:3:81/+/98.72% +11 80nt, >M01687:476:000000000-LL5F5:1:2114:21200:10364_CONS(2)... at 1:80:1:81/+/98.75% +12 80nt, >M01687:476:000000000-LL5F5:1:2114:11695:11095_CONS(2)... at 1:80:1:81/+/98.75% +13 80nt, >M01687:476:000000000-LL5F5:1:2114:8144:12191_CONS(1)... at 1:80:1:81/+/98.75% +14 80nt, >M01687:476:000000000-LL5F5:1:2113:12216:3417_CONS(3)... at 1:80:1:81/+/98.75% +15 80nt, >M01687:476:000000000-LL5F5:1:2113:11181:16899_CONS(1)... at 1:80:1:81/+/98.75% +16 80nt, >M01687:476:000000000-LL5F5:1:2112:15534:13284_CONS(1)... at 1:80:1:81/+/98.75% +17 80nt, >M01687:476:000000000-LL5F5:1:2112:2913:13577_CONS(1)... at 1:80:1:81/+/98.75% +18 81nt, >M01687:476:000000000-LL5F5:1:2111:8748:7169_CONS(1)... at 2:81:1:81/+/98.77% +19 79nt, >M01687:476:000000000-LL5F5:1:2111:28321:8034_CONS(1)... at 1:79:1:81/+/100.00% +20 80nt, >M01687:476:000000000-LL5F5:1:2111:29057:10184_CONS(4)... at 1:80:1:81/+/98.75% +21 80nt, >M01687:476:000000000-LL5F5:1:2111:25991:11638_CONS(4)... at 1:80:1:81/+/98.75% +22 80nt, >M01687:476:000000000-LL5F5:1:2110:8499:2928_CONS(2)... at 1:80:1:81/+/98.75% +23 80nt, >M01687:476:000000000-LL5F5:1:2110:18114:3996_CONS(5)... at 1:80:1:81/+/98.75% +24 80nt, >M01687:476:000000000-LL5F5:1:2110:27121:11522_CONS(4)... at 1:80:1:81/+/98.75% +25 80nt, >M01687:476:000000000-LL5F5:1:2110:15680:23292_CONS(1)... at 1:80:1:81/+/98.75% +26 80nt, >M01687:476:000000000-LL5F5:1:2109:10904:7535_CONS(1)... at 1:80:1:81/+/98.75% +27 80nt, >M01687:476:000000000-LL5F5:1:2109:23090:10877_CONS(1)... at 1:80:1:81/+/98.75% +28 80nt, >M01687:476:000000000-LL5F5:1:2109:9380:11851_CONS(4)... at 1:80:1:81/+/98.75% +29 79nt, >M01687:476:000000000-LL5F5:1:2109:6823:12034_CONS(1)... at 1:79:1:81/+/98.73% +30 80nt, >M01687:476:000000000-LL5F5:1:2109:24686:22961_CONS(2)... at 1:80:1:81/+/98.75% +31 80nt, >M01687:476:000000000-LL5F5:1:2108:17042:16764_CONS(2)... at 1:80:1:81/+/98.75% +32 79nt, >M01687:476:000000000-LL5F5:1:2108:9871:21787_CONS(2)... at 1:79:1:81/+/100.00% +33 80nt, >M01687:476:000000000-LL5F5:1:2106:19840:5512_CONS(1)... at 1:80:1:81/+/98.75% +34 80nt, >M01687:476:000000000-LL5F5:1:2106:24060:11408_CONS(2)... at 1:80:1:81/+/98.75% +35 80nt, >M01687:476:000000000-LL5F5:1:2106:4707:13926_CONS(2)... at 1:80:1:81/+/98.75% +36 80nt, >M01687:476:000000000-LL5F5:1:2107:17282:10810_CONS(2)... at 1:80:1:81/+/98.75% +37 80nt, >M01687:476:000000000-LL5F5:1:2107:14300:11772_CONS(2)... at 1:80:1:81/+/98.75% +38 79nt, >M01687:476:000000000-LL5F5:1:2107:19014:20957_CONS(1)... at 1:79:1:81/+/98.73% +39 80nt, >M01687:476:000000000-LL5F5:1:2107:9248:23857_CONS(1)... at 1:80:1:81/+/98.75% +40 80nt, >M01687:476:000000000-LL5F5:1:2104:28338:8004_CONS(1)... at 1:80:1:81/+/98.75% +41 80nt, >M01687:476:000000000-LL5F5:1:2104:24078:11354_CONS(3)... at 1:80:1:81/+/98.75% +42 80nt, >M01687:476:000000000-LL5F5:1:2104:24178:13003_CONS(2)... at 1:80:1:81/+/98.75% +43 80nt, >M01687:476:000000000-LL5F5:1:2104:15330:24240_CONS(1)... at 1:80:1:81/+/98.75% +44 80nt, >M01687:476:000000000-LL5F5:1:2104:11031:24393_CONS(3)... at 1:80:1:81/+/98.75% +45 80nt, >M01687:476:000000000-LL5F5:1:2105:19876:8086_CONS(1)... at 1:80:1:81/+/98.75% +46 80nt, >M01687:476:000000000-LL5F5:1:2102:19092:9717_CONS(1)... at 1:80:1:81/+/98.75% +47 80nt, >M01687:476:000000000-LL5F5:1:2102:3719:12469_CONS(1)... at 1:80:1:81/+/98.75% +48 80nt, >M01687:476:000000000-LL5F5:1:2102:9099:12782_CONS(1)... at 1:80:1:81/+/98.75% +49 80nt, >M01687:476:000000000-LL5F5:1:2102:14887:15593_CONS(2)... at 1:80:1:81/+/98.75% +50 80nt, >M01687:476:000000000-LL5F5:1:2102:20653:16914_CONS(1)... at 1:80:1:81/+/98.75% +51 80nt, >M01687:476:000000000-LL5F5:1:2102:21274:20829_CONS(1)... at 1:80:1:81/+/98.75% +52 78nt, >M01687:476:000000000-LL5F5:1:2103:6922:13154_CONS(1)... at 1:78:1:81/+/100.00% +53 80nt, >M01687:476:000000000-LL5F5:1:2103:12227:24784_CONS(1)... at 1:80:1:81/+/98.75% +54 80nt, >M01687:476:000000000-LL5F5:1:2116:4254:6304_CONS(1)... at 1:80:1:81/+/98.75% +55 81nt, >M01687:476:000000000-LL5F5:1:2116:12575:17849_CONS(1)... at 1:81:1:81/+/98.77% +56 80nt, >M01687:476:000000000-LL5F5:1:2116:13590:18413_CONS(2)... at 1:80:1:81/+/98.75% +57 80nt, >M01687:476:000000000-LL5F5:1:2117:26175:21315_CONS(1)... at 1:80:1:81/+/98.75% +58 80nt, >M01687:476:000000000-LL5F5:1:1119:11286:18671_CONS(2)... at 1:80:1:81/+/98.75% +59 80nt, >M01687:476:000000000-LL5F5:1:1119:11638:24024_CONS(1)... at 1:80:1:81/+/98.75% +60 80nt, >M01687:476:000000000-LL5F5:1:2101:16734:17179_CONS(1)... at 1:80:1:81/+/98.75% +61 80nt, >M01687:476:000000000-LL5F5:1:2101:3270:18071_CONS(1)... at 1:80:1:81/+/98.75% +62 79nt, >M01687:476:000000000-LL5F5:1:1115:16030:3976_CONS(2)... at 1:79:1:80/+/98.73% +63 80nt, >M01687:476:000000000-LL5F5:1:1115:17533:8208_CONS(1)... at 1:80:1:81/+/98.75% +64 80nt, >M01687:476:000000000-LL5F5:1:1116:8103:7996_CONS(3)... at 1:80:1:81/+/98.75% +65 80nt, >M01687:476:000000000-LL5F5:1:1116:20000:18783_CONS(1)... at 1:80:1:81/+/98.75% +66 80nt, >M01687:476:000000000-LL5F5:1:1114:14282:2171_CONS(1)... at 1:80:1:81/+/98.75% +67 79nt, >M01687:476:000000000-LL5F5:1:1114:6521:6421_CONS(2)... at 1:79:1:81/+/100.00% +68 80nt, >M01687:476:000000000-LL5F5:1:1114:12396:24537_CONS(1)... at 1:80:1:81/+/98.75% +69 79nt, >M01687:476:000000000-LL5F5:1:1113:10690:12261_CONS(1)... at 1:79:1:81/+/100.00% +70 79nt, >M01687:476:000000000-LL5F5:1:1113:10105:17167_CONS(2)... at 1:79:1:81/+/100.00% +71 79nt, >M01687:476:000000000-LL5F5:1:1113:27918:18392_CONS(1)... at 1:79:1:81/+/100.00% +72 79nt, >M01687:476:000000000-LL5F5:1:1113:23622:22682_CONS(1)... at 1:79:1:81/+/100.00% +73 80nt, >M01687:476:000000000-LL5F5:1:1111:6579:4194_CONS(1)... at 1:80:1:81/+/98.75% +74 80nt, >M01687:476:000000000-LL5F5:1:1111:20703:13005_CONS(1)... at 1:80:1:81/+/98.75% +75 80nt, >M01687:476:000000000-LL5F5:1:1111:19787:14793_CONS(2)... at 1:80:1:81/+/98.75% +76 80nt, >M01687:476:000000000-LL5F5:1:1110:10985:1491_CONS(1)... at 1:80:1:81/+/98.75% +77 80nt, >M01687:476:000000000-LL5F5:1:1110:9998:3845_CONS(1)... at 1:80:1:81/+/98.75% +78 80nt, >M01687:476:000000000-LL5F5:1:1110:11976:17777_CONS(1)... at 1:80:1:81/+/97.50% +79 81nt, >M01687:476:000000000-LL5F5:1:1108:19619:2133_CONS(1)... at 1:80:1:81/+/98.77% +80 80nt, >M01687:476:000000000-LL5F5:1:1107:19943:2700_CONS(2)... at 1:80:1:81/+/98.75% +81 79nt, >M01687:476:000000000-LL5F5:1:1107:14560:19455_CONS(1)... at 1:79:1:81/+/100.00% +82 80nt, >M01687:476:000000000-LL5F5:1:1106:5191:6802_CONS(1)... at 1:80:1:81/+/98.75% +83 80nt, >M01687:476:000000000-LL5F5:1:1106:26883:13055_CONS(1)... at 1:80:1:81/+/98.75% +84 80nt, >M01687:476:000000000-LL5F5:1:1106:12589:14483_CONS(1)... at 1:80:1:81/+/98.75% +85 80nt, >M01687:476:000000000-LL5F5:1:1105:11544:2496_CONS(1)... at 1:80:1:81/+/98.75% +86 80nt, >M01687:476:000000000-LL5F5:1:1105:19736:3842_CONS(1)... at 1:80:1:81/+/98.75% +87 80nt, >M01687:476:000000000-LL5F5:1:1105:10988:12586_CONS(1)... at 1:80:1:81/+/98.75% +88 80nt, >M01687:476:000000000-LL5F5:1:1104:16156:8909_CONS(1)... at 1:80:1:81/+/98.75% +89 80nt, >M01687:476:000000000-LL5F5:1:1104:29269:15489_CONS(1)... at 1:80:1:81/+/98.75% +90 80nt, >M01687:476:000000000-LL5F5:1:1104:5874:21114_CONS(1)... at 1:80:1:81/+/98.75% +91 78nt, >M01687:476:000000000-LL5F5:1:1103:25110:4139_CONS(1)... at 1:78:1:81/+/98.72% +92 80nt, >M01687:476:000000000-LL5F5:1:1103:28115:8866_CONS(1)... at 1:80:1:81/+/98.75% +93 80nt, >M01687:476:000000000-LL5F5:1:1118:13481:5377_CONS(1)... at 1:80:1:81/+/98.75% +94 80nt, >M01687:476:000000000-LL5F5:1:1118:23135:18043_CONS(1)... at 1:80:1:81/+/98.75% +95 80nt, >M01687:476:000000000-LL5F5:1:1117:8498:6731_CONS(1)... at 1:80:1:81/+/98.75% +96 80nt, >M01687:476:000000000-LL5F5:1:1117:9914:12036_CONS(1)... at 1:80:1:81/+/98.75% +97 79nt, >M01687:476:000000000-LL5F5:1:1117:9924:14444_CONS(1)... at 1:79:1:81/+/100.00% +98 80nt, >M01687:476:000000000-LL5F5:1:2118:22426:20691_CONS(1)... at 1:80:1:81/+/98.75% +99 80nt, >M01687:476:000000000-LL5F5:1:2119:10980:10749_CONS(1)... at 1:80:1:81/+/98.75% +>Cluster 352 +0 81nt, >M01687:476:000000000-LL5F5:1:2114:8194:9355_CONS(1)... * +>Cluster 353 +0 81nt, >M01687:476:000000000-LL5F5:1:2114:23022:19559_CONS(4)... * +>Cluster 354 +0 81nt, >M01687:476:000000000-LL5F5:1:2110:5794:10740_CONS(1)... * +>Cluster 355 +0 81nt, >M01687:476:000000000-LL5F5:1:2116:17043:24275_CONS(1)... * +>Cluster 356 +0 81nt, >M01687:476:000000000-LL5F5:1:1115:25040:3897_CONS(1)... * +1 79nt, >M01687:476:000000000-LL5F5:1:1114:6532:12491_CONS(1)... at 1:79:1:81/+/97.47% +2 79nt, >M01687:476:000000000-LL5F5:1:1106:16637:12257_CONS(1)... at 1:79:1:81/+/97.47% +3 48nt, >M01687:476:000000000-LL5F5:1:1106:16681:24790_CONS(1)... at 1:48:1:49/+/97.92% +>Cluster 357 +0 81nt, >M01687:476:000000000-LL5F5:1:1116:15587:6145_CONS(1)... * +>Cluster 358 +0 81nt, >M01687:476:000000000-LL5F5:1:1117:15121:10755_CONS(1)... * +>Cluster 359 +0 80nt, >M01687:476:000000000-LL5F5:1:2114:7632:13318_CONS(1)... * +>Cluster 360 +0 80nt, >M01687:476:000000000-LL5F5:1:2112:6887:7515_CONS(4)... * +>Cluster 361 +0 80nt, >M01687:476:000000000-LL5F5:1:2110:12027:8791_CONS(1)... * +1 79nt, >M01687:476:000000000-LL5F5:1:1111:13899:16922_CONS(1)... at 1:79:1:80/+/97.47% +2 79nt, >M01687:476:000000000-LL5F5:1:1117:26094:14468_CONS(1)... at 1:79:1:80/+/98.73% +>Cluster 362 +0 80nt, >M01687:476:000000000-LL5F5:1:2116:18488:1311_CONS(1)... * +>Cluster 363 +0 80nt, >M01687:476:000000000-LL5F5:1:2101:15197:13129_CONS(1)... * +>Cluster 364 +0 80nt, >M01687:476:000000000-LL5F5:1:2101:16255:17518_CONS(1)... * +>Cluster 365 +0 80nt, >M01687:476:000000000-LL5F5:1:1114:4669:13209_CONS(1)... * +>Cluster 366 +0 80nt, >M01687:476:000000000-LL5F5:1:1112:23355:2286_CONS(1)... * +1 80nt, >M01687:476:000000000-LL5F5:1:1106:21673:7184_CONS(1)... at 1:80:1:80/+/97.50% +>Cluster 367 +0 80nt, >M01687:476:000000000-LL5F5:1:1112:22649:21596_CONS(1)... * +>Cluster 368 +0 80nt, >M01687:476:000000000-LL5F5:1:1111:27950:18289_CONS(1)... * +>Cluster 369 +0 80nt, >M01687:476:000000000-LL5F5:1:1111:6722:22030_CONS(1)... * +>Cluster 370 +0 80nt, >M01687:476:000000000-LL5F5:1:1103:26231:5074_CONS(1)... * +>Cluster 371 +0 80nt, >M01687:476:000000000-LL5F5:1:1117:15012:18927_CONS(1)... * +>Cluster 372 +0 79nt, >M01687:476:000000000-LL5F5:1:1102:20021:8608_CONS(7)... * +1 78nt, >M01687:476:000000000-LL5F5:1:2112:19939:10579_CONS(1)... at 1:78:1:79/+/100.00% +2 79nt, >M01687:476:000000000-LL5F5:1:2108:17644:2427_CONS(1)... at 1:79:1:79/+/98.73% +3 79nt, >M01687:476:000000000-LL5F5:1:2105:19499:9394_CONS(1)... at 1:79:1:79/+/98.73% +>Cluster 373 +0 79nt, >M01687:476:000000000-LL5F5:1:1102:8735:10478_CONS(11)... * +1 78nt, >M01687:476:000000000-LL5F5:1:2108:6491:8722_CONS(1)... at 1:78:1:79/+/100.00% +2 79nt, >M01687:476:000000000-LL5F5:1:1109:21258:17775_CONS(1)... at 1:79:1:79/+/98.73% +>Cluster 374 +0 79nt, >M01687:476:000000000-LL5F5:1:1101:8224:23986_CONS(1)... * +>Cluster 375 +0 79nt, >M01687:476:000000000-LL5F5:1:2106:13846:11663_CONS(6)... * +>Cluster 376 +0 79nt, >M01687:476:000000000-LL5F5:1:2105:21760:16408_CONS(1)... * +>Cluster 377 +0 79nt, >M01687:476:000000000-LL5F5:1:2102:4526:8220_CONS(1)... * +>Cluster 378 +0 79nt, >M01687:476:000000000-LL5F5:1:2101:20842:1073_CONS(1)... * +>Cluster 379 +0 79nt, >M01687:476:000000000-LL5F5:1:1113:22292:14853_CONS(1)... * +>Cluster 380 +0 79nt, >M01687:476:000000000-LL5F5:1:1113:23634:22849_CONS(1)... * +>Cluster 381 +0 79nt, >M01687:476:000000000-LL5F5:1:1110:23831:13379_CONS(1)... * +>Cluster 382 +0 79nt, >M01687:476:000000000-LL5F5:1:1109:8944:13365_CONS(1)... * +>Cluster 383 +0 79nt, >M01687:476:000000000-LL5F5:1:1107:5175:13345_CONS(1)... * +>Cluster 384 +0 79nt, >M01687:476:000000000-LL5F5:1:1105:23037:2863_CONS(1)... * +>Cluster 385 +0 79nt, >M01687:476:000000000-LL5F5:1:1103:7722:3204_CONS(1)... * +>Cluster 386 +0 79nt, >M01687:476:000000000-LL5F5:1:1103:16486:4279_CONS(1)... * +>Cluster 387 +0 78nt, >M01687:476:000000000-LL5F5:1:2114:19004:16640_CONS(1)... * +>Cluster 388 +0 78nt, >M01687:476:000000000-LL5F5:1:2113:9066:23404_CONS(1)... * +1 78nt, >M01687:476:000000000-LL5F5:1:2101:24425:19918_CONS(1)... at 1:78:1:78/+/97.44% +>Cluster 389 +0 78nt, >M01687:476:000000000-LL5F5:1:2107:11061:6158_CONS(1)... * +>Cluster 390 +0 78nt, >M01687:476:000000000-LL5F5:1:1115:10903:22708_CONS(1)... * +1 78nt, >M01687:476:000000000-LL5F5:1:1112:17906:20020_CONS(2)... at 1:78:1:78/+/97.44% +>Cluster 391 +0 78nt, >M01687:476:000000000-LL5F5:1:1113:12015:14199_CONS(1)... * +1 77nt, >M01687:476:000000000-LL5F5:1:1117:20912:13605_CONS(1)... at 1:77:1:78/+/98.70% +>Cluster 392 +0 77nt, >M01687:476:000000000-LL5F5:1:2107:4470:8621_CONS(1)... * +>Cluster 393 +0 77nt, >M01687:476:000000000-LL5F5:1:2103:10912:6045_CONS(1)... * +>Cluster 394 +0 77nt, >M01687:476:000000000-LL5F5:1:1113:21571:11191_CONS(1)... * +>Cluster 395 +0 77nt, >M01687:476:000000000-LL5F5:1:1109:26891:16360_CONS(1)... * +>Cluster 396 +0 76nt, >M01687:476:000000000-LL5F5:1:2110:25220:11525_CONS(1)... * +>Cluster 397 +0 61nt, >M01687:476:000000000-LL5F5:1:1102:9553:1500_CONS(601)... at 1:61:15:75/+/100.00% +1 61nt, >M01687:476:000000000-LL5F5:1:1102:24377:17774_CONS(3)... at 1:61:15:75/+/98.36% +2 60nt, >M01687:476:000000000-LL5F5:1:1101:22185:3853_CONS(1)... at 1:60:15:75/+/100.00% +3 60nt, >M01687:476:000000000-LL5F5:1:1101:10728:20416_CONS(1)... at 1:60:15:75/+/100.00% +4 61nt, >M01687:476:000000000-LL5F5:1:2115:9287:6517_CONS(1)... at 1:61:15:75/+/98.36% +5 61nt, >M01687:476:000000000-LL5F5:1:2114:20556:1841_CONS(2)... at 1:61:15:75/+/98.36% +6 61nt, >M01687:476:000000000-LL5F5:1:2112:11153:19863_CONS(3)... at 1:61:15:75/+/98.36% +7 61nt, >M01687:476:000000000-LL5F5:1:2111:22955:11337_CONS(2)... at 1:61:15:75/+/98.36% +8 60nt, >M01687:476:000000000-LL5F5:1:2111:24578:14992_CONS(2)... at 1:60:15:75/+/100.00% +9 61nt, >M01687:476:000000000-LL5F5:1:2111:23722:19385_CONS(1)... at 1:61:15:75/+/98.36% +10 60nt, >M01687:476:000000000-LL5F5:1:2109:14883:8918_CONS(1)... at 1:60:15:75/+/100.00% +11 60nt, >M01687:476:000000000-LL5F5:1:2108:9447:8489_CONS(1)... at 1:60:15:75/+/100.00% +12 61nt, >M01687:476:000000000-LL5F5:1:2106:21359:11468_CONS(1)... at 1:61:15:75/+/98.36% +13 60nt, >M01687:476:000000000-LL5F5:1:2107:24562:15351_CONS(1)... at 1:60:15:75/+/100.00% +14 61nt, >M01687:476:000000000-LL5F5:1:2104:6516:4504_CONS(1)... at 1:61:15:75/+/98.36% +15 61nt, >M01687:476:000000000-LL5F5:1:2104:21807:16608_CONS(3)... at 1:61:15:75/+/98.36% +16 61nt, >M01687:476:000000000-LL5F5:1:2104:18163:19943_CONS(1)... at 1:61:15:75/+/98.36% +17 61nt, >M01687:476:000000000-LL5F5:1:2102:8849:2897_CONS(1)... at 1:61:15:75/+/98.36% +18 75nt, >M01687:476:000000000-LL5F5:1:2102:11650:23931_CONS(1)... * +19 61nt, >M01687:476:000000000-LL5F5:1:2103:17992:9145_CONS(1)... at 1:61:15:75/+/98.36% +20 61nt, >M01687:476:000000000-LL5F5:1:2103:10477:17310_CONS(1)... at 1:61:15:75/+/98.36% +21 61nt, >M01687:476:000000000-LL5F5:1:2103:13261:24344_CONS(1)... at 1:61:15:75/+/98.36% +22 61nt, >M01687:476:000000000-LL5F5:1:2117:5055:17234_CONS(1)... at 1:61:15:75/+/98.36% +23 61nt, >M01687:476:000000000-LL5F5:1:1119:16985:1482_CONS(1)... at 1:61:15:75/+/98.36% +24 61nt, >M01687:476:000000000-LL5F5:1:2101:18193:6204_CONS(1)... at 1:61:15:75/+/98.36% +25 60nt, >M01687:476:000000000-LL5F5:1:2101:9935:23439_CONS(1)... at 1:60:15:75/+/100.00% +26 61nt, >M01687:476:000000000-LL5F5:1:1115:15666:2823_CONS(3)... at 1:61:15:75/+/98.36% +27 61nt, >M01687:476:000000000-LL5F5:1:1115:9469:4709_CONS(1)... at 1:61:15:75/+/98.36% +28 60nt, >M01687:476:000000000-LL5F5:1:1115:23172:17185_CONS(1)... at 1:60:15:74/+/100.00% +29 61nt, >M01687:476:000000000-LL5F5:1:1115:6572:23622_CONS(1)... at 1:61:15:75/+/98.36% +30 61nt, >M01687:476:000000000-LL5F5:1:1116:21335:1996_CONS(1)... at 1:61:15:75/+/98.36% +31 61nt, >M01687:476:000000000-LL5F5:1:1114:27191:5557_CONS(1)... at 1:61:15:75/+/98.36% +32 61nt, >M01687:476:000000000-LL5F5:1:1114:17839:13764_CONS(1)... at 1:61:15:75/+/98.36% +33 61nt, >M01687:476:000000000-LL5F5:1:1114:10014:16352_CONS(1)... at 1:61:15:75/+/98.36% +34 61nt, >M01687:476:000000000-LL5F5:1:1110:7092:6964_CONS(1)... at 1:61:15:75/+/98.36% +35 61nt, >M01687:476:000000000-LL5F5:1:1110:10528:11597_CONS(1)... at 1:61:15:75/+/98.36% +36 60nt, >M01687:476:000000000-LL5F5:1:1108:7725:11417_CONS(1)... at 1:60:15:75/+/100.00% +37 61nt, >M01687:476:000000000-LL5F5:1:1106:8441:7028_CONS(1)... at 1:61:15:75/+/98.36% +38 62nt, >M01687:476:000000000-LL5F5:1:1104:23322:3499_CONS(1)... at 1:62:14:75/+/98.39% +39 61nt, >M01687:476:000000000-LL5F5:1:1103:18408:2397_CONS(1)... at 1:61:15:75/+/98.36% +40 61nt, >M01687:476:000000000-LL5F5:1:1103:6061:8546_CONS(1)... at 1:61:15:75/+/98.36% +41 61nt, >M01687:476:000000000-LL5F5:1:2118:12485:6255_CONS(1)... at 1:61:15:75/+/98.36% +42 61nt, >M01687:476:000000000-LL5F5:1:2118:13593:19597_CONS(1)... at 1:61:15:75/+/98.36% +43 61nt, >M01687:476:000000000-LL5F5:1:2119:12317:5051_CONS(1)... at 1:61:15:75/+/98.36% +44 61nt, >M01687:476:000000000-LL5F5:1:2119:21447:9363_CONS(1)... at 1:61:15:75/+/98.36% +45 60nt, >M01687:476:000000000-LL5F5:1:2119:24030:16126_CONS(1)... at 1:60:15:75/+/98.33% +>Cluster 398 +0 74nt, >M01687:476:000000000-LL5F5:1:2113:24359:11127_CONS(1)... * +1 74nt, >M01687:476:000000000-LL5F5:1:1115:25309:19393_CONS(2)... at 1:74:1:74/+/98.65% +>Cluster 399 +0 73nt, >M01687:476:000000000-LL5F5:1:2115:8303:22381_CONS(7)... * +>Cluster 400 +0 73nt, >M01687:476:000000000-LL5F5:1:2112:9202:22209_CONS(17)... * +1 73nt, >M01687:476:000000000-LL5F5:1:2108:13897:3289_CONS(11)... at 1:73:1:73/+/97.26% +>Cluster 401 +0 73nt, >M01687:476:000000000-LL5F5:1:2108:2228:11604_CONS(4)... * +>Cluster 402 +0 73nt, >M01687:476:000000000-LL5F5:1:2116:20026:4927_CONS(3)... * +1 73nt, >M01687:476:000000000-LL5F5:1:1113:7925:3657_CONS(1)... at 1:73:1:73/+/98.63% +2 73nt, >M01687:476:000000000-LL5F5:1:1103:14885:6603_CONS(1)... at 1:73:1:73/+/97.26% +>Cluster 403 +0 73nt, >M01687:476:000000000-LL5F5:1:1109:16102:1856_CONS(1)... * +>Cluster 404 +0 73nt, >M01687:476:000000000-LL5F5:1:1107:9889:4729_CONS(1)... * +>Cluster 405 +0 72nt, >M01687:476:000000000-LL5F5:1:1102:22395:17315_CONS(1)... * +>Cluster 406 +0 72nt, >M01687:476:000000000-LL5F5:1:2114:21612:24670_CONS(1)... * +>Cluster 407 +0 72nt, >M01687:476:000000000-LL5F5:1:1111:9786:17437_CONS(1)... * +>Cluster 408 +0 71nt, >M01687:476:000000000-LL5F5:1:2117:25477:8134_CONS(1)... * +>Cluster 409 +0 71nt, >M01687:476:000000000-LL5F5:1:1115:21766:10559_CONS(6)... * +>Cluster 410 +0 70nt, >M01687:476:000000000-LL5F5:1:2109:29146:9233_CONS(1)... * +>Cluster 411 +0 70nt, >M01687:476:000000000-LL5F5:1:1113:5422:4423_CONS(1)... * +>Cluster 412 +0 70nt, >M01687:476:000000000-LL5F5:1:1111:20796:6086_CONS(1)... * +>Cluster 413 +0 69nt, >M01687:476:000000000-LL5F5:1:1101:9846:21150_CONS(1)... * +>Cluster 414 +0 68nt, >M01687:476:000000000-LL5F5:1:2112:18884:5915_CONS(1)... at 1:68:1:69/+/100.00% +1 69nt, >M01687:476:000000000-LL5F5:1:2111:7628:12998_CONS(9)... * +>Cluster 415 +0 69nt, >M01687:476:000000000-LL5F5:1:2108:7242:19368_CONS(1)... * +>Cluster 416 +0 69nt, >M01687:476:000000000-LL5F5:1:1116:12279:2567_CONS(1)... * +>Cluster 417 +0 69nt, >M01687:476:000000000-LL5F5:1:1110:19917:9063_CONS(1)... * +>Cluster 418 +0 69nt, >M01687:476:000000000-LL5F5:1:1109:10490:12636_CONS(2)... * +>Cluster 419 +0 68nt, >M01687:476:000000000-LL5F5:1:2111:21743:2945_CONS(5)... * +>Cluster 420 +0 66nt, >M01687:476:000000000-LL5F5:1:1102:20491:3866_CONS(331)... * +1 66nt, >M01687:476:000000000-LL5F5:1:1102:27696:14800_CONS(2)... at 1:66:1:66/+/98.48% +2 66nt, >M01687:476:000000000-LL5F5:1:2112:28031:10838_CONS(1)... at 1:66:1:66/+/98.48% +3 65nt, >M01687:476:000000000-LL5F5:1:2112:7278:15385_CONS(1)... at 1:65:1:66/+/100.00% +4 66nt, >M01687:476:000000000-LL5F5:1:2111:19028:13278_CONS(1)... at 1:66:1:66/+/98.48% +5 66nt, >M01687:476:000000000-LL5F5:1:2111:22153:17008_CONS(1)... at 1:66:1:66/+/98.48% +6 65nt, >M01687:476:000000000-LL5F5:1:2109:18454:6614_CONS(7)... at 1:65:1:66/+/100.00% +7 66nt, >M01687:476:000000000-LL5F5:1:2108:8680:21562_CONS(2)... at 1:66:1:66/+/98.48% +8 65nt, >M01687:476:000000000-LL5F5:1:2106:20348:19605_CONS(1)... at 1:65:2:66/+/98.46% +9 66nt, >M01687:476:000000000-LL5F5:1:2106:9822:21764_CONS(1)... at 1:66:1:66/+/98.48% +10 66nt, >M01687:476:000000000-LL5F5:1:2107:8001:8190_CONS(1)... at 1:66:1:66/+/98.48% +11 66nt, >M01687:476:000000000-LL5F5:1:2105:20253:3261_CONS(1)... at 1:66:1:66/+/98.48% +12 66nt, >M01687:476:000000000-LL5F5:1:2105:9661:24500_CONS(1)... at 1:66:1:66/+/98.48% +13 66nt, >M01687:476:000000000-LL5F5:1:2103:23701:8402_CONS(1)... at 1:66:1:66/+/98.48% +14 66nt, >M01687:476:000000000-LL5F5:1:2103:24441:8674_CONS(2)... at 1:66:1:66/+/98.48% +15 66nt, >M01687:476:000000000-LL5F5:1:2103:17541:24128_CONS(1)... at 1:66:1:66/+/98.48% +16 65nt, >M01687:476:000000000-LL5F5:1:2116:26001:3735_CONS(4)... at 1:65:1:66/+/100.00% +17 66nt, >M01687:476:000000000-LL5F5:1:2116:17568:19067_CONS(1)... at 1:66:1:66/+/98.48% +18 66nt, >M01687:476:000000000-LL5F5:1:2116:14225:22348_CONS(1)... at 1:66:1:66/+/98.48% +19 66nt, >M01687:476:000000000-LL5F5:1:2117:21065:5224_CONS(1)... at 1:66:1:66/+/98.48% +20 65nt, >M01687:476:000000000-LL5F5:1:1119:4321:10022_CONS(1)... at 1:65:1:66/+/100.00% +21 66nt, >M01687:476:000000000-LL5F5:1:2101:14257:1971_CONS(1)... at 1:66:1:66/+/98.48% +22 66nt, >M01687:476:000000000-LL5F5:1:1115:2673:10386_CONS(1)... at 1:66:1:66/+/98.48% +23 66nt, >M01687:476:000000000-LL5F5:1:1116:14488:2443_CONS(1)... at 1:66:1:66/+/98.48% +24 65nt, >M01687:476:000000000-LL5F5:1:1116:10257:9575_CONS(1)... at 1:65:1:66/+/98.46% +25 66nt, >M01687:476:000000000-LL5F5:1:1116:20775:18608_CONS(1)... at 1:66:1:66/+/98.48% +26 66nt, >M01687:476:000000000-LL5F5:1:1114:23633:21858_CONS(1)... at 1:66:1:66/+/98.48% +27 66nt, >M01687:476:000000000-LL5F5:1:1113:18278:15305_CONS(1)... at 1:66:1:66/+/98.48% +28 66nt, >M01687:476:000000000-LL5F5:1:1112:17883:16603_CONS(1)... at 1:66:1:66/+/98.48% +29 66nt, >M01687:476:000000000-LL5F5:1:1105:7735:3540_CONS(1)... at 1:66:1:66/+/98.48% +30 66nt, >M01687:476:000000000-LL5F5:1:1105:4394:9514_CONS(1)... at 1:66:1:66/+/98.48% +31 66nt, >M01687:476:000000000-LL5F5:1:1117:8589:1613_CONS(1)... at 1:66:1:66/+/98.48% +>Cluster 421 +0 66nt, >M01687:476:000000000-LL5F5:1:2112:8235:4680_CONS(2)... * +>Cluster 422 +0 66nt, >M01687:476:000000000-LL5F5:1:2103:26324:16127_CONS(1)... * +>Cluster 423 +0 66nt, >M01687:476:000000000-LL5F5:1:1115:15465:1489_CONS(1)... * +>Cluster 424 +0 66nt, >M01687:476:000000000-LL5F5:1:2119:2719:15508_CONS(1)... * +>Cluster 425 +0 65nt, >M01687:476:000000000-LL5F5:1:2115:8200:8672_CONS(1)... * +>Cluster 426 +0 65nt, >M01687:476:000000000-LL5F5:1:2111:17916:10675_CONS(1)... * +>Cluster 427 +0 65nt, >M01687:476:000000000-LL5F5:1:1108:8624:6231_CONS(1)... * +>Cluster 428 +0 64nt, >M01687:476:000000000-LL5F5:1:2115:14397:1087_CONS(1)... * +>Cluster 429 +0 64nt, >M01687:476:000000000-LL5F5:1:2114:22029:12673_CONS(1)... * +>Cluster 430 +0 64nt, >M01687:476:000000000-LL5F5:1:2112:9497:15495_CONS(1)... * +>Cluster 431 +0 64nt, >M01687:476:000000000-LL5F5:1:2109:13933:7006_CONS(1)... * +>Cluster 432 +0 64nt, >M01687:476:000000000-LL5F5:1:2103:5666:11975_CONS(1)... * +>Cluster 433 +0 64nt, >M01687:476:000000000-LL5F5:1:2117:18163:7477_CONS(1)... * +>Cluster 434 +0 64nt, >M01687:476:000000000-LL5F5:1:1114:16923:18507_CONS(1)... * +>Cluster 435 +0 63nt, >M01687:476:000000000-LL5F5:1:2107:23670:20076_CONS(1)... * +>Cluster 436 +0 63nt, >M01687:476:000000000-LL5F5:1:1116:11862:4490_CONS(1)... * +>Cluster 437 +0 63nt, >M01687:476:000000000-LL5F5:1:1114:16229:12582_CONS(1)... * +>Cluster 438 +0 63nt, >M01687:476:000000000-LL5F5:1:1104:26999:18482_CONS(1)... * +>Cluster 439 +0 63nt, >M01687:476:000000000-LL5F5:1:1103:5125:10448_CONS(1)... * +>Cluster 440 +0 62nt, >M01687:476:000000000-LL5F5:1:2109:24789:13955_CONS(1)... * +>Cluster 441 +0 62nt, >M01687:476:000000000-LL5F5:1:2104:23456:2874_CONS(1)... * +1 62nt, >M01687:476:000000000-LL5F5:1:1103:15426:23383_CONS(1)... at 1:62:1:62/+/98.39% +>Cluster 442 +0 62nt, >M01687:476:000000000-LL5F5:1:1109:20623:9144_CONS(1)... * +>Cluster 443 +0 62nt, >M01687:476:000000000-LL5F5:1:1108:14797:5433_CONS(3)... * +>Cluster 444 +0 62nt, >M01687:476:000000000-LL5F5:1:2118:26166:10039_CONS(1)... * +>Cluster 445 +0 61nt, >M01687:476:000000000-LL5F5:1:2106:10453:15471_CONS(2)... * +>Cluster 446 +0 61nt, >M01687:476:000000000-LL5F5:1:1113:23637:6915_CONS(1)... * +>Cluster 447 +0 61nt, >M01687:476:000000000-LL5F5:1:1111:10649:4132_CONS(1)... * +>Cluster 448 +0 61nt, >M01687:476:000000000-LL5F5:1:1111:13599:9902_CONS(1)... * +>Cluster 449 +0 61nt, >M01687:476:000000000-LL5F5:1:1110:27074:19993_CONS(1)... * +>Cluster 450 +0 60nt, >M01687:476:000000000-LL5F5:1:2115:15106:13696_CONS(1)... * +>Cluster 451 +0 60nt, >M01687:476:000000000-LL5F5:1:1114:6853:3286_CONS(1)... * +>Cluster 452 +0 60nt, >M01687:476:000000000-LL5F5:1:1109:25274:22493_CONS(1)... * +>Cluster 453 +0 59nt, >M01687:476:000000000-LL5F5:1:2109:2943:15616_CONS(1)... * +>Cluster 454 +0 59nt, >M01687:476:000000000-LL5F5:1:2103:13628:23559_CONS(4)... * +>Cluster 455 +0 59nt, >M01687:476:000000000-LL5F5:1:1112:22814:3031_CONS(1)... * +>Cluster 456 +0 59nt, >M01687:476:000000000-LL5F5:1:1107:19411:11053_CONS(1)... * +>Cluster 457 +0 58nt, >M01687:476:000000000-LL5F5:1:1102:15877:24368_CONS(13)... * +>Cluster 458 +0 57nt, >M01687:476:000000000-LL5F5:1:2113:22544:16771_CONS(3)... * +>Cluster 459 +0 56nt, >M01687:476:000000000-LL5F5:1:1102:13141:3361_CONS(1)... * +1 56nt, >M01687:476:000000000-LL5F5:1:1102:27082:12499_CONS(84)... at 1:56:1:56/+/98.21% +>Cluster 460 +0 56nt, >M01687:476:000000000-LL5F5:1:2115:14341:5345_CONS(1)... * +>Cluster 461 +0 56nt, >M01687:476:000000000-LL5F5:1:2115:21983:17835_CONS(2)... * +>Cluster 462 +0 56nt, >M01687:476:000000000-LL5F5:1:2114:15754:4460_CONS(1)... * +1 56nt, >M01687:476:000000000-LL5F5:1:2114:4571:13176_CONS(4)... at 1:56:1:56/+/98.21% +>Cluster 463 +0 55nt, >M01687:476:000000000-LL5F5:1:2112:2406:13272_CONS(1)... at 1:55:1:56/+/98.18% +1 56nt, >M01687:476:000000000-LL5F5:1:2112:22464:24055_CONS(2)... * +2 55nt, >M01687:476:000000000-LL5F5:1:1114:16657:18031_CONS(1)... at 1:55:1:56/+/98.18% +3 55nt, >M01687:476:000000000-LL5F5:1:1109:11996:10244_CONS(1)... at 1:55:2:56/+/98.18% +>Cluster 464 +0 56nt, >M01687:476:000000000-LL5F5:1:2111:6450:7975_CONS(2)... * +>Cluster 465 +0 56nt, >M01687:476:000000000-LL5F5:1:2108:12480:11631_CONS(1)... * +>Cluster 466 +0 56nt, >M01687:476:000000000-LL5F5:1:2108:21577:20352_CONS(1)... * +>Cluster 467 +0 56nt, >M01687:476:000000000-LL5F5:1:2108:12755:23339_CONS(7)... * +1 56nt, >M01687:476:000000000-LL5F5:1:1116:23689:20100_CONS(1)... at 1:56:1:56/+/98.21% +>Cluster 468 +0 56nt, >M01687:476:000000000-LL5F5:1:1115:7741:19794_CONS(1)... * +>Cluster 469 +0 56nt, >M01687:476:000000000-LL5F5:1:1116:29520:15023_CONS(2)... * +>Cluster 470 +0 56nt, >M01687:476:000000000-LL5F5:1:1114:12676:10659_CONS(1)... * +>Cluster 471 +0 56nt, >M01687:476:000000000-LL5F5:1:1111:25421:10387_CONS(1)... * +>Cluster 472 +0 56nt, >M01687:476:000000000-LL5F5:1:1108:9033:8617_CONS(2)... * +>Cluster 473 +0 56nt, >M01687:476:000000000-LL5F5:1:1118:5586:8863_CONS(1)... * +>Cluster 474 +0 55nt, >M01687:476:000000000-LL5F5:1:2103:21452:24137_CONS(1)... * +>Cluster 475 +0 55nt, >M01687:476:000000000-LL5F5:1:1106:10007:18149_CONS(1)... * +>Cluster 476 +0 54nt, >M01687:476:000000000-LL5F5:1:1112:26292:7862_CONS(1)... * +>Cluster 477 +0 53nt, >M01687:476:000000000-LL5F5:1:2103:11497:11120_CONS(1)... * +>Cluster 478 +0 52nt, >M01687:476:000000000-LL5F5:1:2112:20693:11874_CONS(1)... * +>Cluster 479 +0 52nt, >M01687:476:000000000-LL5F5:1:2112:22043:14115_CONS(1)... * +>Cluster 480 +0 52nt, >M01687:476:000000000-LL5F5:1:2108:26977:6306_CONS(1)... * +1 39nt, >M01687:476:000000000-LL5F5:1:1115:13914:17093_CONS(1)... at 1:39:1:38/+/97.44% +>Cluster 481 +0 52nt, >M01687:476:000000000-LL5F5:1:2103:25981:5336_CONS(2)... * +1 52nt, >M01687:476:000000000-LL5F5:1:2118:7218:21280_CONS(1)... at 1:52:1:52/+/98.08% +>Cluster 482 +0 52nt, >M01687:476:000000000-LL5F5:1:2116:18763:13580_CONS(1)... * +>Cluster 483 +0 52nt, >M01687:476:000000000-LL5F5:1:2101:4823:15094_CONS(1)... * +>Cluster 484 +0 52nt, >M01687:476:000000000-LL5F5:1:2119:22815:7910_CONS(1)... * +>Cluster 485 +0 51nt, >M01687:476:000000000-LL5F5:1:2113:3684:6681_CONS(1)... * +>Cluster 486 +0 51nt, >M01687:476:000000000-LL5F5:1:2109:21218:22855_CONS(5)... * +>Cluster 487 +0 51nt, >M01687:476:000000000-LL5F5:1:1114:17687:5478_CONS(1)... * +>Cluster 488 +0 50nt, >M01687:476:000000000-LL5F5:1:2110:21978:13972_CONS(1)... * +>Cluster 489 +0 50nt, >M01687:476:000000000-LL5F5:1:2107:6730:11506_CONS(1)... * +>Cluster 490 +0 50nt, >M01687:476:000000000-LL5F5:1:1110:28538:15536_CONS(1)... * +>Cluster 491 +0 50nt, >M01687:476:000000000-LL5F5:1:1106:18053:5826_CONS(1)... * +>Cluster 492 +0 50nt, >M01687:476:000000000-LL5F5:1:1106:18448:17899_CONS(2)... * +>Cluster 493 +0 49nt, >M01687:476:000000000-LL5F5:1:2111:12743:2441_CONS(1)... * +>Cluster 494 +0 49nt, >M01687:476:000000000-LL5F5:1:2109:19450:17620_CONS(1)... * +>Cluster 495 +0 49nt, >M01687:476:000000000-LL5F5:1:2105:24944:4386_CONS(1)... * +>Cluster 496 +0 49nt, >M01687:476:000000000-LL5F5:1:2103:7076:21810_CONS(1)... * +1 41nt, >M01687:476:000000000-LL5F5:1:2103:13680:23923_CONS(1)... at 1:41:1:42/+/97.56% +2 37nt, >M01687:476:000000000-LL5F5:1:1110:8254:5651_CONS(1)... at 1:37:1:37/+/97.30% +>Cluster 497 +0 49nt, >M01687:476:000000000-LL5F5:1:1119:20005:6192_CONS(1)... * +>Cluster 498 +0 49nt, >M01687:476:000000000-LL5F5:1:1113:7362:14701_CONS(1)... * +>Cluster 499 +0 49nt, >M01687:476:000000000-LL5F5:1:1108:16137:4294_CONS(1)... * +>Cluster 500 +0 49nt, >M01687:476:000000000-LL5F5:1:1108:20924:18897_CONS(1)... * +>Cluster 501 +0 49nt, >M01687:476:000000000-LL5F5:1:2119:19514:16968_CONS(1)... * +>Cluster 502 +0 49nt, >M01687:476:000000000-LL5F5:1:2119:25723:19911_CONS(1)... * +>Cluster 503 +0 49nt, >M01687:476:000000000-LL5F5:1:2119:9797:23681_CONS(1)... * +>Cluster 504 +0 48nt, >M01687:476:000000000-LL5F5:1:2115:22314:7756_CONS(1)... * +>Cluster 505 +0 48nt, >M01687:476:000000000-LL5F5:1:2109:8915:10577_CONS(1)... * +>Cluster 506 +0 48nt, >M01687:476:000000000-LL5F5:1:2106:4236:18215_CONS(1)... * +>Cluster 507 +0 48nt, >M01687:476:000000000-LL5F5:1:2102:14409:7630_CONS(3)... * +>Cluster 508 +0 48nt, >M01687:476:000000000-LL5F5:1:2116:2895:18592_CONS(1)... * +>Cluster 509 +0 48nt, >M01687:476:000000000-LL5F5:1:1117:14798:22279_CONS(1)... * +>Cluster 510 +0 47nt, >M01687:476:000000000-LL5F5:1:2114:20646:10081_CONS(1)... * +>Cluster 511 +0 47nt, >M01687:476:000000000-LL5F5:1:2116:12718:17431_CONS(1)... * +>Cluster 512 +0 47nt, >M01687:476:000000000-LL5F5:1:1106:17278:21150_CONS(1)... * +>Cluster 513 +0 46nt, >M01687:476:000000000-LL5F5:1:2112:14259:5247_CONS(1)... * +>Cluster 514 +0 46nt, >M01687:476:000000000-LL5F5:1:1116:28116:7472_CONS(1)... * +>Cluster 515 +0 46nt, >M01687:476:000000000-LL5F5:1:1114:7775:11020_CONS(1)... * +>Cluster 516 +0 45nt, >M01687:476:000000000-LL5F5:1:2110:22717:1584_CONS(1)... * +>Cluster 517 +0 45nt, >M01687:476:000000000-LL5F5:1:1110:28489:8714_CONS(1)... * +>Cluster 518 +0 44nt, >M01687:476:000000000-LL5F5:1:2109:14266:24210_CONS(1)... * +>Cluster 519 +0 44nt, >M01687:476:000000000-LL5F5:1:1116:24297:16984_CONS(1)... * +>Cluster 520 +0 44nt, >M01687:476:000000000-LL5F5:1:1109:20145:14436_CONS(1)... * +>Cluster 521 +0 43nt, >M01687:476:000000000-LL5F5:1:2109:12620:5580_CONS(1)... * +>Cluster 522 +0 43nt, >M01687:476:000000000-LL5F5:1:1112:10150:19488_CONS(1)... * +>Cluster 523 +0 42nt, >M01687:476:000000000-LL5F5:1:1110:11403:3992_CONS(1)... * +>Cluster 524 +0 41nt, >M01687:476:000000000-LL5F5:1:2113:6260:18789_CONS(1)... * +>Cluster 525 +0 41nt, >M01687:476:000000000-LL5F5:1:2108:17078:6560_CONS(1)... * +>Cluster 526 +0 41nt, >M01687:476:000000000-LL5F5:1:2101:5770:22201_CONS(1)... * +>Cluster 527 +0 40nt, >M01687:476:000000000-LL5F5:1:1105:10592:17375_CONS(1)... * +>Cluster 528 +0 40nt, >M01687:476:000000000-LL5F5:1:2118:6142:4616_CONS(1)... * +>Cluster 529 +0 39nt, >M01687:476:000000000-LL5F5:1:1101:11062:13507_CONS(1)... * +1 39nt, >M01687:476:000000000-LL5F5:1:1116:4266:19390_CONS(1)... at 1:39:1:38/+/97.44% +>Cluster 530 +0 39nt, >M01687:476:000000000-LL5F5:1:2112:21268:1323_CONS(1)... * +>Cluster 531 +0 38nt, >M01687:476:000000000-LL5F5:1:2103:25634:11346_CONS(1)... * +>Cluster 532 +0 33nt, >M01687:476:000000000-LL5F5:1:2106:13260:18932_CONS(1)... * +>Cluster 533 +0 31nt, >M01687:476:000000000-LL5F5:1:1110:28179:10205_CONS(1)... * +>Cluster 534 +0 30nt, >M01687:476:000000000-LL5F5:1:1110:23278:23216_CONS(1)... * +>Cluster 535 +0 29nt, >M01687:476:000000000-LL5F5:1:2117:17691:6487_CONS(1)... * +>Cluster 536 +0 28nt, >M01687:476:000000000-LL5F5:1:1104:7756:22829_CONS(1)... *
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/malformed_cluster.clstr Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,4 @@ +>Cluster 0 +0 100nt, >read1:50..._CONS(50) * +invalid_line_without_proper_format +1 90nt, >read2:25..._CONS(25) at /+/95%
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/processed.out Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,18 @@ +cluster count taxa +4 1566 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +10 385 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +22 239 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +24 175 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +36 88 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +42 82 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +43 140 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +50 38 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +125 2 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +130 12 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +139 7 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +152 1 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +152 3 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +324 2 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +395 1 Viridiplantae / Streptophyta / Magnoliopsida / Solanales / Solanaceae / Uncertain taxa / Uncertain taxa +443 1 Viridiplantae / Streptophyta / Magnoliopsida / Ranunculales / Ranunculaceae / Ranunculus / Ranunculus repens +450 1 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Betulaceae / Alnus / Alnus incana
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/sim_out.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,14 @@ +# Average similarity: 99.35 +# Standard deviation: 0.65 +similarity count +100.0 383 +98.89 368 +98.88 18 +98.86 1 +98.73 7 +98.28 1 +98.21 8 +97.8 2 +97.78 29 +97.75 2 +97.73 1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/simple_cluster.clstr Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,2 @@ +>Cluster 0 +0 100nt, >read_no_anno:50... *
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/taxa_out.clstr Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,534 @@ +cluster count taxa +0 10993 Unannotated read +1 3950 Unannotated read +2 5681 Unannotated read +3 2059 Unannotated read +4 1566 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +4 1 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Pyrus / Pyrus communis +5 160 Unannotated read +6 874 Unannotated read +7 706 Unannotated read +8 401 Unannotated read +9 1109 Unannotated read +10 75 Unannotated read +10 385 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +11 479 Unannotated read +12 471 Unannotated read +13 502 Unannotated read +14 455 Unannotated read +15 351 Unannotated read +16 604 Unannotated read +17 302 Unannotated read +18 64 Unannotated read +19 419 Unannotated read +20 302 Unannotated read +21 116 Unannotated read +22 65 Unannotated read +22 239 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +23 347 Unannotated read +24 1 Unannotated read +24 175 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +24 1 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Ulmaceae / Ulmus / Uncertain taxa +25 169 Unannotated read +26 389 Unannotated read +27 228 Unannotated read +28 248 Unannotated read +29 101 Unannotated read +30 237 Unannotated read +31 73 Unannotated read +32 293 Unannotated read +33 30 Unannotated read +34 181 Unannotated read +35 152 Unannotated read +36 14 Unannotated read +36 88 Viridiplantae / Streptophyta / Magnoliopsida / Malvales / Malvaceae / Hibiscus / Hibiscus trionum +37 152 Unannotated read +38 194 Unannotated read +39 112 Unannotated read +40 30 Unannotated read +41 162 Unannotated read +42 4 Unannotated read +42 82 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +42 1 Viridiplantae / Streptophyta / Magnoliopsida / Uncertain taxa / Uncertain taxa / Uncertain taxa / Uncertain taxa +43 140 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +44 66 Unannotated read +45 161 Unannotated read +46 24 Unannotated read +47 271 Unannotated read +48 137 Unannotated read +49 101 Unannotated read +50 1 Unannotated read +50 38 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Rosaceae / Uncertain taxa / Uncertain taxa +51 55 Unannotated read +52 150 Unannotated read +53 42 Unannotated read +54 21 Unannotated read +55 20 Unannotated read +56 75 Unannotated read +57 89 Unannotated read +58 52 Unannotated read +59 19 Unannotated read +60 145 Unannotated read +61 63 Unannotated read +62 127 Unannotated read +63 107 Unannotated read +64 73 Unannotated read +65 34 Unannotated read +66 48 Unannotated read +67 16 Unannotated read +68 163 Unannotated read +69 23 Unannotated read +70 147 Unannotated read +71 22 Unannotated read +72 91 Unannotated read +73 13 Unannotated read +74 11 Unannotated read +75 57 Unannotated read +76 19 Unannotated read +77 69 Unannotated read +78 45 Unannotated read +79 44 Unannotated read +80 27 Unannotated read +81 18 Unannotated read +81 24 Viridiplantae / Streptophyta / Magnoliopsida / Rosales / Uncertain taxa / Uncertain taxa / Uncertain taxa +82 71 Unannotated read +83 71 Unannotated read +84 13 Unannotated read +85 15 Unannotated read +86 23 Unannotated read +87 56 Unannotated read +88 10 Unannotated read +89 13 Unannotated read +90 121 Unannotated read +91 17 Unannotated read +92 28 Unannotated read +93 55 Unannotated read +94 22 Unannotated read +95 10 Unannotated read +96 16 Unannotated read +97 77 Unannotated read +98 12 Unannotated read +99 13 Unannotated read +100 26 Unannotated read +101 16 Unannotated read +102 21 Unannotated read +103 10 Unannotated read +104 8 Unannotated read +105 102 Unannotated read +106 9 Unannotated read +107 25 Unannotated read +108 11 Unannotated read +109 73 Unannotated read +110 34 Unannotated read +111 10 Unannotated read +112 9 Unannotated read +113 15 Unannotated read +114 17 Unannotated read +115 8 Unannotated read +116 8 Unannotated read +117 37 Unannotated read +118 34 Unannotated read +119 49 Unannotated read +120 25 Unannotated read +121 26 Unannotated read +122 9 Unannotated read +123 7 Unannotated read +124 7 Unannotated read +125 16 Unannotated read +125 2 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +126 10 Unannotated read +127 8 Unannotated read +128 8 Unannotated read +129 34 Unannotated read +130 12 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +131 6 Unannotated read +132 7 Unannotated read +133 7 Unannotated read +134 85 Unannotated read +135 22 Unannotated read +136 8 Unannotated read +137 13 Unannotated read +138 9 Unannotated read +139 1 Unannotated read +139 7 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +140 24 Unannotated read +141 29 Unannotated read +142 6 Unannotated read +143 51 Unannotated read +144 83 Unannotated read +145 7 Unannotated read +146 6 Unannotated read +147 7 Unannotated read +148 6 Unannotated read +149 12 Unannotated read +150 10 Unannotated read +151 24 Unannotated read +152 1 Unannotated read +152 3 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Hyacinthaceae / Scilla / Scilla siberica +152 1 Viridiplantae / Streptophyta / Magnoliopsida / Asparagales / Amaryllidaceae / Allium / Uncertain taxa +153 6 Unannotated read +154 7 Unannotated read +155 8 Unannotated read +156 5 Unannotated read +157 47 Unannotated read +158 41 Unannotated read +159 14 Unannotated read +160 44 Unannotated read +161 7 Unannotated read +162 70 Unannotated read +163 22 Unannotated read +164 37 Unannotated read +165 13 Unannotated read +166 6 Unannotated read +167 25 Unannotated read +168 6 Unannotated read +169 8 Unannotated read +170 8 Unannotated read +171 32 Unannotated read +172 18 Unannotated read +173 8 Unannotated read +174 7 Unannotated read +175 15 Unannotated read +176 5 Unannotated read +177 14 Unannotated read +178 27 Unannotated read +179 34 Unannotated read +180 4 Unannotated read +181 4 Unannotated read +182 4 Unannotated read +183 4 Unannotated read +184 6 Unannotated read +185 4 Unannotated read +186 4 Unannotated read +187 60 Unannotated read +188 6 Unannotated read +189 16 Unannotated read +190 4 Unannotated read +191 32 Unannotated read +192 4 Unannotated read +193 4 Unannotated read +194 30 Unannotated read +195 13 Unannotated read +196 4 Unannotated read +197 19 Unannotated read +198 14 Unannotated read +199 34 Unannotated read +200 14 Unannotated read +201 4 Unannotated read +202 4 Unannotated read +203 51 Unannotated read +204 4 Unannotated read +205 4 Unannotated read +206 8 Unannotated read +207 5 Unannotated read +208 16 Unannotated read +209 26 Unannotated read +210 5 Unannotated read +211 4 Unannotated read +212 24 Unannotated read +213 18 Unannotated read +214 97 Unannotated read +215 12 Unannotated read +216 4 Unannotated read +217 37 Unannotated read +218 16 Unannotated read +219 51 Unannotated read +220 3 Unannotated read +221 15 Unannotated read +222 3 Unannotated read +223 5 Unannotated read +224 6 Unannotated read +225 7 Unannotated read +226 11 Unannotated read +227 3 Unannotated read +228 3 Unannotated read +229 3 Unannotated read +230 27 Unannotated read +231 3 Unannotated read +232 3 Unannotated read +233 14 Unannotated read +234 23 Unannotated read +235 3 Unannotated read +236 30 Unannotated read +237 16 Unannotated read +238 3 Unannotated read +239 3 Unannotated read +240 3 Unannotated read +241 3 Unannotated read +242 18 Unannotated read +243 11 Unannotated read +244 3 Unannotated read +245 13 Unannotated read +246 10 Unannotated read +247 5 Unannotated read +248 4 Unannotated read +249 3 Unannotated read +250 20 Unannotated read +251 11 Unannotated read +252 19 Unannotated read +253 3 Unannotated read +254 6 Unannotated read +255 36 Unannotated read +256 6 Unannotated read +257 3 Unannotated read +258 2 Unannotated read +259 8 Unannotated read +260 2 Unannotated read +261 6 Unannotated read +262 2 Unannotated read +263 7 Unannotated read +264 2 Unannotated read +265 2 Unannotated read +266 2 Unannotated read +267 2 Unannotated read +268 2 Unannotated read +269 23 Unannotated read +270 2 Unannotated read +271 5 Unannotated read +272 2 Unannotated read +273 9 Unannotated read +274 2 Unannotated read +275 2 Unannotated read +276 2 Unannotated read +277 2 Unannotated read +278 2 Unannotated read +279 2 Unannotated read +280 2 Unannotated read +281 2 Unannotated read +282 2 Unannotated read +283 5 Unannotated read +284 7 Unannotated read +285 2 Unannotated read +286 3 Unannotated read +287 24 Unannotated read +288 2 Unannotated read +289 5 Unannotated read +290 8 Unannotated read +291 2 Unannotated read +292 4 Unannotated read +293 2 Unannotated read +294 2 Unannotated read +295 14 Unannotated read +296 3 Unannotated read +297 2 Unannotated read +298 2 Unannotated read +299 2 Unannotated read +300 2 Unannotated read +301 2 Unannotated read +302 3 Unannotated read +303 2 Unannotated read +304 2 Unannotated read +305 5 Unannotated read +306 11 Unannotated read +307 2 Unannotated read +308 10 Unannotated read +309 3 Unannotated read +310 8 Unannotated read +311 4 Unannotated read +312 2 Unannotated read +313 3 Unannotated read +314 9 Unannotated read +315 2 Unannotated read +316 2 Unannotated read +317 2 Unannotated read +318 7 Unannotated read +319 6 Unannotated read +320 12 Unannotated read +321 2 Unannotated read +322 10 Unannotated read +323 3 Unannotated read +324 2 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / Juglans / Juglans regia +325 2 Unannotated read +326 9 Unannotated read +327 3 Unannotated read +328 2 Unannotated read +329 3 Unannotated read +330 6 Unannotated read +331 3 Unannotated read +332 5 Unannotated read +333 4 Unannotated read +334 2 Unannotated read +335 4 Unannotated read +336 4 Unannotated read +337 1 Unannotated read +338 1 Unannotated read +339 1 Unannotated read +340 1 Unannotated read +341 1 Unannotated read +342 1 Unannotated read +343 1 Unannotated read +344 1 Unannotated read +345 1 Unannotated read +346 1 Unannotated read +347 1 Unannotated read +348 1 Unannotated read +349 1 Unannotated read +350 1 Unannotated read +351 1 Unannotated read +352 1 Unannotated read +353 1 Unannotated read +354 1 Unannotated read +355 1 Unannotated read +356 1 Unannotated read +357 2 Unannotated read +358 1 Unannotated read +359 1 Unannotated read +360 1 Unannotated read +361 1 Unannotated read +362 1 Unannotated read +363 1 Unannotated read +364 1 Unannotated read +365 1 Unannotated read +366 1 Unannotated read +367 1 Unannotated read +368 1 Unannotated read +369 1 Unannotated read +370 1 Unannotated read +371 1 Unannotated read +372 1 Unannotated read +373 1 Unannotated read +374 1 Unannotated read +375 1 Unannotated read +376 1 Unannotated read +377 1 Unannotated read +378 1 Unannotated read +379 1 Unannotated read +380 1 Unannotated read +381 1 Unannotated read +382 1 Unannotated read +383 1 Unannotated read +384 1 Unannotated read +385 1 Unannotated read +386 6 Unannotated read +387 3 Unannotated read +388 1 Unannotated read +389 4 Unannotated read +390 1 Unannotated read +391 2 Unannotated read +392 1 Unannotated read +393 4 Unannotated read +394 2 Unannotated read +395 1 Viridiplantae / Streptophyta / Magnoliopsida / Solanales / Solanaceae / Uncertain taxa / Uncertain taxa +396 1 Unannotated read +397 1 Unannotated read +398 1 Unannotated read +399 2 Unannotated read +400 1 Unannotated read +401 1 Unannotated read +402 2 Unannotated read +403 2 Unannotated read +404 1 Unannotated read +405 9 Unannotated read +406 1 Unannotated read +407 1 Unannotated read +408 1 Unannotated read +409 3 Unannotated read +410 2 Unannotated read +411 1 Unannotated read +412 1 Unannotated read +413 4 Unannotated read +414 1 Unannotated read +415 1 Unannotated read +416 2 Unannotated read +417 1 Unannotated read +418 3 Unannotated read +419 1 Unannotated read +420 1 Unannotated read +421 1 Unannotated read +422 1 Unannotated read +423 1 Unannotated read +424 6 Unannotated read +425 1 Unannotated read +426 1 Unannotated read +427 1 Unannotated read +428 1 Unannotated read +429 1 Unannotated read +430 6 Unannotated read +431 1 Unannotated read +432 1 Unannotated read +433 1 Unannotated read +434 1 Unannotated read +435 3 Unannotated read +436 1 Unannotated read +437 1 Unannotated read +438 1 Unannotated read +439 1 Unannotated read +440 1 Unannotated read +441 1 Unannotated read +442 1 Unannotated read +443 1 Viridiplantae / Streptophyta / Magnoliopsida / Ranunculales / Ranunculaceae / Ranunculus / Ranunculus repens +444 3 Unannotated read +445 2 Unannotated read +446 1 Unannotated read +447 1 Unannotated read +448 2 Unannotated read +449 1 Unannotated read +450 1 Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Betulaceae / Alnus / Alnus incana +451 1 Unannotated read +452 1 Unannotated read +453 1 Unannotated read +454 1 Unannotated read +455 1 Unannotated read +456 2 Unannotated read +457 1 Unannotated read +458 1 Unannotated read +459 1 Unannotated read +460 1 Unannotated read +461 1 Unannotated read +462 2 Unannotated read +463 4 Unannotated read +464 5 Unannotated read +465 1 Unannotated read +466 1 Unannotated read +467 1 Unannotated read +468 1 Unannotated read +469 1 Unannotated read +470 1 Unannotated read +471 1 Unannotated read +472 1 Unannotated read +473 1 Unannotated read +474 1 Unannotated read +475 1 Unannotated read +476 1 Unannotated read +477 1 Unannotated read +478 1 Unannotated read +479 1 Unannotated read +480 1 Unannotated read +481 1 Unannotated read +482 1 Unannotated read +483 1 Unannotated read +484 1 Unannotated read +485 1 Unannotated read +486 2 Unannotated read +487 3 Unannotated read +488 1 Unannotated read +489 2 Unannotated read +490 5 Unannotated read +491 1 Unannotated read +492 1 Unannotated read +493 5 Unannotated read +494 2 Unannotated read +495 1 Unannotated read +496 1 Unannotated read +497 1 Unannotated read +498 1 Unannotated read +499 1 Unannotated read +500 1 Unannotated read +501 1 Unannotated read +502 1 Unannotated read +503 1 Unannotated read +504 1 Unannotated read +505 1 Unannotated read +506 1 Unannotated read +507 1 Unannotated read +508 1 Unannotated read +509 1 Unannotated read +510 3 Unannotated read +511 1 Unannotated read +512 1 Unannotated read +513 5 Unannotated read +514 3 Unannotated read +515 2 Unannotated read +516 1 Unannotated read +517 4 Unannotated read +518 2 Unannotated read
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test2_evalue_out.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,330 @@ +evalue count +unannotated 11754.0 +2.8e-40 59691 +2.16e-52 6595 +1.3e-38 6105 +2.57e-35 3332 +1.57e-48 3254 +1.24e-38 1895 +5e-43 1573 +3.97e-44 1530 +4.61e-38 1459 +7.25e-36 1352 +8.25e-41 1259 +6.06e-37 975 +4.74e-32 902 +1.01e-50 820 +7.04e-47 639 +5.52e-37 639 +3.94e-27 601 +5.790000000000001e-37 532 +1.12e-44 476 +7.310000000000001e-47 439 +9.92e-40 349 +7.32e-30 332 +3.51e-39 306 +1.85e-42 246 +3.84e-39 239 +1.19e-33 197 +3.28e-45 193 +3.62e-39 191 +1.01e-39 190 +2.33e-41 179 +3.58e-50 160 +2.5e-46 150 +6.56e-42 142 +2.05e-36 134 +3.37e-34 128 +2.15e-36 127 +1.32e-38 113 +3.15e-45 104 +2.92e-40 91 +1.63e-37 76 +2.6e-46 75 +2.2e-30 70 +5.210000000000001e-43 68 +1.95e-36 65 +1.77e-42 64 +4.68e-49 60 +9.08e-35 57 +2.23e-41 56 +1.28e-38 53 +8.6e-41 48 +2.11e-36 46 +2.69e-35 42 +1.84e-25 38 +6.289999999999999e-42 36 +4.22e-33 35 +1.16e-44 29 +1.36e-38 28 +3.4e-45 27 +1.41e-43 27 +3.400000000000001e-28 27 +2.8e-51 26 +1.66e-48 25 +1.68e-37 24 +3.43e-15 23 +1.02e-50 22 +6.150000000000001e-37 22 +7.78e-52 21 +1.08e-39 21 +9.53e-35 21 +1.07e-39 20 +4.68e-38 20 +7.77e-30 19 +7.689999999999999e-52 18 +2.42e-41 17 +9.97e-16 17 +2.84e-40 16 +1.04e-39 16 +9.72e-51 15 +1.52e-43 15 +1.61e-37 15 +3.05e-40 14 +4.82e-38 14 +1.2e-27 14 +1.18e-14 14 +5.58e-48 13 +2.18e-47 13 +7.299999999999999e-47 13 +9.23e-35 13 +3.46e-50 12 +2.03e-47 12 +1.21e-44 12 +7.600000000000001e-36 12 +1.21e-33 12 +2.89e-16 12 +5.71e-48 10 +1.47e-43 10 +4.47e-38 10 +5.97e-37 10 +3.32e-34 10 +6.45e-25 9 +3.68e-39 8 +1.26e-38 8 +4.54e-38 8 +9.380000000000001e-35 8 +1e-10 8 +9.95e-51 7 +5.65e-48 7 +1.66e-37 7 +6.24e-31 7 +1.58e-43 6 +5.14e-43 6 +2.36e-41 6 +4.4e-38 6 +1.73e-37 6 +7.84e-36 6 +2.61e-35 6 +1.52e-32 6 +1.23e-14 6 +4.03e-14 6 +6.56e-11 6 +3.62e-50 5 +4.74e-49 5 +1.65e-48 5 +7.220000000000001e-47 5 +9.109999999999999e-46 5 +1.8e-42 5 +2.97e-40 5 +3.78e-39 5 +5.88e-37 5 +1.03e-28 5 +2.23e-18 5 +8.38e-17 5 +1.29e-14 5 +4.64e-14 5 +5.48e-13 5 +9.17e-11 5 +9.6e-11 5 +1.45e-43 4 +8.13e-41 4 +2.08e-36 4 +2.18e-36 4 +1.54e-32 4 +1.67e-31 4 +6.130000000000001e-31 4 +2.33e-30 4 +4.8e-20 4 +6.41e-19 4 +6.99e-18 4 +3.74e-15 4 +3.9e-15 4 +6.08e-53 3 +2.63e-46 3 +4.02e-44 3 +4.13e-44 3 +1.43e-43 3 +6.47e-42 3 +6.65e-42 3 +2.29e-41 3 +8.48e-41 3 +4.96e-38 3 +7.37e-36 3 +7.49e-36 3 +2.73e-35 3 +3.43e-34 3 +1.7e-31 3 +3.62e-28 3 +5.1e-26 3 +2.42e-17 3 +4.24e-14 3 +1.27e-49 2 +1.61e-48 2 +6.189999999999999e-48 2 +2.2e-47 2 +2.66e-46 2 +3.32e-45 2 +1.51e-43 2 +5.41e-43 2 +1.87e-42 2 +2.39e-41 2 +7.9e-41 2 +8.36e-41 2 +8.71e-41 2 +1.98e-36 2 +2.78e-35 2 +3.21e-34 2 +1.17e-33 2 +5.56e-32 2 +1.42e-26 2 +1.48e-26 2 +5.460000000000001e-26 2 +5.99e-25 2 +7.35e-24 2 +8.339999999999999e-24 2 +2.57e-23 2 +2.71e-23 2 +1.67e-19 2 +1.78e-19 2 +1.95e-19 2 +2.02e-18 2 +2.38e-18 2 +7.77e-18 2 +3.25e-16 2 +1.08e-15 2 +3.59e-15 2 +4.44e-14 2 +4.84e-14 2 +5.74e-13 2 +1.6e-12 2 +1.97e-12 2 +2.16e-12 2 +2.48e-52 1 +2.73e-51 1 +1.06e-50 1 +3.74e-50 1 +1.23e-49 1 +1.3e-49 1 +4.36e-49 1 +5.78e-48 1 +1.98e-47 1 +2.1e-47 1 +7.75e-47 1 +2.53e-46 1 +9e-46 1 +3.36e-45 1 +1.13e-44 1 +1.18e-44 1 +1.19e-44 1 +1.28e-44 1 +4.24e-44 1 +4.5e-44 1 +5.28e-43 1 +5.620000000000001e-43 1 +6.82e-42 1 +2.45e-41 1 +8.02e-41 1 +9.18e-41 1 +9.51e-41 1 +3.01e-40 1 +1.05e-39 1 +1.1e-39 1 +1.32e-39 1 +3.73e-39 1 +3.89e-39 1 +1.34e-38 1 +1.46e-38 1 +4.89e-38 1 +1.56e-37 1 +1.79e-37 1 +5.7e-37 1 +6.240000000000001e-37 1 +2.02e-36 1 +6.9e-36 1 +7.02e-36 1 +7.14e-36 1 +7.72e-36 1 +8.19e-36 1 +8.31e-36 1 +2.65e-35 1 +8.63e-35 1 +8.930000000000001e-35 1 +9.69e-35 1 +3.05e-34 1 +3.76e-34 1 +1.15e-33 1 +3.8e-33 1 +4.15e-33 1 +4.37e-33 1 +4.65e-33 1 +1.34e-32 1 +1.49e-32 1 +1.67e-32 1 +5.740000000000001e-32 1 +1.74e-31 1 +6.95e-31 1 +2.25e-30 1 +7.93e-30 1 +2.85e-29 1 +9.07e-29 1 +9.46e-29 1 +1.45e-27 1 +4.04e-27 1 +1.39e-26 1 +1.71e-25 1 +6.29e-25 1 +9.5e-23 1 +9.759999999999999e-23 1 +3.24e-22 1 +3.33e-22 1 +3.42e-22 1 +1.13e-21 1 +1.16e-21 1 +1.2e-21 1 +3.95e-21 1 +1.38e-20 1 +1.46e-20 1 +5.11e-20 1 +1.73e-19 1 +5.81e-19 1 +6.01e-19 1 +8.03e-18 1 +2.61e-17 1 +2.7e-17 1 +2.98e-17 1 +9.05e-17 1 +9.38e-17 1 +9.72e-17 1 +1.01e-16 1 +1.04e-16 1 +3.01e-16 1 +3.13e-16 1 +3.86e-16 1 +4.1e-16 1 +4.05e-15 1 +4.99e-15 1 +1.51e-14 1 +1.68e-14 1 +1.74e-14 1 +5.04e-14 1 +5.45e-14 1 +6.45e-14 1 +1.6e-13 1 +1.74e-13 1 +6.26e-13 1 +6.78e-13 1 +7.3e-13 1 +2.06e-12 1 +5.4e-12 1 +8.73e-11 1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test2_sim_extra_out.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,110 @@ +# Average similarity: 98.94 +# Standard deviation: 0.68 +similarity count +100.0 23803 +99.47 1 +99.46 1 +99.44 3 +99.43 2 +99.42 2 +99.4 1 +99.39 4 +99.38 2 +99.37 1 +99.22 2 +99.21 1 +99.07 6600 +99.06 167 +99.05 3 +99.03 4 +99.02 2 +99.01 5 +99.0 438 +98.99 105 +98.98 174 +98.97 654 +98.96 37 +98.95 694 +98.94 41 +98.92 96 +98.91 777 +98.9 28 +98.89 237 +98.88 308 +98.86 35 +98.85 104 +98.84 6 +98.83 1 +98.82 59663 +98.81 1575 +98.8 238 +98.78 362 +98.77 34 +98.75 145 +98.74 1 +98.73 917 +98.72 113 +98.7 6 +98.67 1 +98.65 2 +98.63 2 +98.59 3 +98.57 77 +98.56 1 +98.55 3 +98.48 28 +98.46 2 +98.41 1 +98.39 2 +98.36 43 +98.35 1 +98.33 2 +98.31 1 +98.28 3 +98.21 92 +98.18 5 +98.15 25 +98.13 853 +98.11 42 +98.1 1 +98.08 4 +98.04 3 +98.02 8 +98.0 36 +97.98 8 +97.96 22 +97.94 188 +97.92 17 +97.89 52 +97.87 14 +97.85 13 +97.83 325 +97.8 20 +97.78 1188 +97.75 197 +97.73 17 +97.7 19 +97.67 159 +97.65 7487 +97.62 387 +97.59 96 +97.56 73 +97.53 8 +97.5 1392 +97.47 132 +97.44 32 +97.4 1 +97.37 14 +97.3 3 +97.27 1 +97.26 12 +97.25 2 +97.22 8 +97.2 91 +97.18 1 +97.17 2 +97.14 11 +97.12 2 +97.1 1 +97.03 5 +97.0 946
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test2_sim_out.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,110 @@ +# Average similarity: 98.94 +# Standard deviation: 0.68 +similarity count +100.0 23803 +99.47 1 +99.46 1 +99.44 3 +99.43 2 +99.42 2 +99.4 1 +99.39 4 +99.38 2 +99.37 1 +99.22 2 +99.21 1 +99.07 6600 +99.06 167 +99.05 3 +99.03 4 +99.02 2 +99.01 5 +99.0 438 +98.99 105 +98.98 174 +98.97 654 +98.96 37 +98.95 694 +98.94 41 +98.92 96 +98.91 777 +98.9 28 +98.89 237 +98.88 308 +98.86 35 +98.85 104 +98.84 6 +98.83 1 +98.82 59663 +98.81 1575 +98.8 238 +98.78 362 +98.77 34 +98.75 145 +98.74 1 +98.73 917 +98.72 113 +98.7 6 +98.67 1 +98.65 2 +98.63 2 +98.59 3 +98.57 77 +98.56 1 +98.55 3 +98.48 28 +98.46 2 +98.41 1 +98.39 2 +98.36 43 +98.35 1 +98.33 2 +98.31 1 +98.28 3 +98.21 92 +98.18 5 +98.15 25 +98.13 853 +98.11 42 +98.1 1 +98.08 4 +98.04 3 +98.02 8 +98.0 36 +97.98 8 +97.96 22 +97.94 188 +97.92 17 +97.89 52 +97.87 14 +97.85 13 +97.83 325 +97.8 20 +97.78 1188 +97.75 197 +97.73 17 +97.7 19 +97.67 159 +97.65 7487 +97.62 387 +97.59 96 +97.56 73 +97.53 8 +97.5 1392 +97.47 132 +97.44 32 +97.4 1 +97.37 14 +97.3 3 +97.27 1 +97.26 12 +97.25 2 +97.22 8 +97.2 91 +97.18 1 +97.17 2 +97.14 11 +97.12 2 +97.1 1 +97.03 5 +97.0 946
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test_2count_extra_out.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,539 @@ +cluster unannotated annotated total perc_unannotated perc_annotated +0 1.0 0 1.0 100.00 0.00 +1 16.0 68214 68230.0 0.02 99.98 +2 9.0 7796 7805.0 0.12 99.88 +3 7364.0 3 7367.0 99.96 0.04 +4 49.0 521 570.0 8.60 91.40 +5 1648.0 1 1649.0 99.94 0.06 +6 2.0 1857 1859.0 0.11 99.89 +7 390.0 1 391.0 99.74 0.26 +8 15.0 2148 2163.0 0.69 99.31 +9 142.0 4337 4479.0 3.17 96.83 +10 1.0 0 1.0 100.00 0.00 +11 2.0 1014 1016.0 0.20 99.80 +12 1.0 0 1.0 100.00 0.00 +13 57.0 0 57.0 100.00 0.00 +14 41.0 0 41.0 100.00 0.00 +15 7.0 18 25.0 28.00 72.00 +16 1.0 2 3.0 33.33 66.67 +17 1.0 12 13.0 7.69 92.31 +18 0.0 1 1.0 0.00 100.00 +19 1.0 0 1.0 100.00 0.00 +20 1.0 1 2.0 50.00 50.00 +21 1.0 1 2.0 50.00 50.00 +22 1.0 0 1.0 100.00 0.00 +23 1.0 0 1.0 100.00 0.00 +24 0.0 33 33.0 0.00 100.00 +25 1.0 0 1.0 100.00 0.00 +26 1.0 1 2.0 50.00 50.00 +27 1.0 0 1.0 100.00 0.00 +28 2.0 0 2.0 100.00 0.00 +29 1.0 0 1.0 100.00 0.00 +30 2.0 7 9.0 22.22 77.78 +31 1.0 16 17.0 5.88 94.12 +32 1.0 0 1.0 100.00 0.00 +33 0.0 15 15.0 0.00 100.00 +34 1.0 0 1.0 100.00 0.00 +35 1.0 0 1.0 100.00 0.00 +36 1.0 3718 3719.0 0.03 99.97 +37 0.0 133 133.0 0.00 100.00 +38 1.0 0 1.0 100.00 0.00 +39 1.0 0 1.0 100.00 0.00 +40 0.0 8 8.0 0.00 100.00 +41 0.0 1 1.0 0.00 100.00 +42 1.0 855 856.0 0.12 99.88 +43 1.0 0 1.0 100.00 0.00 +44 0.0 1 1.0 0.00 100.00 +45 1.0 0 1.0 100.00 0.00 +46 0.0 1 1.0 0.00 100.00 +47 0.0 1 1.0 0.00 100.00 +48 1.0 0 1.0 100.00 0.00 +49 1.0 0 1.0 100.00 0.00 +50 1.0 0 1.0 100.00 0.00 +51 1.0 0 1.0 100.00 0.00 +52 1.0 0 1.0 100.00 0.00 +53 0.0 1 1.0 0.00 100.00 +54 0.0 2 2.0 0.00 100.00 +55 1.0 0 1.0 100.00 0.00 +56 1.0 0 1.0 100.00 0.00 +57 0.0 8 8.0 0.00 100.00 +58 0.0 5 5.0 0.00 100.00 +59 1.0 0 1.0 100.00 0.00 +60 0.0 2 2.0 0.00 100.00 +61 1.0 1 2.0 50.00 50.00 +62 0.0 1 1.0 0.00 100.00 +63 0.0 1 1.0 0.00 100.00 +64 0.0 3 3.0 0.00 100.00 +65 1.0 0 1.0 100.00 0.00 +66 0.0 169 169.0 0.00 100.00 +67 1.0 0 1.0 100.00 0.00 +68 27.0 15 42.0 64.29 35.71 +69 1.0 555 556.0 0.18 99.82 +70 1.0 0 1.0 100.00 0.00 +71 1.0 0 1.0 100.00 0.00 +72 1.0 0 1.0 100.00 0.00 +73 0.0 1 1.0 0.00 100.00 +74 1.0 0 1.0 100.00 0.00 +75 1.0 0 1.0 100.00 0.00 +76 1.0 0 1.0 100.00 0.00 +77 1.0 0 1.0 100.00 0.00 +78 2.0 1 3.0 66.67 33.33 +79 1.0 0 1.0 100.00 0.00 +80 1.0 0 1.0 100.00 0.00 +81 0.0 1 1.0 0.00 100.00 +82 2.0 0 2.0 100.00 0.00 +83 1.0 0 1.0 100.00 0.00 +84 1.0 0 1.0 100.00 0.00 +85 1.0 0 1.0 100.00 0.00 +86 0.0 1 1.0 0.00 100.00 +87 2.0 0 2.0 100.00 0.00 +88 1.0 0 1.0 100.00 0.00 +89 1.0 0 1.0 100.00 0.00 +90 1.0 0 1.0 100.00 0.00 +91 1.0 0 1.0 100.00 0.00 +92 58.0 35 93.0 62.37 37.63 +93 1.0 0 1.0 100.00 0.00 +94 1.0 0 1.0 100.00 0.00 +95 1.0 0 1.0 100.00 0.00 +96 1.0 122 123.0 0.81 99.19 +97 1.0 4 5.0 20.00 80.00 +98 1.0 0 1.0 100.00 0.00 +99 1.0 0 1.0 100.00 0.00 +100 1.0 0 1.0 100.00 0.00 +101 0.0 1 1.0 0.00 100.00 +102 1.0 0 1.0 100.00 0.00 +103 1.0 0 1.0 100.00 0.00 +104 30.0 0 30.0 100.00 0.00 +105 0.0 1 1.0 0.00 100.00 +106 1.0 0 1.0 100.00 0.00 +107 2.0 0 2.0 100.00 0.00 +108 0.0 1 1.0 0.00 100.00 +109 0.0 1 1.0 0.00 100.00 +110 1.0 0 1.0 100.00 0.00 +111 1.0 0 1.0 100.00 0.00 +112 0.0 10 10.0 0.00 100.00 +113 1.0 1 2.0 50.00 50.00 +114 1.0 0 1.0 100.00 0.00 +115 0.0 27 27.0 0.00 100.00 +116 1.0 0 1.0 100.00 0.00 +117 1.0 0 1.0 100.00 0.00 +118 1.0 0 1.0 100.00 0.00 +119 1.0 0 1.0 100.00 0.00 +120 1.0 0 1.0 100.00 0.00 +121 8.0 30 38.0 21.05 78.95 +122 2.0 1 3.0 66.67 33.33 +123 2.0 0 2.0 100.00 0.00 +124 0.0 3 3.0 0.00 100.00 +125 1.0 0 1.0 100.00 0.00 +126 0.0 1 1.0 0.00 100.00 +127 0.0 1 1.0 0.00 100.00 +128 0.0 21 21.0 0.00 100.00 +129 13.0 0 13.0 100.00 0.00 +130 1.0 0 1.0 100.00 0.00 +131 0.0 2 2.0 0.00 100.00 +132 1.0 0 1.0 100.00 0.00 +133 0.0 1 1.0 0.00 100.00 +134 1.0 0 1.0 100.00 0.00 +135 0.0 1 1.0 0.00 100.00 +136 8.0 1292 1300.0 0.62 99.38 +137 0.0 122 122.0 0.00 100.00 +138 0.0 458 458.0 0.00 100.00 +139 1.0 0 1.0 100.00 0.00 +140 2.0 0 2.0 100.00 0.00 +141 1.0 1 2.0 50.00 50.00 +142 0.0 1 1.0 0.00 100.00 +143 123.0 0 123.0 100.00 0.00 +144 0.0 19 19.0 0.00 100.00 +145 2.0 101 103.0 1.94 98.06 +146 0.0 2 2.0 0.00 100.00 +147 0.0 1 1.0 0.00 100.00 +148 0.0 13 13.0 0.00 100.00 +149 352.0 0 352.0 100.00 0.00 +150 1.0 0 1.0 100.00 0.00 +151 0.0 1 1.0 0.00 100.00 +152 1.0 1 2.0 50.00 50.00 +153 1.0 1 2.0 50.00 50.00 +154 0.0 2 2.0 0.00 100.00 +155 0.0 4 4.0 0.00 100.00 +156 1.0 0 1.0 100.00 0.00 +157 0.0 1 1.0 0.00 100.00 +158 1.0 3 4.0 25.00 75.00 +159 1.0 0 1.0 100.00 0.00 +160 1.0 0 1.0 100.00 0.00 +161 0.0 51 51.0 0.00 100.00 +162 1.0 0 1.0 100.00 0.00 +163 1.0 0 1.0 100.00 0.00 +164 1.0 5 6.0 16.67 83.33 +165 1.0 0 1.0 100.00 0.00 +166 0.0 14 14.0 0.00 100.00 +167 12.0 0 12.0 100.00 0.00 +168 2.0 1 3.0 66.67 33.33 +169 1.0 0 1.0 100.00 0.00 +170 1.0 0 1.0 100.00 0.00 +171 1.0 1 2.0 50.00 50.00 +172 1.0 0 1.0 100.00 0.00 +173 0.0 1 1.0 0.00 100.00 +174 1.0 0 1.0 100.00 0.00 +175 1.0 0 1.0 100.00 0.00 +176 1.0 0 1.0 100.00 0.00 +177 1.0 0 1.0 100.00 0.00 +178 0.0 45 45.0 0.00 100.00 +179 1.0 80 81.0 1.23 98.77 +180 1.0 0 1.0 100.00 0.00 +181 543.0 0 543.0 100.00 0.00 +182 2.0 1 3.0 66.67 33.33 +183 1.0 0 1.0 100.00 0.00 +184 2.0 1 3.0 66.67 33.33 +185 1.0 0 1.0 100.00 0.00 +186 0.0 4 4.0 0.00 100.00 +187 1.0 9 10.0 10.00 90.00 +188 1.0 0 1.0 100.00 0.00 +189 2.0 0 2.0 100.00 0.00 +190 0.0 3 3.0 0.00 100.00 +191 1.0 0 1.0 100.00 0.00 +192 1.0 0 1.0 100.00 0.00 +193 1.0 0 1.0 100.00 0.00 +194 40.0 1 41.0 97.56 2.44 +195 4.0 0 4.0 100.00 0.00 +196 21.0 322 343.0 6.12 93.88 +197 1.0 1 2.0 50.00 50.00 +198 2.0 0 2.0 100.00 0.00 +199 1.0 0 1.0 100.00 0.00 +200 2.0 0 2.0 100.00 0.00 +201 0.0 1 1.0 0.00 100.00 +202 5.0 0 5.0 100.00 0.00 +203 3.0 0 3.0 100.00 0.00 +204 1.0 0 1.0 100.00 0.00 +205 1.0 0 1.0 100.00 0.00 +206 1.0 0 1.0 100.00 0.00 +207 0.0 1 1.0 0.00 100.00 +208 1.0 0 1.0 100.00 0.00 +209 64.0 6 70.0 91.43 8.57 +210 1.0 0 1.0 100.00 0.00 +211 3.0 0 3.0 100.00 0.00 +212 1.0 0 1.0 100.00 0.00 +213 1.0 0 1.0 100.00 0.00 +214 1.0 0 1.0 100.00 0.00 +215 1.0 0 1.0 100.00 0.00 +216 2.0 4 6.0 33.33 66.67 +217 1.0 0 1.0 100.00 0.00 +218 1.0 1 2.0 50.00 50.00 +219 1.0 0 1.0 100.00 0.00 +220 1.0 0 1.0 100.00 0.00 +221 1.0 0 1.0 100.00 0.00 +222 2.0 0 2.0 100.00 0.00 +223 1.0 0 1.0 100.00 0.00 +224 9.0 0 9.0 100.00 0.00 +225 1.0 0 1.0 100.00 0.00 +226 1.0 0 1.0 100.00 0.00 +227 1.0 0 1.0 100.00 0.00 +228 2.0 0 2.0 100.00 0.00 +229 2.0 0 2.0 100.00 0.00 +230 1.0 0 1.0 100.00 0.00 +231 2.0 0 2.0 100.00 0.00 +232 1.0 0 1.0 100.00 0.00 +233 1.0 4 5.0 20.00 80.00 +234 1.0 1 2.0 50.00 50.00 +235 1.0 0 1.0 100.00 0.00 +236 5.0 1 6.0 83.33 16.67 +237 1.0 0 1.0 100.00 0.00 +238 1.0 0 1.0 100.00 0.00 +239 1.0 0 1.0 100.00 0.00 +240 2.0 0 2.0 100.00 0.00 +241 1.0 1 2.0 50.00 50.00 +242 1.0 0 1.0 100.00 0.00 +243 1.0 0 1.0 100.00 0.00 +244 1.0 0 1.0 100.00 0.00 +245 1.0 1 2.0 50.00 50.00 +246 1.0 0 1.0 100.00 0.00 +247 1.0 0 1.0 100.00 0.00 +248 1.0 1 2.0 50.00 50.00 +249 1.0 0 1.0 100.00 0.00 +250 2.0 1 3.0 66.67 33.33 +251 1.0 0 1.0 100.00 0.00 +252 0.0 1 1.0 0.00 100.00 +253 1.0 0 1.0 100.00 0.00 +254 0.0 1 1.0 0.00 100.00 +255 1.0 0 1.0 100.00 0.00 +256 1.0 0 1.0 100.00 0.00 +257 1.0 0 1.0 100.00 0.00 +258 1.0 0 1.0 100.00 0.00 +259 1.0 0 1.0 100.00 0.00 +260 1.0 0 1.0 100.00 0.00 +261 1.0 0 1.0 100.00 0.00 +262 1.0 0 1.0 100.00 0.00 +263 0.0 1 1.0 0.00 100.00 +264 0.0 45 45.0 0.00 100.00 +265 1.0 0 1.0 100.00 0.00 +266 1.0 0 1.0 100.00 0.00 +267 1.0 0 1.0 100.00 0.00 +268 1.0 0 1.0 100.00 0.00 +269 1.0 0 1.0 100.00 0.00 +270 1.0 0 1.0 100.00 0.00 +271 2.0 0 2.0 100.00 0.00 +272 1.0 0 1.0 100.00 0.00 +273 2.0 0 2.0 100.00 0.00 +274 1.0 0 1.0 100.00 0.00 +275 1.0 0 1.0 100.00 0.00 +276 1.0 0 1.0 100.00 0.00 +277 1.0 0 1.0 100.00 0.00 +278 1.0 0 1.0 100.00 0.00 +279 0.0 1 1.0 0.00 100.00 +280 1.0 0 1.0 100.00 0.00 +281 1.0 0 1.0 100.00 0.00 +282 1.0 0 1.0 100.00 0.00 +283 1.0 0 1.0 100.00 0.00 +284 1.0 0 1.0 100.00 0.00 +285 0.0 2 2.0 0.00 100.00 +286 1.0 0 1.0 100.00 0.00 +287 2.0 0 2.0 100.00 0.00 +288 0.0 1 1.0 0.00 100.00 +289 1.0 0 1.0 100.00 0.00 +290 1.0 0 1.0 100.00 0.00 +291 1.0 1 2.0 50.00 50.00 +292 1.0 0 1.0 100.00 0.00 +293 1.0 0 1.0 100.00 0.00 +294 1.0 0 1.0 100.00 0.00 +295 1.0 0 1.0 100.00 0.00 +296 1.0 0 1.0 100.00 0.00 +297 1.0 0 1.0 100.00 0.00 +298 1.0 0 1.0 100.00 0.00 +299 1.0 0 1.0 100.00 0.00 +300 1.0 0 1.0 100.00 0.00 +301 1.0 0 1.0 100.00 0.00 +302 1.0 0 1.0 100.00 0.00 +303 1.0 0 1.0 100.00 0.00 +304 1.0 0 1.0 100.00 0.00 +305 1.0 0 1.0 100.00 0.00 +306 2.0 0 2.0 100.00 0.00 +307 1.0 0 1.0 100.00 0.00 +308 0.0 3 3.0 0.00 100.00 +309 0.0 48 48.0 0.00 100.00 +310 5.0 0 5.0 100.00 0.00 +311 19.0 0 19.0 100.00 0.00 +312 1.0 0 1.0 100.00 0.00 +313 1.0 0 1.0 100.00 0.00 +314 1.0 1 2.0 50.00 50.00 +315 1.0 0 1.0 100.00 0.00 +316 1.0 0 1.0 100.00 0.00 +317 1.0 0 1.0 100.00 0.00 +318 1.0 0 1.0 100.00 0.00 +319 1.0 0 1.0 100.00 0.00 +320 1.0 0 1.0 100.00 0.00 +321 0.0 1 1.0 0.00 100.00 +322 1.0 0 1.0 100.00 0.00 +323 1.0 0 1.0 100.00 0.00 +324 2.0 128 130.0 1.54 98.46 +325 3.0 89 92.0 3.26 96.74 +326 1.0 2104 2105.0 0.05 99.95 +327 1.0 0 1.0 100.00 0.00 +328 1.0 0 1.0 100.00 0.00 +329 2.0 105 107.0 1.87 98.13 +330 0.0 1 1.0 0.00 100.00 +331 1.0 0 1.0 100.00 0.00 +332 1.0 0 1.0 100.00 0.00 +333 1.0 0 1.0 100.00 0.00 +334 1.0 1593 1594.0 0.06 99.94 +335 0.0 14 14.0 0.00 100.00 +336 0.0 16 16.0 0.00 100.00 +337 1.0 0 1.0 100.00 0.00 +338 1.0 0 1.0 100.00 0.00 +339 0.0 109 109.0 0.00 100.00 +340 1.0 0 1.0 100.00 0.00 +341 0.0 3 3.0 0.00 100.00 +342 1.0 0 1.0 100.00 0.00 +343 1.0 0 1.0 100.00 0.00 +344 1.0 0 1.0 100.00 0.00 +345 0.0 1 1.0 0.00 100.00 +346 1.0 0 1.0 100.00 0.00 +347 1.0 0 1.0 100.00 0.00 +348 1.0 0 1.0 100.00 0.00 +349 1.0 0 1.0 100.00 0.00 +350 1.0 0 1.0 100.00 0.00 +351 7.0 142 149.0 4.70 95.30 +352 1.0 0 1.0 100.00 0.00 +353 4.0 0 4.0 100.00 0.00 +354 1.0 0 1.0 100.00 0.00 +355 0.0 1 1.0 0.00 100.00 +356 0.0 4 4.0 0.00 100.00 +357 1.0 0 1.0 100.00 0.00 +358 1.0 0 1.0 100.00 0.00 +359 1.0 0 1.0 100.00 0.00 +360 4.0 0 4.0 100.00 0.00 +361 0.0 3 3.0 0.00 100.00 +362 1.0 0 1.0 100.00 0.00 +363 0.0 1 1.0 0.00 100.00 +364 1.0 0 1.0 100.00 0.00 +365 1.0 0 1.0 100.00 0.00 +366 2.0 0 2.0 100.00 0.00 +367 1.0 0 1.0 100.00 0.00 +368 1.0 0 1.0 100.00 0.00 +369 1.0 0 1.0 100.00 0.00 +370 1.0 0 1.0 100.00 0.00 +371 1.0 0 1.0 100.00 0.00 +372 10.0 0 10.0 100.00 0.00 +373 13.0 0 13.0 100.00 0.00 +374 1.0 0 1.0 100.00 0.00 +375 0.0 6 6.0 0.00 100.00 +376 1.0 0 1.0 100.00 0.00 +377 1.0 0 1.0 100.00 0.00 +378 1.0 0 1.0 100.00 0.00 +379 1.0 0 1.0 100.00 0.00 +380 1.0 0 1.0 100.00 0.00 +381 1.0 0 1.0 100.00 0.00 +382 1.0 0 1.0 100.00 0.00 +383 1.0 0 1.0 100.00 0.00 +384 1.0 0 1.0 100.00 0.00 +385 1.0 0 1.0 100.00 0.00 +386 1.0 0 1.0 100.00 0.00 +387 1.0 0 1.0 100.00 0.00 +388 2.0 0 2.0 100.00 0.00 +389 1.0 0 1.0 100.00 0.00 +390 0.0 3 3.0 0.00 100.00 +391 0.0 2 2.0 0.00 100.00 +392 1.0 0 1.0 100.00 0.00 +393 1.0 0 1.0 100.00 0.00 +394 1.0 0 1.0 100.00 0.00 +395 1.0 0 1.0 100.00 0.00 +396 1.0 0 1.0 100.00 0.00 +397 1.0 656 657.0 0.15 99.85 +398 3.0 0 3.0 100.00 0.00 +399 7.0 0 7.0 100.00 0.00 +400 28.0 0 28.0 100.00 0.00 +401 0.0 4 4.0 0.00 100.00 +402 5.0 0 5.0 100.00 0.00 +403 1.0 0 1.0 100.00 0.00 +404 1.0 0 1.0 100.00 0.00 +405 1.0 0 1.0 100.00 0.00 +406 1.0 0 1.0 100.00 0.00 +407 1.0 0 1.0 100.00 0.00 +408 1.0 0 1.0 100.00 0.00 +409 0.0 6 6.0 0.00 100.00 +410 1.0 0 1.0 100.00 0.00 +411 1.0 0 1.0 100.00 0.00 +412 1.0 0 1.0 100.00 0.00 +413 1.0 0 1.0 100.00 0.00 +414 10.0 0 10.0 100.00 0.00 +415 1.0 0 1.0 100.00 0.00 +416 1.0 0 1.0 100.00 0.00 +417 1.0 0 1.0 100.00 0.00 +418 0.0 2 2.0 0.00 100.00 +419 5.0 0 5.0 100.00 0.00 +420 1.0 373 374.0 0.27 99.73 +421 2.0 0 2.0 100.00 0.00 +422 0.0 1 1.0 0.00 100.00 +423 1.0 0 1.0 100.00 0.00 +424 1.0 0 1.0 100.00 0.00 +425 1.0 0 1.0 100.00 0.00 +426 1.0 0 1.0 100.00 0.00 +427 1.0 0 1.0 100.00 0.00 +428 0.0 1 1.0 0.00 100.00 +429 0.0 1 1.0 0.00 100.00 +430 1.0 0 1.0 100.00 0.00 +431 1.0 0 1.0 100.00 0.00 +432 1.0 0 1.0 100.00 0.00 +433 1.0 0 1.0 100.00 0.00 +434 1.0 0 1.0 100.00 0.00 +435 1.0 0 1.0 100.00 0.00 +436 1.0 0 1.0 100.00 0.00 +437 1.0 0 1.0 100.00 0.00 +438 1.0 0 1.0 100.00 0.00 +439 0.0 1 1.0 0.00 100.00 +440 1.0 0 1.0 100.00 0.00 +441 2.0 0 2.0 100.00 0.00 +442 1.0 0 1.0 100.00 0.00 +443 3.0 0 3.0 100.00 0.00 +444 1.0 0 1.0 100.00 0.00 +445 2.0 0 2.0 100.00 0.00 +446 1.0 0 1.0 100.00 0.00 +447 1.0 0 1.0 100.00 0.00 +448 1.0 0 1.0 100.00 0.00 +449 1.0 0 1.0 100.00 0.00 +450 1.0 0 1.0 100.00 0.00 +451 0.0 1 1.0 0.00 100.00 +452 0.0 1 1.0 0.00 100.00 +453 1.0 0 1.0 100.00 0.00 +454 4.0 0 4.0 100.00 0.00 +455 1.0 0 1.0 100.00 0.00 +456 0.0 1 1.0 0.00 100.00 +457 13.0 0 13.0 100.00 0.00 +458 3.0 0 3.0 100.00 0.00 +459 85.0 0 85.0 100.00 0.00 +460 1.0 0 1.0 100.00 0.00 +461 2.0 0 2.0 100.00 0.00 +462 5.0 0 5.0 100.00 0.00 +463 5.0 0 5.0 100.00 0.00 +464 2.0 0 2.0 100.00 0.00 +465 1.0 0 1.0 100.00 0.00 +466 1.0 0 1.0 100.00 0.00 +467 8.0 0 8.0 100.00 0.00 +468 1.0 0 1.0 100.00 0.00 +469 2.0 0 2.0 100.00 0.00 +470 1.0 0 1.0 100.00 0.00 +471 1.0 0 1.0 100.00 0.00 +472 2.0 0 2.0 100.00 0.00 +473 1.0 0 1.0 100.00 0.00 +474 1.0 0 1.0 100.00 0.00 +475 1.0 0 1.0 100.00 0.00 +476 1.0 0 1.0 100.00 0.00 +477 1.0 0 1.0 100.00 0.00 +478 1.0 0 1.0 100.00 0.00 +479 1.0 0 1.0 100.00 0.00 +480 2.0 0 2.0 100.00 0.00 +481 3.0 0 3.0 100.00 0.00 +482 0.0 1 1.0 0.00 100.00 +483 0.0 1 1.0 0.00 100.00 +484 1.0 0 1.0 100.00 0.00 +485 1.0 0 1.0 100.00 0.00 +486 5.0 0 5.0 100.00 0.00 +487 1.0 0 1.0 100.00 0.00 +488 1.0 0 1.0 100.00 0.00 +489 0.0 1 1.0 0.00 100.00 +490 1.0 0 1.0 100.00 0.00 +491 1.0 0 1.0 100.00 0.00 +492 2.0 0 2.0 100.00 0.00 +493 1.0 0 1.0 100.00 0.00 +494 0.0 1 1.0 0.00 100.00 +495 1.0 0 1.0 100.00 0.00 +496 3.0 0 3.0 100.00 0.00 +497 1.0 0 1.0 100.00 0.00 +498 0.0 1 1.0 0.00 100.00 +499 1.0 0 1.0 100.00 0.00 +500 0.0 1 1.0 0.00 100.00 +501 1.0 0 1.0 100.00 0.00 +502 1.0 0 1.0 100.00 0.00 +503 1.0 0 1.0 100.00 0.00 +504 1.0 0 1.0 100.00 0.00 +505 1.0 0 1.0 100.00 0.00 +506 1.0 0 1.0 100.00 0.00 +507 3.0 0 3.0 100.00 0.00 +508 1.0 0 1.0 100.00 0.00 +509 1.0 0 1.0 100.00 0.00 +510 1.0 0 1.0 100.00 0.00 +511 1.0 0 1.0 100.00 0.00 +512 0.0 1 1.0 0.00 100.00 +513 1.0 0 1.0 100.00 0.00 +514 1.0 0 1.0 100.00 0.00 +515 1.0 0 1.0 100.00 0.00 +516 0.0 1 1.0 0.00 100.00 +517 1.0 0 1.0 100.00 0.00 +518 0.0 1 1.0 0.00 100.00 +519 0.0 1 1.0 0.00 100.00 +520 1.0 0 1.0 100.00 0.00 +521 1.0 0 1.0 100.00 0.00 +522 0.0 1 1.0 0.00 100.00 +523 1.0 0 1.0 100.00 0.00 +524 1.0 0 1.0 100.00 0.00 +525 1.0 0 1.0 100.00 0.00 +526 1.0 0 1.0 100.00 0.00 +527 1.0 0 1.0 100.00 0.00 +528 1.0 0 1.0 100.00 0.00 +529 2.0 0 2.0 100.00 0.00 +530 0.0 1 1.0 0.00 100.00 +531 1.0 0 1.0 100.00 0.00 +532 0.0 1 1.0 0.00 100.00 +533 1.0 0 1.0 100.00 0.00 +534 1.0 0 1.0 100.00 0.00 +535 1.0 0 1.0 100.00 0.00 +536 1.0 0 1.0 100.00 0.00 +TOTAL 11754.0 99826 111580.0 10.53 89.47
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test_2count_out.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,539 @@ +cluster unannotated annotated total perc_unannotated perc_annotated +0 1.0 0 1.0 100.00 0.00 +1 16.0 68214 68230.0 0.02 99.98 +2 9.0 7796 7805.0 0.12 99.88 +3 7364.0 3 7367.0 99.96 0.04 +4 49.0 521 570.0 8.60 91.40 +5 1648.0 1 1649.0 99.94 0.06 +6 2.0 1857 1859.0 0.11 99.89 +7 390.0 1 391.0 99.74 0.26 +8 15.0 2148 2163.0 0.69 99.31 +9 142.0 4337 4479.0 3.17 96.83 +10 1.0 0 1.0 100.00 0.00 +11 2.0 1014 1016.0 0.20 99.80 +12 1.0 0 1.0 100.00 0.00 +13 57.0 0 57.0 100.00 0.00 +14 41.0 0 41.0 100.00 0.00 +15 7.0 18 25.0 28.00 72.00 +16 1.0 2 3.0 33.33 66.67 +17 1.0 12 13.0 7.69 92.31 +18 0.0 1 1.0 0.00 100.00 +19 1.0 0 1.0 100.00 0.00 +20 1.0 1 2.0 50.00 50.00 +21 1.0 1 2.0 50.00 50.00 +22 1.0 0 1.0 100.00 0.00 +23 1.0 0 1.0 100.00 0.00 +24 0.0 33 33.0 0.00 100.00 +25 1.0 0 1.0 100.00 0.00 +26 1.0 1 2.0 50.00 50.00 +27 1.0 0 1.0 100.00 0.00 +28 2.0 0 2.0 100.00 0.00 +29 1.0 0 1.0 100.00 0.00 +30 2.0 7 9.0 22.22 77.78 +31 1.0 16 17.0 5.88 94.12 +32 1.0 0 1.0 100.00 0.00 +33 0.0 15 15.0 0.00 100.00 +34 1.0 0 1.0 100.00 0.00 +35 1.0 0 1.0 100.00 0.00 +36 1.0 3718 3719.0 0.03 99.97 +37 0.0 133 133.0 0.00 100.00 +38 1.0 0 1.0 100.00 0.00 +39 1.0 0 1.0 100.00 0.00 +40 0.0 8 8.0 0.00 100.00 +41 0.0 1 1.0 0.00 100.00 +42 1.0 855 856.0 0.12 99.88 +43 1.0 0 1.0 100.00 0.00 +44 0.0 1 1.0 0.00 100.00 +45 1.0 0 1.0 100.00 0.00 +46 0.0 1 1.0 0.00 100.00 +47 0.0 1 1.0 0.00 100.00 +48 1.0 0 1.0 100.00 0.00 +49 1.0 0 1.0 100.00 0.00 +50 1.0 0 1.0 100.00 0.00 +51 1.0 0 1.0 100.00 0.00 +52 1.0 0 1.0 100.00 0.00 +53 0.0 1 1.0 0.00 100.00 +54 0.0 2 2.0 0.00 100.00 +55 1.0 0 1.0 100.00 0.00 +56 1.0 0 1.0 100.00 0.00 +57 0.0 8 8.0 0.00 100.00 +58 0.0 5 5.0 0.00 100.00 +59 1.0 0 1.0 100.00 0.00 +60 0.0 2 2.0 0.00 100.00 +61 1.0 1 2.0 50.00 50.00 +62 0.0 1 1.0 0.00 100.00 +63 0.0 1 1.0 0.00 100.00 +64 0.0 3 3.0 0.00 100.00 +65 1.0 0 1.0 100.00 0.00 +66 0.0 169 169.0 0.00 100.00 +67 1.0 0 1.0 100.00 0.00 +68 27.0 15 42.0 64.29 35.71 +69 1.0 555 556.0 0.18 99.82 +70 1.0 0 1.0 100.00 0.00 +71 1.0 0 1.0 100.00 0.00 +72 1.0 0 1.0 100.00 0.00 +73 0.0 1 1.0 0.00 100.00 +74 1.0 0 1.0 100.00 0.00 +75 1.0 0 1.0 100.00 0.00 +76 1.0 0 1.0 100.00 0.00 +77 1.0 0 1.0 100.00 0.00 +78 2.0 1 3.0 66.67 33.33 +79 1.0 0 1.0 100.00 0.00 +80 1.0 0 1.0 100.00 0.00 +81 0.0 1 1.0 0.00 100.00 +82 2.0 0 2.0 100.00 0.00 +83 1.0 0 1.0 100.00 0.00 +84 1.0 0 1.0 100.00 0.00 +85 1.0 0 1.0 100.00 0.00 +86 0.0 1 1.0 0.00 100.00 +87 2.0 0 2.0 100.00 0.00 +88 1.0 0 1.0 100.00 0.00 +89 1.0 0 1.0 100.00 0.00 +90 1.0 0 1.0 100.00 0.00 +91 1.0 0 1.0 100.00 0.00 +92 58.0 35 93.0 62.37 37.63 +93 1.0 0 1.0 100.00 0.00 +94 1.0 0 1.0 100.00 0.00 +95 1.0 0 1.0 100.00 0.00 +96 1.0 122 123.0 0.81 99.19 +97 1.0 4 5.0 20.00 80.00 +98 1.0 0 1.0 100.00 0.00 +99 1.0 0 1.0 100.00 0.00 +100 1.0 0 1.0 100.00 0.00 +101 0.0 1 1.0 0.00 100.00 +102 1.0 0 1.0 100.00 0.00 +103 1.0 0 1.0 100.00 0.00 +104 30.0 0 30.0 100.00 0.00 +105 0.0 1 1.0 0.00 100.00 +106 1.0 0 1.0 100.00 0.00 +107 2.0 0 2.0 100.00 0.00 +108 0.0 1 1.0 0.00 100.00 +109 0.0 1 1.0 0.00 100.00 +110 1.0 0 1.0 100.00 0.00 +111 1.0 0 1.0 100.00 0.00 +112 0.0 10 10.0 0.00 100.00 +113 1.0 1 2.0 50.00 50.00 +114 1.0 0 1.0 100.00 0.00 +115 0.0 27 27.0 0.00 100.00 +116 1.0 0 1.0 100.00 0.00 +117 1.0 0 1.0 100.00 0.00 +118 1.0 0 1.0 100.00 0.00 +119 1.0 0 1.0 100.00 0.00 +120 1.0 0 1.0 100.00 0.00 +121 8.0 30 38.0 21.05 78.95 +122 2.0 1 3.0 66.67 33.33 +123 2.0 0 2.0 100.00 0.00 +124 0.0 3 3.0 0.00 100.00 +125 1.0 0 1.0 100.00 0.00 +126 0.0 1 1.0 0.00 100.00 +127 0.0 1 1.0 0.00 100.00 +128 0.0 21 21.0 0.00 100.00 +129 13.0 0 13.0 100.00 0.00 +130 1.0 0 1.0 100.00 0.00 +131 0.0 2 2.0 0.00 100.00 +132 1.0 0 1.0 100.00 0.00 +133 0.0 1 1.0 0.00 100.00 +134 1.0 0 1.0 100.00 0.00 +135 0.0 1 1.0 0.00 100.00 +136 8.0 1292 1300.0 0.62 99.38 +137 0.0 122 122.0 0.00 100.00 +138 0.0 458 458.0 0.00 100.00 +139 1.0 0 1.0 100.00 0.00 +140 2.0 0 2.0 100.00 0.00 +141 1.0 1 2.0 50.00 50.00 +142 0.0 1 1.0 0.00 100.00 +143 123.0 0 123.0 100.00 0.00 +144 0.0 19 19.0 0.00 100.00 +145 2.0 101 103.0 1.94 98.06 +146 0.0 2 2.0 0.00 100.00 +147 0.0 1 1.0 0.00 100.00 +148 0.0 13 13.0 0.00 100.00 +149 352.0 0 352.0 100.00 0.00 +150 1.0 0 1.0 100.00 0.00 +151 0.0 1 1.0 0.00 100.00 +152 1.0 1 2.0 50.00 50.00 +153 1.0 1 2.0 50.00 50.00 +154 0.0 2 2.0 0.00 100.00 +155 0.0 4 4.0 0.00 100.00 +156 1.0 0 1.0 100.00 0.00 +157 0.0 1 1.0 0.00 100.00 +158 1.0 3 4.0 25.00 75.00 +159 1.0 0 1.0 100.00 0.00 +160 1.0 0 1.0 100.00 0.00 +161 0.0 51 51.0 0.00 100.00 +162 1.0 0 1.0 100.00 0.00 +163 1.0 0 1.0 100.00 0.00 +164 1.0 5 6.0 16.67 83.33 +165 1.0 0 1.0 100.00 0.00 +166 0.0 14 14.0 0.00 100.00 +167 12.0 0 12.0 100.00 0.00 +168 2.0 1 3.0 66.67 33.33 +169 1.0 0 1.0 100.00 0.00 +170 1.0 0 1.0 100.00 0.00 +171 1.0 1 2.0 50.00 50.00 +172 1.0 0 1.0 100.00 0.00 +173 0.0 1 1.0 0.00 100.00 +174 1.0 0 1.0 100.00 0.00 +175 1.0 0 1.0 100.00 0.00 +176 1.0 0 1.0 100.00 0.00 +177 1.0 0 1.0 100.00 0.00 +178 0.0 45 45.0 0.00 100.00 +179 1.0 80 81.0 1.23 98.77 +180 1.0 0 1.0 100.00 0.00 +181 543.0 0 543.0 100.00 0.00 +182 2.0 1 3.0 66.67 33.33 +183 1.0 0 1.0 100.00 0.00 +184 2.0 1 3.0 66.67 33.33 +185 1.0 0 1.0 100.00 0.00 +186 0.0 4 4.0 0.00 100.00 +187 1.0 9 10.0 10.00 90.00 +188 1.0 0 1.0 100.00 0.00 +189 2.0 0 2.0 100.00 0.00 +190 0.0 3 3.0 0.00 100.00 +191 1.0 0 1.0 100.00 0.00 +192 1.0 0 1.0 100.00 0.00 +193 1.0 0 1.0 100.00 0.00 +194 40.0 1 41.0 97.56 2.44 +195 4.0 0 4.0 100.00 0.00 +196 21.0 322 343.0 6.12 93.88 +197 1.0 1 2.0 50.00 50.00 +198 2.0 0 2.0 100.00 0.00 +199 1.0 0 1.0 100.00 0.00 +200 2.0 0 2.0 100.00 0.00 +201 0.0 1 1.0 0.00 100.00 +202 5.0 0 5.0 100.00 0.00 +203 3.0 0 3.0 100.00 0.00 +204 1.0 0 1.0 100.00 0.00 +205 1.0 0 1.0 100.00 0.00 +206 1.0 0 1.0 100.00 0.00 +207 0.0 1 1.0 0.00 100.00 +208 1.0 0 1.0 100.00 0.00 +209 64.0 6 70.0 91.43 8.57 +210 1.0 0 1.0 100.00 0.00 +211 3.0 0 3.0 100.00 0.00 +212 1.0 0 1.0 100.00 0.00 +213 1.0 0 1.0 100.00 0.00 +214 1.0 0 1.0 100.00 0.00 +215 1.0 0 1.0 100.00 0.00 +216 2.0 4 6.0 33.33 66.67 +217 1.0 0 1.0 100.00 0.00 +218 1.0 1 2.0 50.00 50.00 +219 1.0 0 1.0 100.00 0.00 +220 1.0 0 1.0 100.00 0.00 +221 1.0 0 1.0 100.00 0.00 +222 2.0 0 2.0 100.00 0.00 +223 1.0 0 1.0 100.00 0.00 +224 9.0 0 9.0 100.00 0.00 +225 1.0 0 1.0 100.00 0.00 +226 1.0 0 1.0 100.00 0.00 +227 1.0 0 1.0 100.00 0.00 +228 2.0 0 2.0 100.00 0.00 +229 2.0 0 2.0 100.00 0.00 +230 1.0 0 1.0 100.00 0.00 +231 2.0 0 2.0 100.00 0.00 +232 1.0 0 1.0 100.00 0.00 +233 1.0 4 5.0 20.00 80.00 +234 1.0 1 2.0 50.00 50.00 +235 1.0 0 1.0 100.00 0.00 +236 5.0 1 6.0 83.33 16.67 +237 1.0 0 1.0 100.00 0.00 +238 1.0 0 1.0 100.00 0.00 +239 1.0 0 1.0 100.00 0.00 +240 2.0 0 2.0 100.00 0.00 +241 1.0 1 2.0 50.00 50.00 +242 1.0 0 1.0 100.00 0.00 +243 1.0 0 1.0 100.00 0.00 +244 1.0 0 1.0 100.00 0.00 +245 1.0 1 2.0 50.00 50.00 +246 1.0 0 1.0 100.00 0.00 +247 1.0 0 1.0 100.00 0.00 +248 1.0 1 2.0 50.00 50.00 +249 1.0 0 1.0 100.00 0.00 +250 2.0 1 3.0 66.67 33.33 +251 1.0 0 1.0 100.00 0.00 +252 0.0 1 1.0 0.00 100.00 +253 1.0 0 1.0 100.00 0.00 +254 0.0 1 1.0 0.00 100.00 +255 1.0 0 1.0 100.00 0.00 +256 1.0 0 1.0 100.00 0.00 +257 1.0 0 1.0 100.00 0.00 +258 1.0 0 1.0 100.00 0.00 +259 1.0 0 1.0 100.00 0.00 +260 1.0 0 1.0 100.00 0.00 +261 1.0 0 1.0 100.00 0.00 +262 1.0 0 1.0 100.00 0.00 +263 0.0 1 1.0 0.00 100.00 +264 0.0 45 45.0 0.00 100.00 +265 1.0 0 1.0 100.00 0.00 +266 1.0 0 1.0 100.00 0.00 +267 1.0 0 1.0 100.00 0.00 +268 1.0 0 1.0 100.00 0.00 +269 1.0 0 1.0 100.00 0.00 +270 1.0 0 1.0 100.00 0.00 +271 2.0 0 2.0 100.00 0.00 +272 1.0 0 1.0 100.00 0.00 +273 2.0 0 2.0 100.00 0.00 +274 1.0 0 1.0 100.00 0.00 +275 1.0 0 1.0 100.00 0.00 +276 1.0 0 1.0 100.00 0.00 +277 1.0 0 1.0 100.00 0.00 +278 1.0 0 1.0 100.00 0.00 +279 0.0 1 1.0 0.00 100.00 +280 1.0 0 1.0 100.00 0.00 +281 1.0 0 1.0 100.00 0.00 +282 1.0 0 1.0 100.00 0.00 +283 1.0 0 1.0 100.00 0.00 +284 1.0 0 1.0 100.00 0.00 +285 0.0 2 2.0 0.00 100.00 +286 1.0 0 1.0 100.00 0.00 +287 2.0 0 2.0 100.00 0.00 +288 0.0 1 1.0 0.00 100.00 +289 1.0 0 1.0 100.00 0.00 +290 1.0 0 1.0 100.00 0.00 +291 1.0 1 2.0 50.00 50.00 +292 1.0 0 1.0 100.00 0.00 +293 1.0 0 1.0 100.00 0.00 +294 1.0 0 1.0 100.00 0.00 +295 1.0 0 1.0 100.00 0.00 +296 1.0 0 1.0 100.00 0.00 +297 1.0 0 1.0 100.00 0.00 +298 1.0 0 1.0 100.00 0.00 +299 1.0 0 1.0 100.00 0.00 +300 1.0 0 1.0 100.00 0.00 +301 1.0 0 1.0 100.00 0.00 +302 1.0 0 1.0 100.00 0.00 +303 1.0 0 1.0 100.00 0.00 +304 1.0 0 1.0 100.00 0.00 +305 1.0 0 1.0 100.00 0.00 +306 2.0 0 2.0 100.00 0.00 +307 1.0 0 1.0 100.00 0.00 +308 0.0 3 3.0 0.00 100.00 +309 0.0 48 48.0 0.00 100.00 +310 5.0 0 5.0 100.00 0.00 +311 19.0 0 19.0 100.00 0.00 +312 1.0 0 1.0 100.00 0.00 +313 1.0 0 1.0 100.00 0.00 +314 1.0 1 2.0 50.00 50.00 +315 1.0 0 1.0 100.00 0.00 +316 1.0 0 1.0 100.00 0.00 +317 1.0 0 1.0 100.00 0.00 +318 1.0 0 1.0 100.00 0.00 +319 1.0 0 1.0 100.00 0.00 +320 1.0 0 1.0 100.00 0.00 +321 0.0 1 1.0 0.00 100.00 +322 1.0 0 1.0 100.00 0.00 +323 1.0 0 1.0 100.00 0.00 +324 2.0 128 130.0 1.54 98.46 +325 3.0 89 92.0 3.26 96.74 +326 1.0 2104 2105.0 0.05 99.95 +327 1.0 0 1.0 100.00 0.00 +328 1.0 0 1.0 100.00 0.00 +329 2.0 105 107.0 1.87 98.13 +330 0.0 1 1.0 0.00 100.00 +331 1.0 0 1.0 100.00 0.00 +332 1.0 0 1.0 100.00 0.00 +333 1.0 0 1.0 100.00 0.00 +334 1.0 1593 1594.0 0.06 99.94 +335 0.0 14 14.0 0.00 100.00 +336 0.0 16 16.0 0.00 100.00 +337 1.0 0 1.0 100.00 0.00 +338 1.0 0 1.0 100.00 0.00 +339 0.0 109 109.0 0.00 100.00 +340 1.0 0 1.0 100.00 0.00 +341 0.0 3 3.0 0.00 100.00 +342 1.0 0 1.0 100.00 0.00 +343 1.0 0 1.0 100.00 0.00 +344 1.0 0 1.0 100.00 0.00 +345 0.0 1 1.0 0.00 100.00 +346 1.0 0 1.0 100.00 0.00 +347 1.0 0 1.0 100.00 0.00 +348 1.0 0 1.0 100.00 0.00 +349 1.0 0 1.0 100.00 0.00 +350 1.0 0 1.0 100.00 0.00 +351 7.0 142 149.0 4.70 95.30 +352 1.0 0 1.0 100.00 0.00 +353 4.0 0 4.0 100.00 0.00 +354 1.0 0 1.0 100.00 0.00 +355 0.0 1 1.0 0.00 100.00 +356 0.0 4 4.0 0.00 100.00 +357 1.0 0 1.0 100.00 0.00 +358 1.0 0 1.0 100.00 0.00 +359 1.0 0 1.0 100.00 0.00 +360 4.0 0 4.0 100.00 0.00 +361 0.0 3 3.0 0.00 100.00 +362 1.0 0 1.0 100.00 0.00 +363 0.0 1 1.0 0.00 100.00 +364 1.0 0 1.0 100.00 0.00 +365 1.0 0 1.0 100.00 0.00 +366 2.0 0 2.0 100.00 0.00 +367 1.0 0 1.0 100.00 0.00 +368 1.0 0 1.0 100.00 0.00 +369 1.0 0 1.0 100.00 0.00 +370 1.0 0 1.0 100.00 0.00 +371 1.0 0 1.0 100.00 0.00 +372 10.0 0 10.0 100.00 0.00 +373 13.0 0 13.0 100.00 0.00 +374 1.0 0 1.0 100.00 0.00 +375 0.0 6 6.0 0.00 100.00 +376 1.0 0 1.0 100.00 0.00 +377 1.0 0 1.0 100.00 0.00 +378 1.0 0 1.0 100.00 0.00 +379 1.0 0 1.0 100.00 0.00 +380 1.0 0 1.0 100.00 0.00 +381 1.0 0 1.0 100.00 0.00 +382 1.0 0 1.0 100.00 0.00 +383 1.0 0 1.0 100.00 0.00 +384 1.0 0 1.0 100.00 0.00 +385 1.0 0 1.0 100.00 0.00 +386 1.0 0 1.0 100.00 0.00 +387 1.0 0 1.0 100.00 0.00 +388 2.0 0 2.0 100.00 0.00 +389 1.0 0 1.0 100.00 0.00 +390 0.0 3 3.0 0.00 100.00 +391 0.0 2 2.0 0.00 100.00 +392 1.0 0 1.0 100.00 0.00 +393 1.0 0 1.0 100.00 0.00 +394 1.0 0 1.0 100.00 0.00 +395 1.0 0 1.0 100.00 0.00 +396 1.0 0 1.0 100.00 0.00 +397 1.0 656 657.0 0.15 99.85 +398 3.0 0 3.0 100.00 0.00 +399 7.0 0 7.0 100.00 0.00 +400 28.0 0 28.0 100.00 0.00 +401 0.0 4 4.0 0.00 100.00 +402 5.0 0 5.0 100.00 0.00 +403 1.0 0 1.0 100.00 0.00 +404 1.0 0 1.0 100.00 0.00 +405 1.0 0 1.0 100.00 0.00 +406 1.0 0 1.0 100.00 0.00 +407 1.0 0 1.0 100.00 0.00 +408 1.0 0 1.0 100.00 0.00 +409 0.0 6 6.0 0.00 100.00 +410 1.0 0 1.0 100.00 0.00 +411 1.0 0 1.0 100.00 0.00 +412 1.0 0 1.0 100.00 0.00 +413 1.0 0 1.0 100.00 0.00 +414 10.0 0 10.0 100.00 0.00 +415 1.0 0 1.0 100.00 0.00 +416 1.0 0 1.0 100.00 0.00 +417 1.0 0 1.0 100.00 0.00 +418 0.0 2 2.0 0.00 100.00 +419 5.0 0 5.0 100.00 0.00 +420 1.0 373 374.0 0.27 99.73 +421 2.0 0 2.0 100.00 0.00 +422 0.0 1 1.0 0.00 100.00 +423 1.0 0 1.0 100.00 0.00 +424 1.0 0 1.0 100.00 0.00 +425 1.0 0 1.0 100.00 0.00 +426 1.0 0 1.0 100.00 0.00 +427 1.0 0 1.0 100.00 0.00 +428 0.0 1 1.0 0.00 100.00 +429 0.0 1 1.0 0.00 100.00 +430 1.0 0 1.0 100.00 0.00 +431 1.0 0 1.0 100.00 0.00 +432 1.0 0 1.0 100.00 0.00 +433 1.0 0 1.0 100.00 0.00 +434 1.0 0 1.0 100.00 0.00 +435 1.0 0 1.0 100.00 0.00 +436 1.0 0 1.0 100.00 0.00 +437 1.0 0 1.0 100.00 0.00 +438 1.0 0 1.0 100.00 0.00 +439 0.0 1 1.0 0.00 100.00 +440 1.0 0 1.0 100.00 0.00 +441 2.0 0 2.0 100.00 0.00 +442 1.0 0 1.0 100.00 0.00 +443 3.0 0 3.0 100.00 0.00 +444 1.0 0 1.0 100.00 0.00 +445 2.0 0 2.0 100.00 0.00 +446 1.0 0 1.0 100.00 0.00 +447 1.0 0 1.0 100.00 0.00 +448 1.0 0 1.0 100.00 0.00 +449 1.0 0 1.0 100.00 0.00 +450 1.0 0 1.0 100.00 0.00 +451 0.0 1 1.0 0.00 100.00 +452 0.0 1 1.0 0.00 100.00 +453 1.0 0 1.0 100.00 0.00 +454 4.0 0 4.0 100.00 0.00 +455 1.0 0 1.0 100.00 0.00 +456 0.0 1 1.0 0.00 100.00 +457 13.0 0 13.0 100.00 0.00 +458 3.0 0 3.0 100.00 0.00 +459 85.0 0 85.0 100.00 0.00 +460 1.0 0 1.0 100.00 0.00 +461 2.0 0 2.0 100.00 0.00 +462 5.0 0 5.0 100.00 0.00 +463 5.0 0 5.0 100.00 0.00 +464 2.0 0 2.0 100.00 0.00 +465 1.0 0 1.0 100.00 0.00 +466 1.0 0 1.0 100.00 0.00 +467 8.0 0 8.0 100.00 0.00 +468 1.0 0 1.0 100.00 0.00 +469 2.0 0 2.0 100.00 0.00 +470 1.0 0 1.0 100.00 0.00 +471 1.0 0 1.0 100.00 0.00 +472 2.0 0 2.0 100.00 0.00 +473 1.0 0 1.0 100.00 0.00 +474 1.0 0 1.0 100.00 0.00 +475 1.0 0 1.0 100.00 0.00 +476 1.0 0 1.0 100.00 0.00 +477 1.0 0 1.0 100.00 0.00 +478 1.0 0 1.0 100.00 0.00 +479 1.0 0 1.0 100.00 0.00 +480 2.0 0 2.0 100.00 0.00 +481 3.0 0 3.0 100.00 0.00 +482 0.0 1 1.0 0.00 100.00 +483 0.0 1 1.0 0.00 100.00 +484 1.0 0 1.0 100.00 0.00 +485 1.0 0 1.0 100.00 0.00 +486 5.0 0 5.0 100.00 0.00 +487 1.0 0 1.0 100.00 0.00 +488 1.0 0 1.0 100.00 0.00 +489 0.0 1 1.0 0.00 100.00 +490 1.0 0 1.0 100.00 0.00 +491 1.0 0 1.0 100.00 0.00 +492 2.0 0 2.0 100.00 0.00 +493 1.0 0 1.0 100.00 0.00 +494 0.0 1 1.0 0.00 100.00 +495 1.0 0 1.0 100.00 0.00 +496 3.0 0 3.0 100.00 0.00 +497 1.0 0 1.0 100.00 0.00 +498 0.0 1 1.0 0.00 100.00 +499 1.0 0 1.0 100.00 0.00 +500 0.0 1 1.0 0.00 100.00 +501 1.0 0 1.0 100.00 0.00 +502 1.0 0 1.0 100.00 0.00 +503 1.0 0 1.0 100.00 0.00 +504 1.0 0 1.0 100.00 0.00 +505 1.0 0 1.0 100.00 0.00 +506 1.0 0 1.0 100.00 0.00 +507 3.0 0 3.0 100.00 0.00 +508 1.0 0 1.0 100.00 0.00 +509 1.0 0 1.0 100.00 0.00 +510 1.0 0 1.0 100.00 0.00 +511 1.0 0 1.0 100.00 0.00 +512 0.0 1 1.0 0.00 100.00 +513 1.0 0 1.0 100.00 0.00 +514 1.0 0 1.0 100.00 0.00 +515 1.0 0 1.0 100.00 0.00 +516 0.0 1 1.0 0.00 100.00 +517 1.0 0 1.0 100.00 0.00 +518 0.0 1 1.0 0.00 100.00 +519 0.0 1 1.0 0.00 100.00 +520 1.0 0 1.0 100.00 0.00 +521 1.0 0 1.0 100.00 0.00 +522 0.0 1 1.0 0.00 100.00 +523 1.0 0 1.0 100.00 0.00 +524 1.0 0 1.0 100.00 0.00 +525 1.0 0 1.0 100.00 0.00 +526 1.0 0 1.0 100.00 0.00 +527 1.0 0 1.0 100.00 0.00 +528 1.0 0 1.0 100.00 0.00 +529 2.0 0 2.0 100.00 0.00 +530 0.0 1 1.0 0.00 100.00 +531 1.0 0 1.0 100.00 0.00 +532 0.0 1 1.0 0.00 100.00 +533 1.0 0 1.0 100.00 0.00 +534 1.0 0 1.0 100.00 0.00 +535 1.0 0 1.0 100.00 0.00 +536 1.0 0 1.0 100.00 0.00 +TOTAL 11754.0 99826 111580.0 10.53 89.47
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test_count.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,26 @@ +cluster unannotated annotated total perc_unannotated perc_annotated +0 2.0 408 410.0 0.49 99.51 +1 1.0 0 1.0 100.00 0.00 +2 0.0 1 1.0 0.00 100.00 +3 0.0 52 52.0 0.00 100.00 +4 1.0 0 1.0 100.00 0.00 +5 0.0 176 176.0 0.00 100.00 +6 1.0 0 1.0 100.00 0.00 +7 0.0 79 79.0 0.00 100.00 +8 1.0 0 1.0 100.00 0.00 +9 9.0 0 9.0 100.00 0.00 +10 3.0 0 3.0 100.00 0.00 +11 2.0 0 2.0 100.00 0.00 +12 1.0 0 1.0 100.00 0.00 +13 1.0 0 1.0 100.00 0.00 +14 1.0 0 1.0 100.00 0.00 +15 5.0 0 5.0 100.00 0.00 +16 21.0 0 21.0 100.00 0.00 +17 38.0 0 38.0 100.00 0.00 +18 5.0 0 5.0 100.00 0.00 +19 5.0 0 5.0 100.00 0.00 +20 1.0 0 1.0 100.00 0.00 +21 1.0 0 1.0 100.00 0.00 +22 4.0 0 4.0 100.00 0.00 +23 0.0 1 1.0 0.00 100.00 +TOTAL 103.0 717 820.0 12.56 87.44
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test_evalue.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,20 @@ +evalue count +unannotated 103.0 +1.41e-39 414 +4.99e-39 166 +1.54e-33 72 +6.56e-38 25 +2.32e-37 16 +7.17e-32 6 +1.82e-38 4 +5.07e-39 3 +8.21e-37 2 +1.43e-39 1 +6.45e-38 1 +6.66e-38 1 +2.28e-37 1 +8.62e-37 1 +1.06e-35 1 +1.08e-35 1 +3.33e-30 1 +8.16e-12 1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/test_similarity.txt Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,14 @@ +# Average similarity: 99.35 +# Standard deviation: 0.65 +similarity count +100.0 383 +98.89 368 +98.88 18 +98.86 1 +98.73 7 +98.28 1 +98.21 8 +97.8 2 +97.78 29 +97.75 2 +97.73 1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test_cdhit_analysis.py Tue Oct 14 09:09:46 2025 +0000 @@ -0,0 +1,626 @@ +""" +Test suite for CD-HIT cluster analysis processor. +""" + +import pytest +from pathlib import Path +import pandas as pd +import os +import sys + +# Add module path +sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +from Stage_1_translated.NLOOR_scripts.process_clusters_tool.cdhit_analysis import ( + parse_cluster_file, + process_cluster_data, + calculate_cluster_taxa, + write_similarity_output, + write_evalue_output, + write_count_output, + write_taxa_clusters_output, + write_taxa_processed_output, +) + +class TestCDHitAnalysis: + """Test class for CD-HIT cluster analysis processor using real XLSX test data.""" + + @pytest.fixture(scope="class") + def test_data_dir(self): + """Return path to the test-data directory with real XLSX files.""" + base_dir = Path("Stage_1_translated/NLOOR_scripts/process_clusters_tool/test-data") + assert base_dir.exists(), f"Test data directory does not exist: {base_dir}" + return base_dir + + @pytest.fixture(scope="class") + def sample_cluster_file(self, test_data_dir): + """Return path to the sample cluster XLSX file.""" + cluster_file = test_data_dir / "29-test.clstr.txt" + assert cluster_file.exists(), f"Sample cluster file not found: {cluster_file}" + return str(cluster_file) + + @pytest.fixture(scope="class") + def sample_annotation_file(self, test_data_dir): + """Return path to the sample annotation XLSX file.""" + annotation_file = test_data_dir / "header_anno_29_test.xlsx" + assert annotation_file.exists(), f"Sample annotation file not found: {annotation_file}" + return str(annotation_file) + + @pytest.fixture(scope="class") + def parsed_clusters(self, sample_cluster_file, sample_annotation_file): + """Parse the sample cluster file with annotations.""" + return parse_cluster_file(sample_cluster_file, sample_annotation_file) + + def test_cluster_parsing_structure(self, parsed_clusters): + """ + Test 1: Cluster File Parsing Structure + + Verifies that cluster files are correctly parsed into the expected data structure + with proper extraction of headers, counts, similarities, and cluster groupings. + """ + # Should have 4 clusters based on sample data + # for x in parsed_clusters: print(x); + assert len(parsed_clusters) == 24, f"Expected 24 clusters, got {len(parsed_clusters)}" + + # Test Cluster 0 structure (3 members) + cluster_0 = parsed_clusters[0] + assert len(cluster_0) == 41, "Cluster 0 should have 41 members" + cluster_3 = parsed_clusters[3] + assert len(cluster_3) == 4, "Cluster 3 should have 4 members" + + # Check specific member data + assert 'M01687:476:000000000-LL5F5:1:2119:23468:21624_CONS' in cluster_0, "this read should be in cluster 0" + read1_data = cluster_0['M01687:476:000000000-LL5F5:1:2119:23468:21624_CONS'] + assert read1_data['count'] == 1, "read1 count should be 1" + assert read1_data['similarity'] == 97.78, "read1 should be representative (100% similarity)" + assert 'Viridiplantae / Streptophyta / Magnoliopsida / Ericales / Actinidiaceae / Uncertain taxa / Uncertain taxa' in read1_data['taxa'], "read1 should have this taxa" + + # Check non-representative member + assert 'M01687:476:000000000-LL5F5:1:1107:11168:7701_CONS' in cluster_0, "this read should be in cluster 0" + read2_data = cluster_0['M01687:476:000000000-LL5F5:1:1107:11168:7701_CONS'] + assert read2_data['count'] == 1, "read2 count should be 50" + assert read2_data['similarity'] == 100, "read2 similarity should be 100%" + assert read2_data['taxa'] == "Unannotated read" + + # Test single-member cluster (Cluster 2) + cluster_2 = parsed_clusters[2] + assert len(cluster_2) == 1, "Cluster 2 should have 1 member" + assert 'M01687:476:000000000-LL5F5:1:2108:17627:10678_CONS' in cluster_2, "this read should be in cluster 2" + + print("✓ Test 1 PASSED: Cluster file parsing structure correct") + + def test_annotation_integration(self, parsed_clusters): + """ + Test 2: Annotation Integration + + Verifies that annotations from the separate annotation file are correctly + matched to cluster members based on header names. + """ + # Check that annotations were properly integrated + cluster_0 = parsed_clusters[0] + + # Verify e-values are correctly assigned + assert cluster_0['M01687:476:000000000-LL5F5:1:1102:8813:1648_CONS']['evalue'] == 1.41e-39, "read1 e-value incorrect" + assert cluster_0['M01687:476:000000000-LL5F5:1:1102:23329:6743_CONS']['evalue'] == 2.32e-37, "read2 e-value incorrect" + assert cluster_0['M01687:476:000000000-LL5F5:1:1102:22397:8283_CONS']['evalue'] == 2.32e-37, "read3 e-value incorrect" + + # Verify taxa assignments + assert 'Viridiplantae / Streptophyta / Magnoliopsida / Ericales / Actinidiaceae / Uncertain taxa / Uncertain taxa' in cluster_0['M01687:476:000000000-LL5F5:1:1102:8813:1648_CONS']['taxa'], "read1 taxa incorrect" + assert 'Viridiplantae / Streptophyta / Magnoliopsida / Ericales / Actinidiaceae / Uncertain taxa / Uncertain taxa' in cluster_0['M01687:476:000000000-LL5F5:1:1102:23329:6743_CONS']['taxa'], "read2 taxa incorrect" + assert 'Viridiplantae / Streptophyta / Magnoliopsida / Ericales / Actinidiaceae / Uncertain taxa / Uncertain taxa' in cluster_0['M01687:476:000000000-LL5F5:1:1102:22397:8283_CONS']['taxa'], "read3 taxa incorrect" + + # Test missing annotation handling (if any reads lack annotations) + # All our test reads have annotations, so this tests the default case + for cluster in parsed_clusters: + for header, data in cluster.items(): + if data['evalue'] == 'Unannotated read': + assert data['taxa'] == 'Unannotated read', "Unannotated handling incorrect" + + print("✓ Test 2 PASSED: Annotations correctly integrated with cluster data") + + def test_cluster_data_processing(self, parsed_clusters): + """ + Test 3: Cluster Data Processing + + Tests the processing of individual clusters to extract evaluation lists, + similarity lists, and taxa dictionaries with correct count aggregation. + """ + # Test processing of Cluster 0 (mixed taxa) + cluster_0 = parsed_clusters[0] + eval_list, simi_list, taxa_dict = process_cluster_data(cluster_0) + + # Check eval_list structure + # for x in eval_list: print(x) + assert eval_list[0] == 2, "Two unannotated reads in this cluster, should be 2" + assert len(eval_list) == 409, "Should have 409 annotated reads + 2 unnanotated reads (counted as 1)" + + # Check that e-values are correctly converted and repeated by count + eval_values = eval_list[1:] # Skip unannotated count + read1_evals = [e for e in eval_values if e == 1.41e-39] + assert len(read1_evals) == 365, "Should have 100 instances of read1's e-value" + + # # Check similarity list + # for x in simi_list: print(x) + assert len(simi_list) == 410, "Should have 410 similarity values" + read1_similarities = [s for s in simi_list if s == 100.0] + assert len(read1_similarities) == 2, "Should have 2 instances of 100% similarity" + + assert taxa_dict['Unannotated read'] == 2, "Unannotated reads should be 2" + assert taxa_dict['Viridiplantae / Streptophyta / Magnoliopsida / Ericales / Actinidiaceae / Uncertain taxa / Uncertain taxa'] == 406, "taxa should be 406" + assert taxa_dict['Viridiplantae / Streptophyta / Magnoliopsida / Ericales / Uncertain taxa / Uncertain taxa / Uncertain taxa'] == 1, "taxa should be 1" + assert taxa_dict['Viridiplantae / Streptophyta / Magnoliopsida / Ericales / Actinidiaceae / Actinidia / Actinidia kolomikta'] == 1, "taxa should be 1" + print("✓ Test 3 PASSED: Cluster data processing produces correct aggregated data") + + def test_taxa_calculation_simple_case(self, parsed_clusters): + """ + Test 4: Taxa Calculation - Simple Case + + Tests taxonomic resolution for clusters with clear dominant taxa + (single taxa or overwhelming majority). + """ + + # Create test arguments + class TestArgs: + uncertain_taxa_use_ratio = 0.5 + min_to_split = 0.45 + min_count_to_split = 10 + + args = TestArgs() + + # Test Cluster 1 (should be clear Archaea) + cluster_5 = parsed_clusters[5] + _, _, taxa_dict_5 = process_cluster_data(cluster_5) + + result_5 = calculate_cluster_taxa(taxa_dict_5, args) + # Should return single taxa group for Archaea + assert len(result_5) == 1, "Single dominant taxa should not split" + dominant_taxa = list(result_5[0].keys())[0] + assert 'Viridiplantae / Streptophyta / Magnoliopsida / Fagales / Juglandaceae / ' \ + 'Uncertain taxa / Uncertain taxa' in dominant_taxa, "Should identify Juglandaceae as dominant" + + # Test single-member cluster (Cluster 2) + cluster_2 = parsed_clusters[2] + _, _, taxa_dict_2 = process_cluster_data(cluster_2) + + result_2 = calculate_cluster_taxa(taxa_dict_2, args) + total = sum(value for d in result_2 for value in d.values()) + assert total == 1, "Single member cluster should not split" + + print("✓ Test 4 PASSED: Simple taxa calculation cases work correctly") + + def test_taxa_calculation_complex_splitting(self, parsed_clusters): + """ + Test 5: Taxa Calculation - Complex Splitting + + Tests the recursive taxonomic resolution algorithm for clusters with + multiple competing taxa that should be split based on thresholds. + """ + + class TestArgs: + uncertain_taxa_use_ratio = 0.5 + min_to_split = 0.30 # Lower threshold to encourage splitting + min_count_to_split = 5 # Lower threshold to encourage splitting + + args = TestArgs() + + # Test Cluster 3 (mixed Firmicutes and Proteobacteria) + cluster_3 = parsed_clusters[3] + _, _, taxa_dict_3 = process_cluster_data(cluster_3) + + # Manual check of expected taxa distribution + expected_taxa = {} + for header, data in cluster_3.items(): + taxa = data['taxa'] + count = data['count'] + expected_taxa[taxa] = expected_taxa.get(taxa, 0) + count + + result_3 = calculate_cluster_taxa(taxa_dict_3, args) + + # With mixed taxa and low thresholds, should potentially split + # The exact behavior depends on the algorithm implementation + total_result_count = sum(sum(group.values()) for group in result_3) + expected_total = sum(expected_taxa.values()) + + assert total_result_count == expected_total, "Total counts should be preserved after splitting" + + print("✓ Test 5 PASSED: Complex taxa splitting preserves counts and follows thresholds") + + def test_statistical_calculations(self, parsed_clusters): + """ + Test 6: Statistical Calculations + + Verifies that similarity and e-value statistics are calculated correctly + including averages, standard deviations, and distributions. + """ + # Process all clusters to get combined data + + eval_list, simi_list, _ = process_cluster_data(parsed_clusters[5]) + # Test similarity statistics + if eval_list: + expected_avg = sum(simi_list) / len(simi_list) + + # Manual verification of a few key values + # From our test data: read1=100% (100 times), read2=96.67% (50 times), etc. + total_similarity_sum = (100.0 * 166) + (98.88 * 9) + 98.86 + total_count = 176 + manual_avg = total_similarity_sum / total_count + + assert abs( + expected_avg - manual_avg) < 0.01, f"Similarity average mismatch: expected ~{manual_avg}, got {expected_avg}" + + # Test e-value data structure + annotated_evals = eval_list[1:] + assert all(isinstance(e, (int, float)) for e in annotated_evals), "All e-values should be numeric" + assert all(e > 0 for e in annotated_evals), "All e-values should be positive" + + print("✓ Test 6 PASSED: Statistical calculations are mathematically correct") + + def test_output_file_formats(self, test_data_dir, sample_cluster_file, sample_annotation_file): + """ + Test 7: Output File Formats + + Tests that all output files are created with correct structure and content, + including text files, Excel files with multiple sheets, and plot files. + """ + output_dir = test_data_dir + + # Parse data + clusters = parse_cluster_file(sample_cluster_file, sample_annotation_file) + + # Process all clusters + cluster_data_list = [] + all_eval_data = [0] + all_simi_data = [] + + for cluster in clusters: + eval_list, simi_list, taxa_dict = process_cluster_data(cluster) + cluster_data_list.append((eval_list, simi_list, taxa_dict)) + all_eval_data[0] += eval_list[0] + all_eval_data.extend(eval_list[1:]) + all_simi_data.extend(simi_list) + + # Test similarity output + simi_output = output_dir / "test_similarity.txt" + write_similarity_output(all_simi_data, str(simi_output)) + + assert simi_output.exists(), "Similarity output file not created" + with open(simi_output, 'r') as f: + content = f.read() + assert "# Average similarity:" in content, "Missing average similarity in output" + assert "# Standard deviation:" in content, "Missing standard deviation in output" + assert "similarity\tcount" in content, "Missing header in similarity output" + + # Test e-value output + eval_output = output_dir / "test_evalue.txt" + write_evalue_output(all_eval_data, str(eval_output)) + + assert eval_output.exists(), "E-value output file not created" + with open(eval_output, 'r') as f: + content = f.read() + assert "evalue\tcount" in content, "Missing header in e-value output" + + # Test count output + count_output = output_dir / "test_count.txt" + write_count_output(all_eval_data, cluster_data_list, str(count_output)) + + assert count_output.exists(), "Count output file not created" + with open(count_output, 'r') as f: + content = f.read() + assert "cluster\tunannotated\tannotated" in content, "Missing header in count output" + assert "TOTAL\t" in content, "Missing total row in count output" + + # Test taxa clusters Excel output + taxa_clusters_output = output_dir / "test_taxa_clusters.xlsx" + write_taxa_clusters_output(cluster_data_list, str(taxa_clusters_output)) + + assert taxa_clusters_output.exists(), "Taxa clusters Excel file not created" + df = pd.read_excel(taxa_clusters_output, sheet_name='Raw_Taxa_Clusters') + expected_columns = ['cluster', 'count', 'taxa_full', 'kingdom', 'phylum', 'class', 'order', 'family', 'genus', + 'species'] + assert all(col in df.columns for col in expected_columns), "Missing columns in taxa clusters output" + + print("✓ Test 7 PASSED: All output file formats are correct and complete") + + def test_taxa_processed_output_structure(self, test_data_dir, sample_cluster_file, sample_annotation_file): + """ + Test 8: Processed Taxa Output Structure + + Tests the complex processed taxa Excel output with multiple sheets + and parameter tracking. + """ + output_dir = test_data_dir + + class TestArgs: + uncertain_taxa_use_ratio = 0.6 + min_to_split = 0.35 + min_count_to_split = 15 + show_unannotated_clusters = True + + args = TestArgs() + + # Parse and process data + clusters = parse_cluster_file(sample_cluster_file, sample_annotation_file) + cluster_data_list = [] + + for cluster in clusters: + eval_list, simi_list, taxa_dict = process_cluster_data(cluster) + cluster_data_list.append((eval_list, simi_list, taxa_dict)) + + # Test processed taxa output + processed_output = output_dir / "test_processed_taxa.xlsx" + write_taxa_processed_output(cluster_data_list, args, str(processed_output)) + + assert processed_output.exists(), "Processed taxa Excel file not created" + + # Check multiple sheets exist + xl_file = pd.ExcelFile(processed_output) + expected_sheets = ['Processed_Taxa_Clusters', 'Settings'] + assert all(sheet in xl_file.sheet_names for sheet in expected_sheets), "Missing sheets in processed taxa output" + + # Check main data sheet + df_main = pd.read_excel(processed_output, sheet_name='Processed_Taxa_Clusters') + expected_columns = ['cluster', 'count', 'taxa_full', 'kingdom', 'phylum', 'class', 'order', 'family', 'genus', + 'species'] + assert all(col in df_main.columns for col in expected_columns), "Missing columns in processed taxa sheet" + + # Check settings sheet + df_settings = pd.read_excel(processed_output, sheet_name='Settings') + assert 'Parameter' in df_settings.columns, "Missing Parameter column in settings" + assert 'Value' in df_settings.columns, "Missing Value column in settings" + + # Verify settings values are recorded + settings_dict = dict(zip(df_settings['Parameter'], df_settings['Value'])) + assert settings_dict['uncertain_taxa_use_ratio'] == 0.6, "Settings not correctly recorded" + assert settings_dict['min_to_split'] == 0.35, "Settings not correctly recorded" + + print("✓ Test 8 PASSED: Processed taxa output has correct structure and settings tracking") + + def test_edge_cases(self, test_data_dir): + """ + Test 9: Edge Cases and Error Handling + + Tests handling of edge cases like empty files, missing annotations, + single-member clusters, and malformed input data. + """ + input_dir = test_data_dir + + # Test empty cluster file + empty_cluster = input_dir / "empty_cluster.clstr" + with open(empty_cluster, 'w') as f: + f.write("") + + clusters_empty = parse_cluster_file(str(empty_cluster)) + assert len(clusters_empty) == 0, "Empty cluster file should produce no clusters" + + # Test cluster file with no annotations + simple_cluster = input_dir / "simple_cluster.clstr" + simple_cluster_content = """>Cluster 0 +0 100nt, >read_no_anno:50... * +""" + with open(simple_cluster, 'w') as f: + f.write(simple_cluster_content) + + with pytest.raises(UnboundLocalError): + parse_cluster_file(str(simple_cluster), raise_on_error=True) + + # Test malformed cluster entries (missing parts) + malformed_cluster = input_dir / "malformed_cluster.clstr" + malformed_content = """>Cluster 0 +0 100nt, >read1:50..._CONS(50) * +invalid_line_without_proper_format +1 90nt, >read2:25..._CONS(25) at /+/95% +""" + annotations_malformed = input_dir / "test_pytest.xlsx" + with open(malformed_cluster, 'w') as f: + f.write(malformed_content) + + clusters_malformed = parse_cluster_file(str(malformed_cluster), str(annotations_malformed)) + # Should still parse valid entries and skip invalid ones + assert len(clusters_malformed) == 1, "Should parse valid entries from malformed file" + assert len(clusters_malformed[0]) == 2, "Should have 2 valid read" + assert clusters_malformed[0]['read1:50..._CONS']['evalue'] == 1.0e-50 + assert clusters_malformed[0]['read2:25..._CONS']['count'] == 25 + + print("✓ Test 9 PASSED: Edge cases handled gracefully without crashes") + + def test_count_preservation_across_processing(self, parsed_clusters): + """ + Test 10: Count Preservation Across Processing Pipeline + + Verifies that read counts are preserved throughout the entire processing + pipeline from cluster parsing through taxa calculation to final output. + """ + # Calculate expected total counts from original data + expected_total = 0 + for cluster in parsed_clusters: + for header, data in cluster.items(): + expected_total += data['count'] + + # Process through pipeline and verify counts at each stage + total_from_processing = 0 + taxa_processing_totals = [] + + class TestArgs: + uncertain_taxa_use_ratio = 0.5 + min_to_split = 0.45 + min_count_to_split = 10 + + args = TestArgs() + + for cluster in parsed_clusters: + eval_list, simi_list, taxa_dict = process_cluster_data(cluster) + + # Check that cluster processing preserves counts + cluster_total = eval_list[0] + len(eval_list[1:]) # unannotated + annotated + cluster_expected = sum(data['count'] for data in cluster.values()) + assert cluster_total == cluster_expected, f"Count mismatch in cluster processing: expected {cluster_expected}, got {cluster_total}" + + total_from_processing += cluster_total + + # Check taxa calculation preserves counts + taxa_results = calculate_cluster_taxa(taxa_dict, args) + taxa_total = sum(sum(group.values()) for group in taxa_results) + taxa_processing_totals.append(taxa_total) + + # Verify taxa dict total matches + taxa_dict_total = sum(taxa_dict.values()) + assert taxa_total <= taxa_dict_total, f"Count mismatch in taxa calculation: expected {taxa_dict_total}, got {taxa_total}" + + # Final verification + assert total_from_processing == expected_total, f"Total count preservation failed: expected {expected_total}, got {total_from_processing}" + + # Verify sum of all taxa processing equals original + total_taxa_processed = sum(taxa_processing_totals) + assert total_taxa_processed <= expected_total, f"Taxa processing total mismatch: expected {expected_total}, got {total_taxa_processed}" + + print("✓ Test 10 PASSED: Read counts preserved throughout entire processing pipeline") + + def test_11_parse_arguments_all_flags(self, tmp_path): + """ + Test 11: Argument Parsing with All Flags + + Ensures parse_arguments correctly handles all optional flags and values. + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + args = ca.parse_arguments([ + '--input_cluster', str(tmp_path / "dummy.clstr"), + '--simi_plot_y_min', '90', + '--simi_plot_y_max', '99', + '--uncertain_taxa_use_ratio', '0.3', + '--min_to_split', '0.2', + '--min_count_to_split', '5', + '--show_unannotated_clusters', + '--make_taxa_in_cluster_split', + '--print_empty_files' + ]) + assert args.simi_plot_y_min == 90 + assert args.print_empty_files is True + + def test_12_process_cluster_data_valueerror(self): + """ + Test 12: Process Cluster Data with Bad E-value + + Ensures ValueError branches are handled and unannotated counts increase. + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + cluster = { + "seq1": {"count": 1, "similarity": 95.0, "taxa": "taxonA", "evalue": "not_a_number"} + } + eval_list, simi_list, taxa_dict = ca.process_cluster_data(cluster) + assert eval_list[0] == 1 # unannotated read + + def test_13_write_similarity_and_evalue_empty(self, tmp_path): + """ + Test 13: Output Writers with Empty Data + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + sim_file = tmp_path / "sim.txt" + eval_file = tmp_path / "eval.txt" + + ca.write_similarity_output([], str(sim_file)) + assert not sim_file.exists() or sim_file.read_text() == "" + + ca.write_evalue_output([5], str(eval_file)) + assert "unannotated" in eval_file.read_text() + + def test_14_write_count_zero_and_taxa_clusters_incomplete(self, tmp_path): + """ + Test 14: Count Writer with Zero Data and Taxa Clusters with Incomplete Taxa + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + count_file = tmp_path / "count.txt" + taxa_file = tmp_path / "taxa.xlsx" + + ca.write_count_output([0], [], str(count_file)) + assert "TOTAL" in count_file.read_text() + + cluster_data = [([0], [], {"bad": 1})] + ca.write_taxa_clusters_output(cluster_data, str(taxa_file)) + assert taxa_file.exists() + + def test_15_write_taxa_processed_uncertain_and_settings(self, tmp_path): + """ + Test 15: Processed Taxa Output with Settings + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + + class Args: + uncertain_taxa_use_ratio = 0.5 + min_to_split = 0.2 + min_count_to_split = 2 + show_unannotated_clusters = True + + out_file = tmp_path / "processed.xlsx" + cluster_data = [([0], [], {"Unannotated read": 2})] + ca.write_taxa_processed_output(cluster_data, Args(), str(out_file)) + assert out_file.exists() + + def test_16_create_evalue_plot_edge_cases(self, tmp_path): + """ + Test 16: E-value Plot Edge Cases + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + out = tmp_path / "plot.png" + + # Only unannotated + ca.create_evalue_plot([0], [0], str(out)) + assert not out.exists() or out.stat().st_size == 0 + + # Empty after filtering + ca.create_evalue_plot([0, ], [], str(out)) + assert not out.exists() or out.stat().st_size == 0 + + # With valid values + ca.create_evalue_plot([0, 1e-5, 1e-3], [2], str(out)) + assert out.exists() + + def test_17_main_runs_and_prints(self, tmp_path, capsys): + """ + Test 17: Main Entry Point + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + clstr = tmp_path / "simple.clstr" + clstr.write_text(">Cluster 0\n0 100nt, >seq1... *\n") + + out = tmp_path / "sim.txt" + args = [ + '--input_cluster', str(clstr), + '--output_similarity_txt', str(out) + ] + ca.main(args) + captured = capsys.readouterr() + assert "Processing complete" in captured.out + + + def test_16a_prepare_evalue_histogram_valid_data(self): + """ + Test 16a: prepare_evalue_histogram returns correct counts/bins. + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + counts, bins = ca.prepare_evalue_histogram([1e-5, 1e-3, 0.5], []) + assert counts.sum() == 3 # 3 entries counted + assert len(bins) == 51 # 50 bins => 51 edges + + def test_16b_prepare_evalue_histogram_empty(self): + """ + Test 16b: prepare_evalue_histogram with empty/invalid data returns (None, None). + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + counts, bins = ca.prepare_evalue_histogram([0, None, "bad"], []) + assert counts is None + assert bins is None + + def test_16c_create_evalue_plot_creates_file_and_returns_data(self, tmp_path): + """ + Test 16c: create_evalue_plot saves a PNG and returns numeric data. + """ + from Stage_1_translated.NLOOR_scripts.process_clusters_tool import cdhit_analysis as ca + out = tmp_path / "eval.png" + counts, bins = ca.create_evalue_plot_test([1e-5, 1e-3, 0.5], [], str(out)) + assert out.exists() + assert counts.sum() == 3 + assert len(bins) == 51 + + +if __name__ == "__main__": + # Run all tests in this file + pytest.main([__file__]) \ No newline at end of file
